const PaddedRow = ({ children, amount, vCenter }) => { amount = amount || 20; const PadItem = () => (
); let rowProps = {className: 'row'}; if(vCenter) rowProps = {className: 'row v-center'}; else rowProps = {...rowProps, style: {paddingTop: amount}}; return (