import { ReactNode } from 'react'; import { makeStyles } from '@material-ui/core/styles'; import { PANEL_BACKGROUND, TEXT } from '../lib/consts/DEFAULT_THEME'; type Props = { children: ReactNode; }; const useStyles = makeStyles(() => ({ paper: { // margin: 20, padding: '30px', backgroundColor: PANEL_BACKGROUND, opacity: 0.8, zIndex: 999, }, container: { position: 'relative', }, square: { content: '""', position: 'absolute', width: '30px', height: '30px', border: '1px', borderColor: TEXT, borderWidth: '1px', borderRadius: '3px', borderStyle: 'solid', padding: 0, margin: 0, }, topSquare: { top: '-5px', left: '-5px', }, bottomSquare: { bottom: '-5px', right: '-5px', }, })); const Panel = ({ children }: Props): JSX.Element => { const classes = useStyles(); return (