({ ...props }: AlertDialogPrimitive.Root.Props)
| 7 | import { cn } from "@/lib/utils"; |
| 8 | |
| 9 | function AlertDialog({ ...props }: AlertDialogPrimitive.Root.Props) { |
| 10 | return <AlertDialogPrimitive.Root data-slot="alert-dialog" {...props} />; |
| 11 | } |
| 12 | |
| 13 | function AlertDialogTrigger({ ...props }: AlertDialogPrimitive.Trigger.Props) { |
| 14 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected