Progress() — ui Function Reference
Architecture documentation for the Progress() function in progress.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD 8c356f44_587e_a6fb_2d01_aeb8fd534b25["Progress()"] 9c2ebc3c_9a44_3d59_2b85_49dfb15090eb["progress.tsx"] 8c356f44_587e_a6fb_2d01_aeb8fd534b25 -->|defined in| 9c2ebc3c_9a44_3d59_2b85_49dfb15090eb style 8c356f44_587e_a6fb_2d01_aeb8fd534b25 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
deprecated/www/registry/new-york/ui/progress.tsx lines 11–25
>(({ className, value, ...props }, ref) => (
<ProgressPrimitive.Root
ref={ref}
className={cn(
"relative h-2 w-full overflow-hidden rounded-full bg-primary/20",
className
)}
{...props}
>
<ProgressPrimitive.Indicator
className="h-full w-full flex-1 bg-primary transition-all"
style={{ transform: `translateX(-${100 - (value || 0)}%)` }}
/>
</ProgressPrimitive.Root>
))
Domain
Subdomains
Source
Frequently Asked Questions
What does Progress() do?
Progress() is a function in the ui codebase, defined in deprecated/www/registry/new-york/ui/progress.tsx.
Where is Progress() defined?
Progress() is defined in deprecated/www/registry/new-york/ui/progress.tsx at line 11.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free