ReactJS component library built with tabler.io.
npm install retabler
Check out the storybook for examples of components.
Examples use react-feather icons but you can choose to install your favourite icon set.
import "retabler/dist/css/tabler.css";
import { Card } from "retabler";
const Example = () => (
<Card>
<Card.Body>example</Card.Body>
</Card>
);
git clone [email protected]:gryevns/react-tabler.git
cd react-tabler
yarn install --dev
# tests
yarn run tests
# storybook
yarn run storybook
# build
yarn run build