import { Check } from '@tamagui/lucide-icons' import { useId } from 'react' import { Card, Checkbox, CheckboxProps, Label, Paragraph, Theme, XStack, YStack } from 'tamagui' export const TodoCard = ({ id: _id, label, ...props }: { label: string } & CheckboxProps) => { const reactId = useId() const id = _id || reactId return ( ) }