diff options
author | Caidan Williams <caidan@internet.dev> | 2025-07-30 13:29:50 -0700 |
---|---|---|
committer | Caidan Williams <caidan@internet.dev> | 2025-08-25 16:16:55 -0700 |
commit | b667e8b985cb58d0232ef1916fccca63ba6bd7b7 (patch) | |
tree | 0f420a5edddf48f58a258d64405eac9d477202b3 /src/components | |
parent | f3905c574bc85d17cdc53e2b57d58ccc0bdcdf4e (diff) | |
download | voidsky-b667e8b985cb58d0232ef1916fccca63ba6bd7b7.tar.zst |
refactor(feed): rename Arrow to ArrowRight for clarity
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/FeedInterstitials.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index 07ad2d501..835534871 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -27,7 +27,7 @@ import { } from '#/alf' import {Button} from '#/components/Button' import * as FeedCard from '#/components/FeedCard' -import {ArrowRight_Stroke2_Corner0_Rounded as Arrow} from '#/components/icons/Arrow' +import {ArrowRight_Stroke2_Corner0_Rounded as ArrowRight} from '#/components/icons/Arrow' import {Hashtag_Stroke2_Corner0_Rounded as Hashtag} from '#/components/icons/Hashtag' import {InlineLinkText} from '#/components/Link' import * as ProfileCard from '#/components/ProfileCard' @@ -437,7 +437,7 @@ function SeeMoreSuggestedProfilesCard() { <Trans>See more accounts you might like</Trans> </Text> - <Arrow size="xl" /> + <ArrowRight size="xl" /> </View> </View> </CardOuter> @@ -539,7 +539,7 @@ export function SuggestedFeeds() { style={[t.atoms.text_contrast_medium]}> <Trans>Browse more suggestions</Trans> </InlineLinkText> - <Arrow size="sm" fill={t.atoms.text_contrast_medium.color} /> + <ArrowRight size="sm" fill={t.atoms.text_contrast_medium.color} /> </View> </View> ) : ( @@ -567,7 +567,7 @@ export function SuggestedFeeds() { </Trans> </Text> - <Arrow size="xl" /> + <ArrowRight size="xl" /> </View> </View> </CardOuter> |