import type { SizeTokens } from 'tamagui'
import { Label, RadioGroup, Theme, XStack, YStack } from 'tamagui'
export function RadioGroupDemo() {
return (
)
}
export function RadioGroupItemWithLabel(props: {
size: SizeTokens
value: string
label: string
}) {
const id = `radiogroup-${props.value}`
return (
)
}