{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "alert-warning",
  "type": "registry:component",
  "title": "Alert",
  "author": "Toby Belhome",
  "description": "Displays a callout for user attention.",
  "dependencies": [
    "lucide-react"
  ],
  "registryDependencies": [
    "alert"
  ],
  "files": [
    {
      "path": "examples/components/alert/warning/page.tsx",
      "content": "import { AlertCircleIcon } from \"lucide-react\";\nimport { Alert, AlertDescription, AlertTitle } from \"@/components/ui/alert\";\n\nexport default function AlertWarning() {\n  return (\n    <Alert variant=\"destructive\" className=\"*:text-orange-400!\">\n      <AlertCircleIcon />\n      <AlertTitle>Unable to process your payment.</AlertTitle>\n      <AlertDescription>Please verify your billing information and try again.</AlertDescription>\n    </Alert>\n  );\n}\n",
      "type": "registry:component",
      "target": "components/alert-warning.tsx"
    }
  ],
  "meta": {
    "isPro": false
  }
}