BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/EdgeStore/progress-bar

Progress Bar

edgestore/progress-bar
FreeComponent

A horizontal progress bar component for visualizing completion percentage.

Live preview

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

Install it

npx shadcn@latest add https://edgestore.dev/r/progress-bar.json

Source

examples/components/src/components/upload/progress-bar.tsxedgestore.dev/r/progress-bar.json
1import { cn } from '@/lib/utils';
2import * as React from 'react';
3
4/**
5 * Props for the ProgressBar component.
6 *
7 * @interface ProgressBarProps
8 * @extends {React.HTMLAttributes<HTMLDivElement>}
9 */
10export interface ProgressBarProps extends React.HTMLAttributes<HTMLDivElement> {
11 /**
12 * The progress value as a percentage (0-100).
13 */
14 progress: number;
15}
16
17/**
18 * A horizontal progress bar component that visualizes completion percentage.
19 *
20 * @component
21 * @example
22 * ```tsx
23 * <ProgressBar progress={75} />
24 * ```
25 */
26const ProgressBar = React.forwardRef<HTMLDivElement, ProgressBarProps>(
27 ({ progress, className, ...props }, ref) => {
28 return (
29 <div ref={ref} className={cn('relative h-0', className)} {...props}>
30 <div className="absolute top-1 h-1 w-full overflow-clip rounded-full bg-muted">
31 <div
32 className="h-full bg-primary transition-all duration-300 ease-in-out"
33 style={{ width: `${progress}%` }}
34 />
35 </div>
36 </div>
37 );
38 },
39);
40ProgressBar.displayName = 'ProgressBar';
41
42export { ProgressBar };

Files it writes

  • examples/components/src/components/upload/progress-bar.tsx

Facts

Registry
EdgeStore
Type
registry:component
Access
Free
Files written
1
Licence
MIT
First indexed
2026-08-02
Last confirmed
yesterday

Go to the source

Docs on EdgeStore edgestore.dev edgestorejs/edgestore on GitHub Raw registry item This item as JSON

More from EdgeStore

All 12 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Progress Circleprogress-circleEdgeStoreComponentsFreeno deps
Single Image Dropzonesingle-image-dropzoneEdgeStoreComponentsFree2 deps
Uploader Provideruploader-providerEdgeStoreComponentsFreeno 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