{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "note-intent-example",
  "title": "Note Intent",
  "description": "note-intent-example",
  "registryDependencies": [
    "https://intentui.com/r/note"
  ],
  "files": [
    {
      "path": "src/components/examples/statuses/note/note-intent-example.tsx",
      "content": "import { Note } from '@/components/ui/note'\n\nconst notes = ['info', 'default', 'warning', 'danger', 'success'] as const\n\nexport default function NoteIntentDemo() {\n  return (\n    <div className=\"max-w-md space-y-2\">\n      {notes.map((it) => (\n        <Note key={it} intent={it}>\n          We hook you up with top-tier migration services in our startup plan. Wanna roll with it?\n          Hit us up here.\n        </Note>\n      ))}\n    </div>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/note-intent-example/page.tsx"
    }
  ],
  "type": "registry:page"
}