Files
shadcn-ui/apps/v4/examples/radix/alert-action.tsx
shadcn b5c7a014c8 fix
2026-01-14 12:59:48 +04:00

24 lines
557 B
TypeScript

import {
Alert,
AlertAction,
AlertDescription,
AlertTitle,
} from "@/examples/radix/ui/alert"
import { Button } from "@/examples/radix/ui/button"
export default function AlertActionExample() {
return (
<Alert className="max-w-md">
<AlertTitle>Dark mode is now available</AlertTitle>
<AlertDescription>
Enable it under your profile settings to get started.
</AlertDescription>
<AlertAction>
<Button size="xs" variant="default">
Enable
</Button>
</AlertAction>
</Alert>
)
}