Atom Components
Form Components
Input
<Input placeholder="Enter your name" />Textarea
<Textarea placeholder="Write your message" />Select
<Select {...props}>
<SelectTrigger aria-label="Food">
<SelectValue placeholder="Select a fruit..." />
</SelectTrigger>
<SelectContent>
<SelectGroup>
<SelectLabel>Fruits</SelectLabel>
<SelectItem value="apple">Apple</SelectItem>
<SelectItem value="banana">Banana</SelectItem>
<SelectItem value="grapes">Grapes</SelectItem>
</SelectGroup>
</SelectContent>
</Select>Checkbox
Switch
Label
Slider
Display Components
Avatar
Badge
Card
Skeleton
AspectRatio
Typography
Interactive Components
Button
Toggle
Navigation Components
Tabs
Breadcrumb
Overlay Components
Dialog
Popover
Toast
Data Display
Table
ScrollArea
Feedback Components
Alert
Loader
RichText
Utility Components
Drawer
Last updated