mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 03:20:23 +01:00
23 lines
520 B
JavaScript
23 lines
520 B
JavaScript
|
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
|