diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-02-12 21:34:21 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-12 21:34:21 +0000 |
commit | 66f5e3a8330faf616e36db56e90c365637bae722 (patch) | |
tree | edcf4819502f5a3ee85b5172bfa7e5f7815a7acb /src/components/StarterPack/StarterPackCard.tsx | |
parent | 5a865a504cbc282c9c17e22d6a777e9cd2cd2df4 (diff) | |
download | voidsky-66f5e3a8330faf616e36db56e90c365637bae722.tar.zst |
Special treatment for recommended starter packs (#7706)
* special treatment for recommended starter packs * update subtitle when SPs in recommended * fix item height
Diffstat (limited to 'src/components/StarterPack/StarterPackCard.tsx')
-rw-r--r-- | src/components/StarterPack/StarterPackCard.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/StarterPack/StarterPackCard.tsx b/src/components/StarterPack/StarterPackCard.tsx index 22e0a155a..2a9da509d 100644 --- a/src/components/StarterPack/StarterPackCard.tsx +++ b/src/components/StarterPack/StarterPackCard.tsx @@ -12,7 +12,7 @@ import {precacheResolvedUri} from '#/state/queries/resolve-uri' import {precacheStarterPack} from '#/state/queries/starter-packs' import {useSession} from '#/state/session' import {atoms as a, useTheme} from '#/alf' -import {StarterPack} from '#/components/icons/StarterPack' +import {StarterPack as StarterPackIcon} from '#/components/icons/StarterPack' import {Link as BaseLink, LinkProps as BaseLinkProps} from '#/components/Link' import {Text} from '#/components/Typography' @@ -64,7 +64,7 @@ export function Card({ return ( <View style={[a.w_full, a.gap_md]}> <View style={[a.flex_row, a.gap_sm, a.w_full]}> - {!noIcon ? <StarterPack width={40} gradient="sky" /> : null} + {!noIcon ? <StarterPackIcon width={40} gradient="sky" /> : null} <View style={[a.flex_1]}> <Text emoji |