import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; /** * @ngdoc react * @name Column * @description Column Component of a list item */ export const Column: React.StatelessComponent = ({children, grow, border, noPadding, hasCheck, checked}) => (
{children}
); Column.propTypes = { children: PropTypes.node.isRequired, grow: PropTypes.bool, border: PropTypes.bool, noPadding: PropTypes.bool, hasCheck: PropTypes.bool, checked: PropTypes.bool, }; Column.defaultProps = { grow: false, border: true, noPadding: false, hasCheck: false, };