mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 06:28:37 +00:00
31 lines
811 B
TypeScript
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've added dark mode support. You can enable it in your account
|
|
settings.
|
|
</AlertDescription>
|
|
</Alert>
|
|
</div>
|
|
)
|
|
}
|