import PropTypes from 'prop-types'; import { app as $content } from '../content'; import { clsm } from '../utils'; const LivePill = ({ className }) => (
{$content.live}
); LivePill.propTypes = { className: PropTypes.string }; LivePill.defaultProps = { className: '' }; export default LivePill;