import PropTypes from 'prop-types'; import React from 'react'; import SpinnerIcon from 'Components/SpinnerIcon'; import { icons } from 'Helpers/Props'; import styles from './BookEditorFooterLabel.css'; function BookEditorFooterLabel(props) { const { className, label, isSaving } = props; return (
{label} { isSaving && }
); } BookEditorFooterLabel.propTypes = { className: PropTypes.string.isRequired, label: PropTypes.string.isRequired, isSaving: PropTypes.bool.isRequired }; BookEditorFooterLabel.defaultProps = { className: styles.label }; export default BookEditorFooterLabel;