BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/muffled-ui-registry/progress

Progress

muffled-ui-registry/progress
FreeComponent

Determinate progress bar on ink and paper.

Live preview

live · rendered by the registry
Rendered by muffled-ui-registry on their own page — this is the component running, not a screenshot of it.

Install it

npx shadcn@latest add https://ui.muffled.studio/r/progress.json

Source

registry/ui/progress.tsxui.muffled.studio/r/progress.json
1import { Progress as ProgressPrimitive } from "@base-ui/react/progress"
2
3import { cn } from "@/registry/lib/surface"
4
5function Progress({
6 className,
7 children,
8 value,
9 ...props
10}: ProgressPrimitive.Root.Props) {
11 return (
12 <ProgressPrimitive.Root
13 value={value}
14 data-slot="progress"
15 className={cn("flex flex-wrap gap-3", className)}
16 {...props}
17 >
18 {children}
19 <ProgressTrack>
20 <ProgressIndicator />
21 </ProgressTrack>
22 </ProgressPrimitive.Root>
23 )
24}
25
26function ProgressTrack({ className, ...props }: ProgressPrimitive.Track.Props) {
27 return (
28 <ProgressPrimitive.Track
29 className={cn(
30 "relative flex h-1 w-full items-center overflow-x-hidden rounded-full bg-muted",
31 className
32 )}
33 data-slot="progress-track"
34 {...props}
35 />
36 )
37}
38
39function ProgressIndicator({
40 className,
41 ...props
42}: ProgressPrimitive.Indicator.Props) {
43 return (
44 <ProgressPrimitive.Indicator
45 data-slot="progress-indicator"
46 className={cn("h-full bg-primary transition-all", className)}
47 {...props}
48 />
49 )
50}
51
52function ProgressLabel({ className, ...props }: ProgressPrimitive.Label.Props) {
53 return (
54 <ProgressPrimitive.Label
55 className={cn("text-sm font-medium", className)}
56 data-slot="progress-label"
57 {...props}
58 />
59 )
60}
61
62function ProgressValue({ className, ...props }: ProgressPrimitive.Value.Props) {
63 return (
64 <ProgressPrimitive.Value
65 className={cn(
66 "ml-auto text-sm text-muted-foreground tabular-nums",
67 className
68 )}
69 data-slot="progress-value"
70 {...props}
71 />
72 )
73}
74
75export {
76 Progress,
77 ProgressTrack,
78 ProgressIndicator,
79 ProgressLabel,
80 ProgressValue,
81}

What it pulls in

npm packages

  • @base-ui/react

Other registry items

  • @muffled/surface

Files it writes

  • registry/ui/progress.tsx

Facts

Registry
muffled-ui-registry
Type
registry:ui
Access
Free
Files written
1
Licence
the repository states none
First indexed
2026-08-02
Last confirmed
yesterday

Go to the source

Docs on muffled-ui-registry ui.muffled.studio muffled-studio/muffled.ui on GitHub Raw registry item This item as JSON

More from muffled-ui-registry

All 55 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Accordionaccordionmuffled-ui-registryComponentsFree2 deps
Alertalertmuffled-ui-registryComponentsFree1 dep
Alert Dialogalert-dialogmuffled-ui-registryComponentsFree1 dep
Avataravatarmuffled-ui-registryComponentsFree1 dep
Badgebadgemuffled-ui-registryComponentsFree2 deps
Breadcrumbbreadcrumbmuffled-ui-registryComponentsFree2 deps
Buttonbuttonmuffled-ui-registryComponentsFree2 deps
Button Groupbutton-groupmuffled-ui-registryComponentsFree2 deps
BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex