{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "alert-05",
  "title": "Info Alert",
  "description": "An info alert component",
  "dependencies": [
    "lucide-react"
  ],
  "registryDependencies": [
    "alert"
  ],
  "files": [
    {
      "path": "src/components/customized/alert/alert-05.tsx",
      "content": "import { InfoIcon } from \"lucide-react\";\nimport { Alert, AlertDescription, AlertTitle } from \"@/registry/ui/alert\";\n\nexport default function AlertInfoDemo() {\n  return (\n    <Alert className=\"border-cyan-600/50 text-cyan-600 dark:border-cyan-600 [&>svg]:text-cyan-600\">\n      <InfoIcon className=\"size-4\" />\n      <AlertTitle>Important Information</AlertTitle>\n      <AlertDescription className=\"text-cyan-600\">\n        Make sure to review the recent updates before proceeding.\n      </AlertDescription>\n    </Alert>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:component"
}