1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/swaps/popover-custom-background/popover-custom-background.js
2023-06-15 20:17:21 +02:00

15 lines
353 B
JavaScript

import React from 'react';
import PropTypes from 'prop-types';
import Box from '../../../components/ui/box';
const PopoverCustomBackground = ({ onClose }) => {
return <Box className="popover-custom-background" onClick={onClose}></Box>;
};
export default PopoverCustomBackground;
PopoverCustomBackground.propTypes = {
onClose: PropTypes.func,
};