mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
15 lines
353 B
JavaScript
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,
|
|
};
|