({ className, ...props }: React.ComponentProps<"div">)
| 60 | } |
| 61 | |
| 62 | function AlertAction({ className, ...props }: React.ComponentProps<"div">) { |
| 63 | return ( |
| 64 | <div |
| 65 | data-slot="alert-action" |
| 66 | className={cn("absolute top-1/2 right-2 -translate-y-1/2", className)} |
| 67 | {...props} |
| 68 | /> |
| 69 | ) |
| 70 | } |
| 71 | |
| 72 | export { Alert, AlertTitle, AlertDescription, AlertAction } |