Function
AlertDialogAction
({
className,
...props
}: React.ComponentProps<typeof AlertDialogPrimitive.Action>)
Source from the content-addressed store, hash-verified
| 119 | } |
| 120 | |
| 121 | function AlertDialogAction({ |
| 122 | className, |
| 123 | ...props |
| 124 | }: React.ComponentProps<typeof AlertDialogPrimitive.Action>) { |
| 125 | return ( |
| 126 | <AlertDialogPrimitive.Action |
| 127 | className={cn(buttonVariants(), className)} |
| 128 | {...props} |
| 129 | /> |
| 130 | ) |
| 131 | } |
| 132 | |
| 133 | function AlertDialogCancel({ |
| 134 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected