import { CheckCircle2Icon } from "lucide-react";
import { Alert, AlertTitle } from "@/components/ui/alert";
export default function AlertWithIcon() {
return (
<Alert>
<CheckCircle2Icon />
<AlertTitle>Success! Your changes have been saved</AlertTitle>
</Alert>
);
}
npx shadcn@latest add @bundui/alert-with-iconimport { AlertWithIcon } from "@/components/alert-with-icon"<AlertWithIcon />