({ className, ...props }: FormPrimitive.Props)
| 5 | import { cn } from "@/lib/utils"; |
| 6 | |
| 7 | function Form({ className, ...props }: FormPrimitive.Props) { |
| 8 | return ( |
| 9 | <FormPrimitive |
| 10 | className={cn("flex w-full flex-col gap-4", className)} |
| 11 | data-slot="form" |
| 12 | {...props} |
| 13 | /> |
| 14 | ); |
| 15 | } |
| 16 | |
| 17 | export { Form }; |