The documentation is still under construction 🚧 and in beta. There could be some breaking changes till we release a stable version.
npm install @buildarea-ui/react @stitches/[email protected]
This library provides various utiltility functions which will help you make beautiful react components.
Overwrite default theme:
import { Button, createTheme } from "@buildrea-ui/react";
const theme = createTheme({
colors: {
primary: "hsl(126, 100%, 77%)",
},
});
const SignUp = () => {
return (
<div className={theme}>
<Button>Signup</Button>
</div>
);
};
For more documentation on how to use this library, you can visit the Storybook 🔗 or visit the example section on Github Repo.