import React, { ComponentProps, FC } from 'react'; import Box from '../../atoms/Box'; type RowProps = ComponentProps & { center?: boolean, wrap?: boolean, }; const Row: FC = ({ center, wrap, ...props }: RowProps) => ( ); Row.defaultProps = { flexDirection: 'row', center: false, wrap: false, }; export default Row;