mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-15 11:51:34 +00:00
21 lines
475 B
TypeScript
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>
|
|
)
|
|
}
|