Collection of React components used for Accurat projects.
The purpose is to provide ready-to-use, easily customizable UI components to set up web projects. They're also useful for quick prototypes.
yarn add @accurat/react-components
import { Button, Select, Checkbox } from '@accurat/react-components'
The component is designed to be easily customizable using tachyons classes, like this:
<Button className="br-pill bg-blue hover-bg-dark-blue">Click</Button>
Alternatively, you can also pass a style
attribute as a prop
.
<Button style={{ backgroundColor: 'blue' }}>Click</Button>