Repository URL to install this package:
|
Version:
8.1.0-rc.5 ▾
|
import React, { Component } from 'react';
import PropTypes from 'prop-types';
class InputLabel extends Component {
static propTypes = {
children: PropTypes.any,
};
static defaultProps = {
children: null,
};
render() {
const { children } = this.props;
return <label className="Input-label">{children}</label>;
}
}
export default InputLabel;