import { InfoIcon } from "lucide-react";
import {
Alert,
AlertAction,
AlertDescription,
AlertTitle,
} from "@/registry/default/ui/alert";
import { Button } from "@/registry/default/ui/button";
export default function Particle() {
return (
<Alert>
<InfoIcon />
<AlertTitle>Heads up!</AlertTitle>
<AlertDescription>
Describe what can be done about it here.
</AlertDescription>
<AlertAction>
<Button size="xs" variant="ghost">
Dismiss
</Button>
<Button size="xs">Ok</Button>
</AlertAction>
</Alert>
);
}
npx shadcn@latest add @coss/p-alert-3import { PAlert3 } from "@/components/p-alert-3"<PAlert3 />