Files
shadcn-ui/apps/www/components/examples/alert/destructive.tsx
2023-04-17 19:19:40 +04:00

16 lines
430 B
TypeScript

import { AlertCircle, FileWarning, Terminal } from "lucide-react"
import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert"
export function AlertDestructive() {
return (
<Alert variant="destructive">
<AlertCircle className="h-4 w-4" />
<AlertTitle>Error</AlertTitle>
<AlertDescription>
Your session has expired. Please log in again.
</AlertDescription>
</Alert>
)
}