({ ...props }: DialogPrimitive.Root.Props)
| 9 | import { cn } from "@/lib/utils"; |
| 10 | |
| 11 | function Dialog({ ...props }: DialogPrimitive.Root.Props) { |
| 12 | return <DialogPrimitive.Root data-slot="dialog" {...props} />; |
| 13 | } |
| 14 | |
| 15 | function DialogTrigger({ ...props }: DialogPrimitive.Trigger.Props) { |
| 16 | return <DialogPrimitive.Trigger data-slot="dialog-trigger" {...props} />; |
nothing calls this directly
no outgoing calls
no test coverage detected