Rowcomponent

Row({ as: Element = "div", children, ...props }: RowProps): ReactElement
ParamType
propsRowProps
Props for the <Row> component. required
    .asBlockElement
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>