Bluesky app fork with some witchin' additions 💫

use slightly more rounded repost icon (#9424)

authored by samuel.fm and committed by GitHub dfe9f9fa 2919a7da

Changed files
+7 -7
src
components
PostControls
view
+5 -5
src/components/PostControls/RepostButton.tsx
··· 8 8 import {atoms as a, useTheme} from '#/alf' 9 9 import {Button, ButtonText} from '#/components/Button' 10 10 import * as Dialog from '#/components/Dialog' 11 - import {CloseQuote_Stroke2_Corner1_Rounded as Quote} from '#/components/icons/Quote' 12 - import {Repost_Stroke2_Corner3_Rounded as Repost} from '#/components/icons/Repost' 11 + import {CloseQuote_Stroke2_Corner1_Rounded as QuoteIcon} from '#/components/icons/Quote' 12 + import {Repost_Stroke2_Corner3_Rounded as RepostIcon} from '#/components/icons/Repost' 13 13 import {useFormatPostStatCount} from '#/components/PostControls/util' 14 14 import {Text} from '#/components/Typography' 15 15 import { ··· 84 84 }), 85 85 ) 86 86 }> 87 - <PostControlButtonIcon icon={Repost} /> 87 + <PostControlButtonIcon icon={RepostIcon} /> 88 88 {typeof repostCount !== 'undefined' && repostCount > 0 && ( 89 89 <PostControlButtonText testID="repostCount"> 90 90 {formatPostStatCount(repostCount)} ··· 156 156 size="large" 157 157 variant="ghost" 158 158 color="primary"> 159 - <Repost size="lg" fill={t.palette.primary_500} /> 159 + <RepostIcon size="lg" fill={t.palette.primary_500} /> 160 160 <Text style={[a.font_semi_bold, a.text_xl]}> 161 161 {isReposted ? ( 162 162 <Trans>Remove repost</Trans> ··· 178 178 size="large" 179 179 variant="ghost" 180 180 color="primary"> 181 - <Quote 181 + <QuoteIcon 182 182 size="lg" 183 183 fill={ 184 184 embeddingDisabled
+1 -1
src/view/com/notifications/NotificationFeedItem.tsx
··· 64 64 import {Heart2_Filled_Stroke2_Corner0_Rounded as HeartIconFilled} from '#/components/icons/Heart2' 65 65 import {PersonPlus_Filled_Stroke2_Corner0_Rounded as PersonPlusIcon} from '#/components/icons/Person' 66 66 import {PlusLarge_Stroke2_Corner0_Rounded as PlusIcon} from '#/components/icons/Plus' 67 - import {Repost_Stroke2_Corner2_Rounded as RepostIcon} from '#/components/icons/Repost' 67 + import {Repost_Stroke2_Corner3_Rounded as RepostIcon} from '#/components/icons/Repost' 68 68 import {StarterPack} from '#/components/icons/StarterPack' 69 69 import {VerifiedCheck} from '#/components/icons/VerifiedCheck' 70 70 import {InlineLinkText, Link} from '#/components/Link'
+1 -1
src/view/com/posts/PostFeedReason.tsx
··· 9 9 import {useSession} from '#/state/session' 10 10 import {atoms as a, useTheme} from '#/alf' 11 11 import {Pin_Stroke2_Corner0_Rounded as PinIcon} from '#/components/icons/Pin' 12 - import {Repost_Stroke2_Corner2_Rounded as RepostIcon} from '#/components/icons/Repost' 12 + import {Repost_Stroke2_Corner3_Rounded as RepostIcon} from '#/components/icons/Repost' 13 13 import {Link, WebOnlyInlineLinkText} from '#/components/Link' 14 14 import {ProfileHoverCard} from '#/components/ProfileHoverCard' 15 15 import {Text} from '#/components/Typography'