Files
Prowlarr-Prowlarr/frontend/src/Indexer/Editor/IndexerEditorFooterLabel.js
2020-10-22 14:56:21 -04:00

41 lines
840 B
JavaScript

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