import * as React from 'react' import { FlexProps } from './interfaces' import { Flex } from './web' export class Row extends Flex { public static defaultProps: FlexProps = { direction: 'row', align: 'center', justify: 'flex-start', } }