File size: 767 Bytes
5913525
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* DO NOT EDIT

@todo This file is copied from GUI and should be pulled out into a shared library.

See https://github.com/LLK/scratch-paint/issues/13 */

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;