Mirror — see github.com/blacksky-algorithms/blacksky.community
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

New repost icons

authored by

Bailey Townsend and committed by
Rudy Fraser
36674bda 8bfe2567

+6 -1
+6 -1
src/view/com/notifications/NotificationFeedItem.tsx
··· 58 58 ChevronTop_Stroke2_Corner0_Rounded as ChevronUpIcon, 59 59 } from '#/components/icons/Chevron' 60 60 import {Heart2_Filled_Stroke2_Corner0_Rounded as HeartIconFilled} from '#/components/icons/Heart2' 61 + import {LikeRepost_Stroke2_Corner2_Rounded as RepostHeartIcon} from '#/components/icons/Heart2' 61 62 import {PersonPlus_Filled_Stroke2_Corner0_Rounded as PersonPlusIcon} from '#/components/icons/Person' 62 63 import {Repost_Stroke2_Corner2_Rounded as RepostIcon} from '#/components/icons/Repost' 64 + import {RepostRepost_Stroke2_Corner2_Rounded as RepostRepostIcon} from '#/components/icons/Repost' 63 65 import {StarterPack} from '#/components/icons/StarterPack' 64 66 import {VerifiedCheck} from '#/components/icons/VerifiedCheck' 65 67 import {InlineLinkText, Link} from '#/components/Link' ··· 495 497 ) : ( 496 498 <Trans>{firstAuthorLink} liked your repost</Trans> 497 499 ) 500 + icon = <RepostHeartIcon size="xl" style={[s.likeColor]} /> 498 501 } else if (item.type === 'repost-via-repost') { 499 502 a11yLabel = hasMultipleAuthors 500 503 ? _( ··· 519 522 ) : ( 520 523 <Trans>{firstAuthorLink} reposted your repost</Trans> 521 524 ) 522 - icon = <RepostIcon size="xl" style={{color: t.palette.positive_600}} /> 525 + icon = ( 526 + <RepostRepostIcon size="xl" style={{color: t.palette.positive_600}} /> 527 + ) 523 528 } else if (item.type === 'subscribed-post') { 524 529 const postsCount = 1 + (item.additional?.length || 0) 525 530 a11yLabel = hasMultipleAuthors