import PropTypes from 'prop-types'; import { PureComponent } from 'react'; export default class ChartLabel extends PureComponent { static propTypes = { isRtl: PropTypes.bool, label: PropTypes.string.isRequired, width: PropTypes.number.isRequired, x: PropTypes.number.isRequired, }; render() { const labelStyle = { [ this.props.isRtl ? 'right' : 'left' ]: this.props.x + 'px', width: this.props.width + 'px', }; return (
{ this.props.label }
); } }