Files
shadcn-ui/apps/v4/examples/base/alert-demo.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

31 lines
811 B
TypeScript

import { CheckCircle2Icon, InfoIcon } from "lucide-react"
import {
Alert,
AlertDescription,
AlertTitle,
} from "@/styles/base-nova/ui/alert"
export default function AlertDemo() {
return (
<div className="grid w-full max-w-md items-start gap-4">
<Alert>
<CheckCircle2Icon />
<AlertTitle>Payment successful</AlertTitle>
<AlertDescription>
Your payment of $29.99 has been processed. A receipt has been sent to
your email address.
</AlertDescription>
</Alert>
<Alert>
<InfoIcon />
<AlertTitle>New feature available</AlertTitle>
<AlertDescription>
We&apos;ve added dark mode support. You can enable it in your account
settings.
</AlertDescription>
</Alert>
</div>
)
}