Components
Loading preview...
Neobrutalism-styled alert component.
@samke
npx shadcn@latest add https://21st.dev/r/ekmas/alertimport { Terminal } from 'lucide-react'
import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert'
const Default = () => (
<Alert className="w-[500px]">
<Terminal className="h-4 w-4" />
<AlertTitle>Default Alert</AlertTitle>
<AlertDescription>
You can add components and dependencies to your app using the cli.
</AlertDescription>
</Alert>
)
const Destructive = () => (
<Alert variant="destructive" className="w-[500px]">
<Terminal color="white" className="h-4 w-4" />
<AlertTitle>Destructive Alert</AlertTitle>
<AlertDescription>
You can add components and dependencies to your app using the cli.
</AlertDescription>
</Alert>
)
export { Default, Destructive }