- Beautiful, generic components that you can make your own.
- Responsive and accessible.
- A fully customizable theme, which includes a dark and light mode.
- Fully typed for use with Typescript.
- Support for tree shaking. Bundle only those components that you need.
- Included components: Alert, Avatar, Badge, Breadcrumbs, Button, Collapse, Container, Dialog, Divider, Form (and inputs), IconButton, Icons, Layer, Link, List, Menu, Navbar, Popover, Sheet, Spinner, Table, Tabs, Text, Toast, Toolbar, Tooltip, amongst others.
Install HelloBagus and Emotion using yarn or npm:
yarn add hellobagus @emotion/core @emotion/css
And import your desired components into your React project.
import { Button } from "hellobagus";
function MyApp() {
return <Button>Hello world</Button>;
}
MIT