({
children,
className,
}: {
children: React.ReactNode
className?: string
})
| 3 | import { cn } from '@/lib/utils' |
| 4 | |
| 5 | function Field({ |
| 6 | children, |
| 7 | className, |
| 8 | }: { |
| 9 | children: React.ReactNode |
| 10 | className?: string |
| 11 | }) { |
| 12 | return <div className={cn('grid gap-1.5', className)}>{children}</div> |
| 13 | } |
| 14 | |
| 15 | function FieldLabel({ |
| 16 | children, |