diff options
Diffstat (limited to 'ui/app/components/confirm-page-container/confirm-page-container-content/confirm-page-container-warning/confirm-page-container-warning.component.js')
-rw-r--r-- | ui/app/components/confirm-page-container/confirm-page-container-content/confirm-page-container-warning/confirm-page-container-warning.component.js | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/ui/app/components/confirm-page-container/confirm-page-container-content/confirm-page-container-warning/confirm-page-container-warning.component.js b/ui/app/components/confirm-page-container/confirm-page-container-content/confirm-page-container-warning/confirm-page-container-warning.component.js deleted file mode 100644 index 79901c8fc..000000000 --- a/ui/app/components/confirm-page-container/confirm-page-container-content/confirm-page-container-warning/confirm-page-container-warning.component.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react' -import PropTypes from 'prop-types' - -const ConfirmPageContainerWarning = props => { - return ( - <div className="confirm-page-container-warning"> - <img - className="confirm-page-container-warning__icon" - src="/images/alert.svg" - /> - <div className="confirm-page-container-warning__warning"> - { props.warning } - </div> - </div> - ) -} - -ConfirmPageContainerWarning.propTypes = { - warning: PropTypes.string, -} - -export default ConfirmPageContainerWarning |