{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"ui-progress","type":"registry:component","title":"Progress","description":"Linear progress indicator primitive for async status.","version":"1.0.0","status":"ga","files":[{"path":"src/components/ui/progress.tsx","type":"registry:component","content":"'use client'\n\nimport * as React from 'react'\n\nimport * as ProgressPrimitive from '@radix-ui/react-progress'\n\nimport { cn } from '@/lib/utils'\n\nfunction Progress({ className, value, ...props }: React.ComponentProps<typeof ProgressPrimitive.Root>) {\n  return (\n    <ProgressPrimitive.Root\n      data-slot='progress'\n      className={cn('bg-primary/20 relative h-2 w-full overflow-hidden rounded-full', className)}\n      {...props}\n    >\n      <ProgressPrimitive.Indicator\n        data-slot='progress-indicator'\n        className='bg-primary h-full w-full flex-1 transition-all'\n        style={{ transform: `translateX(-${100 - (value || 0)}%)` }}\n      />\n    </ProgressPrimitive.Root>\n  )\n}\n\nexport { Progress }\n"}]}