Alert
Displays a callout for user attention.
Heads up!
You can add components to your app using the cli.
import { Terminal } from 'lucide-react';
import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert';
export const Basic = () => { return ( <Alert> <Terminal className="h-4 w-4" /> <AlertTitle>Heads up!</AlertTitle> <AlertDescription> You can add components to your app using the cli. </AlertDescription> </Alert> );};
Installation
npx borristw-ui@latest add alert
yarn borristw-ui@latest add alert
pnpm borristw-ui@latest add alert
-
Copy and paste the following code into your project.
-
Update the import paths to match your project setup.
Usage
import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert';
<Alert> <Terminal className="h-4 w-4" /> <AlertTitle>Heads up!</AlertTitle> <AlertDescription> You can add components and dependencies to your app using the cli. </AlertDescription></Alert>
Examples
Default
Heads up!
You can add components to your app using the cli.
import { Terminal } from 'lucide-react';
import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert';
export const Basic = () => { return ( <Alert> <Terminal className="h-4 w-4" /> <AlertTitle>Heads up!</AlertTitle> <AlertDescription> You can add components to your app using the cli. </AlertDescription> </Alert> );};
Destructive
Error
Your session has expired. Please log in again.
import { AlertCircle } from 'lucide-react';import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert';
export const Destructive = () => { return ( <Alert variant="destructive"> <AlertCircle className="h-4 w-4" /> <AlertTitle>Error</AlertTitle> <AlertDescription> Your session has expired. Please log in again. </AlertDescription> </Alert> );};