Components are organized following the [atomic design](http://bradfrost.com/blog/post/atomic-web-design/) conventions.

## Usage

To use them, simply import the desired component to your project as follows:

```tsx static
import { Button, Text, FlexCol } from '@zopauk/react-components';

<SizeContainer size="short">
  <Button>Click me</Button>
  <Text>Hi!</Text>
</SizeContainer>;
```
