diff --git a/app/components/row.js b/app/components/row.js index 9fb68f3..83a483c 100644 --- a/app/components/row.js +++ b/app/components/row.js @@ -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: '', };