Files
shadcn-ui/apps/v4/examples/base/alert-action.tsx
shadcn 7d718ddaa9 fix: refactor styles (#10190)
* feat: refactor styles handling across v4

* fix

* fix

* fix

* fix

* fix

* fix
2026-03-26 14:36:00 +04:00

24 lines
561 B
TypeScript

import {
Alert,
AlertAction,
AlertDescription,
AlertTitle,
} from "@/styles/base-nova/ui/alert"
import { Button } from "@/styles/base-nova/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>
)
}