import { Drumstick, Hand } from '@tamagui/lucide-icons-2' import type { ButtonProps, ThemeName } from 'tamagui' import { Button, XStack, YStack } from 'tamagui' const outlined = { bg: 'transparent', borderWidth: 2, borderColor: '$background', rounded: '$10', hoverStyle: { bg: 'transparent', borderColor: '$backgroundPress', }, } export function BuildAButtonDemo() { return ( } /> } {...outlined} /> ) } function ButtonCol(props: any) { const { subTheme, ...buttonProps } = props const subThemeSuffix = subTheme ? `_${subTheme}` : '' return ( ) }