mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 12:56:01 +01:00
8ef28702f2
* Updating settings icons to use fontawesome and removing unused svgs * Updating more icons to use font-awesome icons and removing unused svgs
20 lines
496 B
JavaScript
20 lines
496 B
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
const ConfirmPageContainerWarning = (props) => {
|
|
return (
|
|
<div className="confirm-page-container-warning">
|
|
<i className="fa fa-info-circle confirm-page-container-warning__icon" />
|
|
<div className="confirm-page-container-warning__warning">
|
|
{props.warning}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
ConfirmPageContainerWarning.propTypes = {
|
|
warning: PropTypes.string,
|
|
};
|
|
|
|
export default ConfirmPageContainerWarning;
|