Skip to content

Card

Terminal window
npx stylesheet-ui add card
import { Card } from "@/components/ui/card";
<Card>
<Text>Default surface.</Text>
</Card>
<Card surface="muted" padding="lg">
<Text>Tinted background.</Text>
</Card>
<Card pressable onPress={() => {}}>
<Text>Press to dim.</Text>
</Card>