import PropTypes from 'prop-types'; import React from 'react'; import Alert from 'Components/Alert'; import Icon from 'Components/Icon'; import Button from 'Components/Link/Button'; import ModalBody from 'Components/Modal/ModalBody'; import ModalContent from 'Components/Modal/ModalContent'; import ModalFooter from 'Components/Modal/ModalFooter'; import ModalHeader from 'Components/Modal/ModalHeader'; import { icons, kinds } from 'Helpers/Props'; import styles from './RetagArtistModalContent.css'; function RetagArtistModalContent(props) { const { artistNames, onModalClose, onRetagArtistPress } = props; return ( Retag Selected Artist Tip: To preview the tags that will be written... select "Cancel" then click any artist name and use the
Are you sure you want to re-tag all files in the {artistNames.length} selected artist?
); } RetagArtistModalContent.propTypes = { artistNames: PropTypes.arrayOf(PropTypes.string).isRequired, onModalClose: PropTypes.func.isRequired, onRetagArtistPress: PropTypes.func.isRequired }; export default RetagArtistModalContent;