Row
Rows are the used as the wrapper to the Column, they adjust the padding provided by Container by adding row gap and column gap.
Usage
import React from 'react'
import { Row, Column, Container, Heading, Text } from '@therise3107/axis'
const home = () => (
<Container>
<Row>
<Column>
<Heading>Cats 🐱</Heading>
<Text>Cats are planning global invasion!</Text>
</Column>
<Column>
<Heading>Dogs 🐶</Heading>
<Text>Dogs are here to the rescue!</Text>
</Column>
</Row>
</Container>
)API reference
Last updated
Was this helpful?