import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; export const Row: React.StatelessComponent = ({children, flex, noPadding, halfWidth, className}) => (
{children}
); Row.propTypes = { children: PropTypes.node, flex: PropTypes.bool, noPadding: PropTypes.bool, className: PropTypes.oneOfType([ PropTypes.string, PropTypes.object, ]), halfWidth: PropTypes.bool, }; Row.defaultProps = { flex: false, noPadding: false, };