import { TriangleAlertIcon } from 'lucide-react'
import { Alert, AlertTitle, AlertDescription } from '@/registry/new-york/ui/alert'
const AlertSolidDestructiveDemo = () => {
return (
<Alert className='bg-destructive dark:bg-destructive/60 border-none text-white'>
<TriangleAlertIcon />
<AlertTitle>Couldn't save changes</AlertTitle>
<AlertDescription className='text-white/80'>Please try again or reload the page.</AlertDescription>
</Alert>
)
}
export default AlertSolidDestructiveDemo
npx shadcn@latest add @shadcn-studio/alert-30import { Alert30 } from "@/components/alert-30"<Alert30 />