Components
- Accordion
- Alert
- Alert Dialog
- Aspect Ratio
- Attachment
- Avatar
- Badge
- Breadcrumb
- Bubble
- Button
- Button Group
- Calendar
- Card
- Carousel
- Chart
- Checkbox
- Collapsible
- Combobox
- Command
- Context Menu
- Desktop Window
- Dialog
- Drawer
- Dropdown Menu
- Empty
- Field
- Frame
- Heading
- Hover Card
- Input
- Input Group
- Input OTP
- Item
- Kbd
- Label
- Live Waveform
- Marker
- Menubar
- Message
- Message Scroller
- Meter
- Meter Ring
- Native Select
- Navigation Menu
- NumberCount
- Pagination
- Popover
- Progress
- Progress Ring
- Radio Group
- Resizable
- Scroll Area
- Select
- Separator
- Sheet
- Sidebar
- Skeleton
- Slider
- Spinner
- Switch
- Table
- Tabs
- Textarea
- Timeline
- Toast
- Toggle
- Toggle Group
- Tooltip
Compositions
Utilities
Prerequisites#
ondo-ui components assume a project set up with the shadcn CLI — Tailwind CSS v4, a components.json, and the cn() utility. If you are starting fresh:
bunx --bun shadcn@latest init
Register the registry#
Add the @ondo-ui namespace to the registries field of your components.json:
{
"registries": {
"@ondo-ui": "https://ui.ondo.dou.so/r/{name}.json"
}
}Add the theme#
Install the ondo theme first — it brings the Pretendard and Monaspace Neon fonts plus the base CSS variables:
bunx --bun shadcn@latest add @ondo-ui/theme @ondo-ui/theme-provider
Add components#
Add any component by name. Dependencies such as utils are resolved automatically:
bunx --bun shadcn@latest add @ondo-ui/button
Then import it from your project:
import { Button } from "@/components/ui/button"
export default function Example() {
return <Button>Click me</Button>
}