Local modifications to ClusterLabs/Anvil by Alteeve
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.
|
|
|
import { ReactNode } from 'react';
|
|
|
|
import { Paper, Box } from '@material-ui/core';
|
|
|
|
import { makeStyles } from '@material-ui/core/styles';
|
|
|
|
import { TEXT } from '../lib/consts/DEFAULT_THEME';
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
children: ReactNode;
|
|
|
|
};
|
|
|
|
|
|
|
|
const useStyles = makeStyles(() => ({
|
|
|
|
rectangle: {
|
|
|
|
width: '30px',
|
|
|
|
height: '30px',
|
|
|
|
borderWidth: '1px',
|
|
|
|
borderRadius: '3px',
|
|
|
|
borderStyle: 'solid',
|
|
|
|
borderColor: TEXT,
|
|
|
|
},
|
|
|
|
paper: {
|
|
|
|
padding: 10,
|
|
|
|
},
|
|
|
|
}));
|
|
|
|
|
|
|
|
const Panel = ({ children }: Props): JSX.Element => {
|
|
|
|
const classes = useStyles();
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Box display="flex" justifyContent="flex-start">
|
|
|
|
<Box className={classes.rectangle} />
|
|
|
|
</Box>
|
|
|
|
<Paper className={classes.paper}>{children}</Paper>
|
|
|
|
<Box display="flex" justifyContent="flex-end">
|
|
|
|
<Box className={classes.rectangle} />
|
|
|
|
</Box>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Panel;
|