{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "alert-07",
  "title": "Soft Alert",
  "description": "A soft alert component",
  "dependencies": [
    "lucide-react"
  ],
  "registryDependencies": [
    "alert"
  ],
  "files": [
    {
      "path": "src/components/customized/alert/alert-07.tsx",
      "content": "import {\n  CircleFadingArrowUpIcon,\n  OctagonAlert,\n  ShieldAlert,\n} 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=\"border-none bg-emerald-600/10 text-emerald-500 dark:bg-emerald-600/15\">\n        <CircleFadingArrowUpIcon className=\"size-4\" />\n        <AlertTitle>Your action has been completed successfully.</AlertTitle>\n      </Alert>\n      <Alert className=\"border-none bg-blue-500/10 text-blue-500 dark:bg-blue-600/20\">\n        <CircleFadingArrowUpIcon className=\"size-4\" />\n        <AlertTitle>A new version of the app is now available.</AlertTitle>\n      </Alert>\n      <Alert className=\"border-none bg-amber-600/10 text-amber-500 dark:bg-amber-600/15\">\n        <ShieldAlert className=\"size-4\" />\n        <AlertTitle>Changes will overwrite existing data.</AlertTitle>\n      </Alert>\n      <Alert className=\"border-none bg-destructive/10 text-destructive dark:bg-destructive/15\">\n        <OctagonAlert className=\"size-4\" />\n        <AlertTitle>\n          Unable to process your request. Please try again later.\n        </AlertTitle>\n      </Alert>\n    </div>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:component"
}