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
Installation
How to install dependencies and structure your app.
Note: Blode UI is a third-party shadcn registry hosted at ui.blode.co. The setup flow is the same as shadcn/ui with one extra step: add the registry namespace.
Create or initialize a project
npx shadcn@latest init
Add the Blode registry
npx shadcn@latest registry add @blode=https://ui.blode.co/r/{name}.json
Add a component
npx shadcn@latest add @blode/button
Import component
The command above will add the Button component to your project. You can then import it like this:
import { Button } from "@/components/ui/button";
export default function Home() {
return <Button>Click me</Button>;
}