({
className,
...props
}: React.ComponentProps<typeof Button>)
| 142 | } |
| 143 | |
| 144 | function AlertDialogAction({ |
| 145 | className, |
| 146 | ...props |
| 147 | }: React.ComponentProps<typeof Button>) { |
| 148 | return ( |
| 149 | <Button |
| 150 | data-slot="alert-dialog-action" |
| 151 | className={cn(className)} |
| 152 | {...props} |
| 153 | /> |
| 154 | ); |
| 155 | } |
| 156 | |
| 157 | function AlertDialogCancel({ |
| 158 | className, |