Alert
A versatile alert component with customizable icons and actions.
Configuring your account...
Please wait while we prepare everything for you
Usage
import { Alert, AlertIcon, AlertTitle, AlertToolbar } from '@/components/ui/alert';
import { Button } from '@/components/ui/button';
import { RiNotificationFill } from '@remixicon/react';
export default function Component() {
return (
<Alert close={true}>
<AlertIcon>
<RiNotificationFill />
</AlertIcon>
<AlertTitle>This is a primary alert</AlertTitle>
<AlertToolbar>
<Button variant="inverse" mode="link" underlined="solid" size="sm">
Upgrade
</Button>
</AlertToolbar>
</Alert>
);
}