Rowcomponent
Row({ as: Element = "div", children, ...props }: RowProps): ReactElement| Param | Type | |
|---|---|---|
props | RowProps | Props for the <Row> component. required |
.as | BlockElement | Element this <Row> renders as, e.g. "header" to output a "<header>" Defaults to "div" |
| Return | |
|---|---|
ReactElement |
Flex container that arranges its children as a row by default.
Examples
<Row gap="small" center>{items}</Row>