Files
shadcn-ui/apps/v4/examples/base/alert-basic.tsx
shadcn b5c7a014c8 fix
2026-01-14 12:59:48 +04:00

16 lines
464 B
TypeScript

import { Alert, AlertDescription, AlertTitle } from "@/examples/base/ui/alert"
import { CheckCircle2Icon } from "lucide-react"
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>
)
}