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