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