import { Alert, AlertDescription, AlertTitle } from "@/registry/ui/alert";
import { CircleFadingArrowUpIcon } from "lucide-react";
export default function AlertDemo() {
return (
<Alert>
<CircleFadingArrowUpIcon className="size-4" />
<AlertTitle>Update Available</AlertTitle>
<AlertDescription>
A new version of the app is now available.
</AlertDescription>
</Alert>
);
}
npx shadcn@latest add @shadcnui-blocks/alert-01import { Alert01 } from "@/components/alert-01"<Alert01 />