vcc-ui
Version:
VCC UI is a collection of React UI Components that can be used for developing front-end applications at Volvo Car Corporation.
18 lines (15 loc) • 390 B
Markdown
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>
```