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