import clsx from 'clsx'; import PropTypes from 'prop-types'; import { PureComponent } from 'react'; export default class ChartBarTooltip extends PureComponent { static propTypes = { className: PropTypes.string, icon: PropTypes.object, label: PropTypes.string, value: PropTypes.string, }; render() { return (
  • { this.props.value } { this.props.icon || null } { this.props.label }
  • ); } }