Function
AlertDialogCancel
({
className,
...props
}: React.ComponentProps<typeof AlertDialogPrimitive.Cancel>)
Source from the content-addressed store, hash-verified
| 131 | } |
| 132 | |
| 133 | function AlertDialogCancel({ |
| 134 | className, |
| 135 | ...props |
| 136 | }: React.ComponentProps<typeof AlertDialogPrimitive.Cancel>) { |
| 137 | return ( |
| 138 | <AlertDialogPrimitive.Cancel |
| 139 | className={cn(buttonVariants({ variant: "outline" }), className)} |
| 140 | {...props} |
| 141 | /> |
| 142 | ) |
| 143 | } |
| 144 | |
| 145 | export { |
| 146 | AlertDialog, |
Callers
nothing calls this directly
Tested by
no test coverage detected