{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "alert-09",
  "title": "Callout Alert",
  "description": "A callout alert component",
  "dependencies": [
    "lucide-react"
  ],
  "registryDependencies": [
    "alert"
  ],
  "files": [
    {
      "path": "src/components/customized/alert/alert-09.tsx",
      "content": "import { CircleFadingArrowUpIcon } from \"lucide-react\";\nimport { Alert, AlertTitle } from \"@/registry/ui/alert\";\n\nexport default function AlertCalloutDemo() {\n  return (\n    <div className=\"w-full space-y-4\">\n      <Alert className=\"rounded-none border-0 border-l-4 border-l-blue-500 bg-blue-500/10 dark:bg-blue-500/20\">\n        <CircleFadingArrowUpIcon className=\"h-4 w-4 text-blue-500!\" />\n        <AlertTitle>A new version of the app is now available.</AlertTitle>\n      </Alert>\n      <Alert className=\"rounded-none border-blue-300 border-l-4 border-l-blue-500 bg-blue-500/10 dark:border-blue-500/60 dark:border-l-blue-500 dark:bg-blue-600/20\">\n        <CircleFadingArrowUpIcon className=\"h-4 w-4 text-blue-500!\" />\n        <AlertTitle>A new version of the app is now available.</AlertTitle>\n      </Alert>\n      <Alert className=\"border-0 border-l-4 border-l-blue-500 bg-blue-500/10 dark:bg-blue-500/20\">\n        <CircleFadingArrowUpIcon className=\"h-4 w-4 text-blue-500!\" />\n        <AlertTitle>A new version of the app is now available.</AlertTitle>\n      </Alert>\n      <Alert className=\"border-blue-300 border-l-4 border-l-blue-500 bg-blue-500/10 dark:border-blue-500/60 dark:border-l-blue-500 dark:bg-blue-600/20\">\n        <CircleFadingArrowUpIcon className=\"h-4 w-4 text-blue-500!\" />\n        <AlertTitle>A new version of the app is now available.</AlertTitle>\n      </Alert>\n    </div>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:component"
}