Components library for react and tailwind.
npm i siber-ui
yarn add siber-ui
pnpm i siber-ui
First you will need to add the config in your tailwind.config.js
const withSiber = require('siber-ui/dist/utils/with-siber.js');
const config = {
/* your custom tailwind config */
};
module.exports = withSiber(config);
Now you're good to go and use siber-ui in your project.
import {Button} from 'siber-ui';
export default function Example() {
return <Button>Button</Button>;
}