Components
<Row />
A component for laying out children horizontally.


It can be thought of as a
To lay out components vertically, use <Column />
.
On the web, it can fit up to three children horizontally, and on mobile, all children will be presented vertically.
Props
align? : "left" | "center" | "right"
How to optionally align the content of the text block.
Defaults to "center"
.
children : React.ReactNode
The child components to be displayed horizontally.
Was this page helpful?