import * as React from 'react' import { RowProps, RowShortcutProps } from '../interfaces' import { ROW_SHORTCUT_PROPS } from '../constants' import { Flex } from './flex' export class Row extends Flex { public static defaultProps: RowProps = { row: 'xs', align: 'center', justify: 'flex-start', } protected shortcutProps: RowShortcutProps = ROW_SHORTCUT_PROPS }