|
|
|
|
|
|
|
|
|
|
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
import React from 'react';
|
|
|
|
|
|
import styles from './label.css';
|
|
|
|
|
|
const Label = props => (
|
|
|
<label className={styles.inputGroup}>
|
|
|
<span className={props.secondary ? styles.inputLabelSecondary : styles.inputLabel} style={props.style}>
|
|
|
{props.text}
|
|
|
</span>
|
|
|
{props.children}
|
|
|
</label>
|
|
|
);
|
|
|
|
|
|
Label.propTypes = {
|
|
|
children: PropTypes.node,
|
|
|
secondary: PropTypes.bool,
|
|
|
text: PropTypes.string.isRequired,
|
|
|
style: PropTypes.object
|
|
|
};
|
|
|
|
|
|
Label.defaultProps = {
|
|
|
secondary: false
|
|
|
};
|
|
|
|
|
|
export default Label;
|
|
|
|