BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/glasswave/progress

Progress

glasswave/progress
FreeComponent

Displays an indicator showing the completion progress of a task.

Live preview

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

Install it

npx shadcn@latest add https://glasswave.denizisik.com/r/progress.json

Source

registry/glasswave/ui/progress.tsxglasswave.denizisik.com/r/progress.json
1"use client";
2
3import * as ProgressPrimitive from "@radix-ui/react-progress";
4import * as React from "react";
5
6import { cn } from "@/lib/utils";
7
8const Progress = React.forwardRef<
9 React.ElementRef<typeof ProgressPrimitive.Root>,
10 React.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root>
11>(({ className, value, ...props }, ref) => (
12 <ProgressPrimitive.Root
13 ref={ref}
14 className={cn(
15 "relative h-2 w-full overflow-hidden rounded-full bg-gray-200 dark:bg-white/10",
16 className,
17 )}
18 {...props}
19 >
20 <ProgressPrimitive.Indicator
21 className="h-full w-full flex-1 bg-[#007AFF] transition-all"
22 style={{ transform: `translateX(-${100 - (value || 0)}%)` }}
23 />
24 </ProgressPrimitive.Root>
25));
26Progress.displayName = ProgressPrimitive.Root.displayName;
27
28export { Progress };

What it pulls in

npm packages

  • @radix-ui/react-progress

Files it writes

  • registry/glasswave/ui/progress.tsx

Facts

Registry
glasswave
Type
registry:ui
Access
Free
Files written
1
Licence
MIT
First indexed
2026-08-04
Last confirmed
today

Go to the source

Docs on glasswave glasswave.denizisik.com deniiiiz-i/glasswave on GitHub Raw registry item This item as JSON

More from glasswave

All 60 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
AccordionaccordionglasswaveComponentsFree2 deps
AlertalertglasswaveComponentsFree1 dep
Alert Dialogalert-dialogglasswaveComponentsFree1 dep
Aspect Ratioaspect-ratioglasswaveComponentsFree1 dep
AvataravatarglasswaveComponentsFree1 dep
BadgebadgeglasswaveComponentsFree1 dep
BreadcrumbbreadcrumbglasswaveComponentsFree2 deps
ButtonbuttonglasswaveComponentsFree2 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