{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "progress-bar-value-scale",
  "registryDependencies": [
    "https://taki-ui.com/r/progress-bar.json"
  ],
  "files": [
    {
      "path": "registry/new-york/examples/progress-bar-value-scale.tsx",
      "content": "import { ProgressBar } from \"@/registry/new-york/ui/progress-bar\"\n\nexport default function ProgressBarValueScale() {\n  return (\n    <div className=\"flex flex-col gap-4\">\n      <ProgressBar\n        label=\"Storage space\"\n        formatOptions={{ style: \"unit\", unit: \"gigabyte\" }}\n        value={450}\n        maxValue={1000}\n      />\n      <ProgressBar\n        label=\"Download progress\"\n        formatOptions={{ style: \"unit\", unit: \"megabyte\" }}\n        value={275}\n        maxValue={500}\n      />\n    </div>\n  )\n}\n",
      "type": "registry:example"
    }
  ],
  "type": "registry:example"
}