mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-02 08:58:36 +00:00
24 lines
561 B
TypeScript
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>
|
|
)
|
|
}
|