import type { SquareProps, ThemeName } from 'tamagui'
import { Square, XStack, YStack } from 'tamagui'
export function ThemeBuilderDemo() {
return (
)
}
function Col(
props: SquareProps & {
subTheme?: any
}
) {
const subTheme = props.subTheme ? `_${props.subTheme}` : ''
return (
)
}