Components
Loading preview...
Displays a callout for user attention, such as a success message, warning, or error.
npx shadcn@latest add https://21st.dev/r/sean0205/alert-1import { Alert, AlertIcon, AlertTitle } from '@/components/ui/alert-1';
import {
RiAlertFill,
RiCheckboxCircleFill,
RiErrorWarningFill,
RiNotificationFill,
RiSpam3Fill,
RiSpamFill,
} from '@remixicon/react';
export default function AlertDemo() {
return (
<div className="flex flex-col gap-5 p-10 w-full mx-auto max-w-[600px] h-screen justify-center items-center">
<Alert appearance="outline" close={true}>
<AlertIcon>
<RiAlertFill />
</AlertIcon>
<AlertTitle>This is a default alert</AlertTitle>
</Alert>
<Alert variant="primary" appearance="outline" close={true}>
<AlertIcon>
<RiNotificationFill />
</AlertIcon>
<AlertTitle>This is a primary alert</AlertTitle>
</Alert>
<Alert variant="success" appearance="outline" close={true}>
<AlertIcon>
<RiCheckboxCircleFill />
</AlertIcon>
<AlertTitle>This is a success alert</AlertTitle>
</Alert>
<Alert variant="destructive" appearance="outline" close={true}>
<AlertIcon>
<RiErrorWarningFill />
</AlertIcon>
<AlertTitle>This is a destructive alert</AlertTitle>
</Alert>
<Alert variant="info" appearance="outline" close={true}>
<AlertIcon>
<RiSpamFill />
</AlertIcon>
<AlertTitle>This is an info alert</AlertTitle>
</Alert>
<Alert variant="warning" appearance="outline" close={true}>
<AlertIcon>
<RiSpam3Fill />
</AlertIcon>
<AlertTitle>This is a warning alert</AlertTitle>
</Alert>
</div>
);
}