import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; /** * @ngdoc react * @name Row * @description Row Component in a list of item where each item is a row */ export const Row: React.StatelessComponent = ({children, classes, paddingBottom}) => (
{children}
); Row.propTypes = { children: PropTypes.node.isRequired, classes: PropTypes.string, margin: PropTypes.bool, marginTop: PropTypes.bool, paddingBottom: PropTypes.bool, }; Row.defaultProps = { classes: '', margin: true, marginTop: false, };