import React from 'react'; import { XStack, YStack } from '@tamagui/stacks'; import { SizableText as Text } from '@tamagui/text'; type StackProps = React.ComponentProps; type RowProps = React.ComponentProps; export function MockupCard({ children, ...props }: StackProps) { return ( {children} ); } export function MockupTile({ children, ...props }: StackProps) { return ( {children} ); } export function MockupChip({ children, ...props }: RowProps) { return ( {children} ); } export function MockupLabel({ children }: { children: React.ReactNode }) { return ( {children} ); }