{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "progress-circle-custom-size-example",
  "title": "Progress Circle Custom Size",
  "description": "progress-circle-custom-size-example",
  "registryDependencies": [
    "https://intentui.com/r/progress-circle"
  ],
  "files": [
    {
      "path": "src/components/examples/statuses/progress-circle/progress-circle-custom-size-example.tsx",
      "content": "'use client'\n\nimport { useEffect, useState } from 'react'\n\nimport { ProgressCircle } from '@/components/ui/progress-circle'\n\nexport default function ProgressCircleCustomSizeDemo() {\n  const [value, setValue] = useState(1)\n\n  useEffect(() => {\n    const interval = setInterval(() => {\n      setValue((prev) => (prev < 100 ? prev + 1 : 100))\n    }, 100)\n\n    return () => clearInterval(interval)\n  }, [])\n\n  return <ProgressCircle className=\"size-10\" aria-label=\"Loading…\" isIndeterminate value={value} />\n}\n",
      "type": "registry:page",
      "target": "app/progress-circle-custom-size-example/page.tsx"
    }
  ],
  "type": "registry:page"
}