import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; export const Label: React.StatelessComponent = ({text, row, light, className}) => (!text ? null : ( )); Label.propTypes = { text: PropTypes.string, row: PropTypes.bool, light: PropTypes.bool, className: PropTypes.string, }; Label.defaultProps = { row: false, light: false, };