import { AlignCenter, AlignLeft, AlignRight } from '@tamagui/lucide-icons-2' import { Label, ToggleGroup, XGroup, YGroup, XStack, YStack } from 'tamagui' export function ToggleGroupDemo() { return ( ) } function ToggleGroupComponent(props: { type: 'single' | 'multiple' orientation: 'vertical' | 'horizontal' }) { const id = `switch-${props.type}` const Group = props.orientation === 'horizontal' ? XGroup : YGroup return ( ) }