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

21 lines
475 B
TypeScript

import { CheckCircle2Icon } from "lucide-react"
import {
Alert,
AlertDescription,
AlertTitle,
} from "@/styles/base-nova/ui/alert"
export default function AlertBasic() {
return (
<Alert className="max-w-md">
<CheckCircle2Icon />
<AlertTitle>Account updated successfully</AlertTitle>
<AlertDescription>
Your profile information has been saved. Changes will be reflected
immediately.
</AlertDescription>
</Alert>
)
}