diff --git a/components/validation-progress.js b/components/validation-progress.js deleted file mode 100644 index fdb22bd..0000000 --- a/components/validation-progress.js +++ /dev/null @@ -1,30 +0,0 @@ -import PropTypes from 'prop-types' - -import ProgressBar from '@/components/progress-bar' - -const ValidationProgress = ({readBytes, totalBytes, isValidationComplete}) => ( -
- - - -
- -) - -ValidationProgress.propTypes = { - readBytes: PropTypes.number.isRequired, - totalBytes: PropTypes.number.isRequired, - isValidationComplete: PropTypes.bool.isRequired -} - -export default ValidationProgress