import { CircleAlertIcon } from 'lucide-react'
import { Alert, AlertTitle, AlertDescription } from '@/registry/new-york/ui/alert'
const AlertSolidDemo = () => {
return (
<Alert className='bg-primary text-primary-foreground border-none'>
<CircleAlertIcon />
<AlertTitle>Editing your profile</AlertTitle>
<AlertDescription className='text-primary-foreground/80'>
Changes won't be saved until you click "Update."
</AlertDescription>
</Alert>
)
}
export default AlertSolidDemo
npx shadcn@latest add @shadcn-studio/alert-26import { Alert26 } from "@/components/alert-26"<Alert26 />