hotfix: add classname in row component

This commit is contained in:
George Lima 2018-12-12 18:14:12 -03:00
parent 212e2b3b25
commit c0be9d5d8c
1 changed files with 2 additions and 0 deletions

View File

@ -14,6 +14,7 @@ const Flex = styled.div`
type Props = {
alignItems?: string,
justifyContent?: string,
className?: string,
children: Node,
};
@ -24,4 +25,5 @@ export const RowComponent = ({ children, ...props }: Props) => (
RowComponent.defaultProps = {
alignItems: 'flex-start',
justifyContent: 'flex-start',
className: '',
};