UNPKG

@lunit/oui

Version:

Lunit Oncology UI components

11 lines (10 loc) 361 B
import { Popover as MuiPopover } from '@mui/material'; import { styled } from '@mui/material/styles'; const StyledPopover = styled(MuiPopover)(({ theme }) => ({ '& .MuiPopover-paper': { backgroundColor: theme.palette.neutralGrey[70], borderRadius: theme.spacing(2), backgroundImage: 'none', }, })); export default StyledPopover;