Files
shadcn-ui/apps/www/registry/default/example/alert-destructive.tsx
2023-06-22 22:44:52 +04:00

20 lines
451 B
TypeScript

import { AlertCircle, FileWarning, Terminal } from "lucide-react"
import {
Alert,
AlertDescription,
AlertTitle,
} from "@/registry/default/ui/alert"
export default 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>
)
}