BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/ondo-ui/progress
This component no longer exists. It was in ondo-ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-09 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.

progress

ondo-ui/progress
RemovedComponent

Displays an indicator showing the completion progress of a task, typically displayed as a progress bar.

Install it

npx shadcn@latest add https://ui.ondo.dou.so/r/progress.json

Source

components/ui/progress.tsxui.ondo.dou.so/r/progress.json
1"use client"
2
3import { Progress as ProgressPrimitive } from "@base-ui/react/progress"
4import { cva, type VariantProps } from "class-variance-authority"
5
6import { cn } from "@/lib/utils"
7
8const progressVariants = cva("group/progress flex flex-wrap gap-3", {
9 variants: {
10 variant: {
11 default: "text-primary",
12 info: "text-info",
13 success: "text-success",
14 warning: "text-warning",
15 destructive: "text-destructive",
16 },
17 },
18 defaultVariants: {
19 variant: "default",
20 },
21})
22
23function Progress({
24 className,
25 variant = "default",
26 children,
27 value,
28 ...props
29}: ProgressPrimitive.Root.Props & VariantProps<typeof progressVariants>) {
30 return (
31 <ProgressPrimitive.Root
32 value={value}
33 data-slot="progress"
34 data-variant={variant}
35 className={cn(progressVariants({ variant, className }))}
36 {...props}
37 >
38 {children}
39 <ProgressTrack>
40 <ProgressIndicator />
41 </ProgressTrack>
42 </ProgressPrimitive.Root>
43 )
44}
45
46function ProgressTrack({ className, ...props }: ProgressPrimitive.Track.Props) {
47 return (
48 <ProgressPrimitive.Track
49 className={cn(
50 "relative flex h-1.5 w-full items-center overflow-x-hidden rounded-full bg-muted",
51 className
52 )}
53 data-slot="progress-track"
54 {...props}
55 />
56 )
57}
58
59function ProgressIndicator({
60 className,
61 ...props
62}: ProgressPrimitive.Indicator.Props) {
63 return (
64 <ProgressPrimitive.Indicator
65 data-slot="progress-indicator"
66 className={cn("h-full bg-current transition-all", className)}
67 {...props}
68 />
69 )
70}
71
72function ProgressLabel({ className, ...props }: ProgressPrimitive.Label.Props) {
73 return (
74 <ProgressPrimitive.Label
75 className={cn("text-sm font-medium text-foreground", className)}
76 data-slot="progress-label"
77 {...props}
78 />
79 )
80}
81
82function ProgressValue({ className, ...props }: ProgressPrimitive.Value.Props) {
83 return (
84 <ProgressPrimitive.Value
85 className={cn(
86 "ml-auto text-sm text-muted-foreground tabular-nums",
87 className
88 )}
89 data-slot="progress-value"
90 {...props}
91 />
92 )
93}
94
95export {
96 Progress,
97 ProgressTrack,
98 ProgressIndicator,
99 ProgressLabel,
100 ProgressValue,
101 progressVariants,
102}

What it pulls in

npm packages

  • @base-ui/react
  • class-variance-authority

Other registry items

  • @ondo-ui/utils

Files it writes

  • components/ui/progress.tsx

Facts

Registry
ondo-ui
Type
registry:ui
Access
Free
Files written
1
Licence
the repository states none
In the index
at or before 2026-08-04
Last confirmed
9 days ago

Go to the source

ui.ondo.dou.so douinc/ondo-ui on GitHub Raw registry item This item as JSON

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

KitGrade

SaaS starter kits, scored from measured facts

kitgrade.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and KitGrade

part of Toolproof, the measurement layer for AI agent tooling

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

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and KitGrade

part of Toolproof, the measurement layer for AI agent tooling

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

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and KitGrade

part of Toolproof, the measurement layer for AI agent tooling

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

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex