From b57a184002e4526b513a27261f733be9b3242146 Mon Sep 17 00:00:00 2001 From: Hailey Date: Mon, 3 Jun 2024 09:23:24 -0700 Subject: [PATCH] add icon to card --- .../StarterPack/StarterPackCard.tsx | 23 +++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/src/components/StarterPack/StarterPackCard.tsx b/src/components/StarterPack/StarterPackCard.tsx index cc7c0bb9fb..d74876173d 100644 --- a/src/components/StarterPack/StarterPackCard.tsx +++ b/src/components/StarterPack/StarterPackCard.tsx @@ -2,14 +2,33 @@ import React from 'react' import {View} from 'react-native' import {atoms as a, useTheme} from '#/alf' +import {StarterPackIcon} from '#/components/icons/StarterPackIcon' import {Text} from '#/components/Typography' export function StarterPackCard({hideTopBorder}: {hideTopBorder?: boolean}) { const t = useTheme() return ( - - Hello! + + + + + Science + + Starter pack by @bossett.social + + + + 380 users have joined! + + ) }