{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "progress", "title": "Progress", "description": "Polaris-styled Progress component.", "dependencies": [], "devDependencies": [ "@shopify/polaris-types" ], "registryDependencies": [ "@polaris-shadcn/theme", "@polaris-shadcn/utils" ], "files": [ { "path": "registry/templates/components/ui/progress.tsx", "content": "import * as React from \"react\";\nimport { cn } from \"../../lib/utils\";\n\nexport interface ProgressProps extends React.ComponentPropsWithoutRef<\"div\"> {\n value?: number;\n}\n\nconst Progress = React.forwardRef(\n ({ className, value = 0, ...props }, ref) => (\n \n \n \n ),\n);\nProgress.displayName = \"Progress\";\n\nexport { Progress };\n", "type": "registry:ui" } ], "type": "registry:ui" }