Components
- Accordion
- Alert
- Alert Dialog
- Aspect Ratio
- Autocomplete
- Avatar
- Badge
- Bar List
- Breadcrumb
- Button
- Button Group
- Calendar
- Card
- Carousel
- Checkbox
- Checkbox Group
- Circular Progress
- Collapsible
- Combobox
- Command
- Context Menu
- Currency Input
- Data Table
- Date Picker
- Dialog
- Drawer
- Dropdown Menu
- Empty
- Field
- Hover Card
- Input
- Input Group
- Input OTP
- Item
- Kbd
- Label
- Menubar
- Meter
- Multi Combobox
- Native Select
- Navigation Menu
- Number Field
- Pagination
- Phone Input
- Popover
- Progress
- Progress List
- Prompt
- Radio Group
- Resizable
- Scroll Area
- Select
- Separator
- Sheet
- Sidebar
- Skeleton
- Slider
- Sonner
- Spinner
- Stat
- Switch
- Table
- Tabs
- Textarea
- Toggle
- Toggle Group
- Tooltip
- Typography
Loading...
import {
ProgressItem,
ProgressList,
} from "@/components/ui/progress-list";
export function ProgressListDemo() {
return (
<ProgressList>
<ProgressItem completed title="Account setup" />
<ProgressItem completed title="Connect data source" />
<ProgressItem state="current" title="Invite team members" />
<ProgressItem completed={false} title="Publish project" />
</ProgressList>
);
}Installation
npx shadcn@latest add "https://ui.blode.co/r/styles/default/progress-list"
Usage
import { ProgressItem, ProgressList } from "@/components/ui/progress-list";<ProgressList>
<ProgressItem completed title="Account setup" />
<ProgressItem state="current" title="Invite team members" />
<ProgressItem completed={false} title="Publish project" />
</ProgressList>