Bungas UI
A comprehensive React component library with 165+ components
A comprehensive React component library with 165+ components
Bungas UI is a comprehensive React component library built on top of Radix UI primitives, Tailwind CSS, and modern React patterns.
npm install @bungas/uiInput fields, selects, checkboxes, and form controls
Components: 24
Cards, containers, grids, and structural components
Components: 17
Navbars, menus, tabs, and navigation components
Components: 10
Alerts, toasts, progress, and feedback components
Components: 19
Tables, lists, badges, and data presentation
Components: 11
Dialogs, drawers, popovers, and overlay components
Components: 6
Charts, graphs, and data visualization components
Components: 9
Calendars, date pickers, and scheduling components
Components: 10
Text, headings, code blocks, and content components
Components: 13
Images, avatars, galleries, and media components
Components: 14
User profiles, cards, and social components
Components: 5
Drag & drop, animations, and interactive components
Components: 13
Domain-specific and specialized components
Components: 14
import { BungasProvider, Button, Card, Input } from "@bungas/ui"
function App() {
return (
<BungasProvider>
<Card>
<Input placeholder="Enter text..." />
<Button>Submit</Button>
</Card>
</BungasProvider>
)
}