mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-15 20:01:35 +00:00
16 lines
464 B
TypeScript
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>
|
|
)
|
|
}
|