import type { SizeTokens } from 'tamagui'
import { Label, Separator, Switch, Theme, XStack, YStack } from 'tamagui'
export function SwitchDemo() {
return (
<>
>
)
}
export function SwitchWithLabel(props: {
size: SizeTokens
defaultChecked?: boolean
activeStyle?: boolean
}) {
const id = `switch-${props.size.toString().slice(1)}-${props.defaultChecked ?? ''}}`
return (
)
}