The Grid components consists of 3 different components: `<Grid>`, `<Row>`, `<Col>`.
By default, it has a max content width of 1320px and gutters of 24px.

### Example

```jsx
<Grid>
  <Row align="center">
    <Col size={3}>Size: 3</Col>
    <Col size={7}>Size: 7</Col>
  </Row>
  <Row align="flex-start">
    <Col size={2}>Size: 2</Col>
    <Col size={5}>Size: 5</Col>
  </Row>
</Grid>
```
