{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "alert-06",
  "title": "Alert With Background",
  "description": "An alert with background component",
  "dependencies": [
    "lucide-react"
  ],
  "registryDependencies": [
    "alert"
  ],
  "files": [
    {
      "path": "src/components/customized/alert/alert-06.tsx",
      "content": "import { OctagonAlertIcon } from \"lucide-react\";\nimport { Alert, AlertDescription, AlertTitle } from \"@/registry/ui/alert\";\n\nexport default function AlertWithBackgroundDemo() {\n  return (\n    <Alert className=\"bg-muted\">\n      <OctagonAlertIcon className=\"size-4\" />\n      <AlertTitle className=\"text-foreground\">Something Went Wrong</AlertTitle>\n      <AlertDescription className=\"text-foreground\">\n        An error occurred while processing your request.\n      </AlertDescription>\n    </Alert>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:component"
}