You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.2 KiB
59 lines
1.2 KiB
import { ReactNode } from 'react'; |
|
import { makeStyles } from '@material-ui/core/styles'; |
|
import { |
|
BORDER_RADIUS, |
|
PANEL_BACKGROUND, |
|
TEXT, |
|
} from '../../lib/consts/DEFAULT_THEME'; |
|
|
|
type Props = { |
|
children: ReactNode; |
|
}; |
|
|
|
const useStyles = makeStyles(() => ({ |
|
paper: { |
|
padding: '2.1em', |
|
backgroundColor: PANEL_BACKGROUND, |
|
opacity: 0.8, |
|
zIndex: 999, |
|
}, |
|
container: { |
|
margin: '1em', |
|
position: 'relative', |
|
}, |
|
square: { |
|
content: '""', |
|
position: 'absolute', |
|
width: '2.1em', |
|
height: '2.1em', |
|
border: '1px', |
|
borderColor: TEXT, |
|
borderWidth: '1px', |
|
borderRadius: BORDER_RADIUS, |
|
borderStyle: 'solid', |
|
padding: 0, |
|
margin: 0, |
|
}, |
|
topSquare: { |
|
top: '-.3em', |
|
left: '-.3em', |
|
}, |
|
bottomSquare: { |
|
bottom: '-.3em', |
|
right: '-.3em', |
|
}, |
|
})); |
|
|
|
const Panel = ({ children }: Props): JSX.Element => { |
|
const classes = useStyles(); |
|
|
|
return ( |
|
<div className={classes.container}> |
|
<div className={`${classes.square} ${classes.topSquare}`} /> |
|
<div className={`${classes.square} ${classes.bottomSquare}`} /> |
|
<div className={classes.paper}>{children}</div> |
|
</div> |
|
); |
|
}; |
|
|
|
export default Panel;
|
|
|