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 { Box } from '@material-ui/core';
|
|
|
|
import { makeStyles } from '@material-ui/core/styles';
|
|
|
|
import { BORDER_RADIUS, DIVIDER } from '../../lib/consts/DEFAULT_THEME';
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
children: ReactNode;
|
|
|
|
};
|
|
|
|
|
|
|
|
const useStyles = makeStyles(() => ({
|
|
|
|
innerHeader: {
|
|
|
|
position: 'relative',
|
|
|
|
padding: '0 .7em',
|
|
|
|
},
|
|
|
|
header: {
|
|
|
|
top: '-.3em',
|
|
|
|
left: '-.3em',
|
|
|
|
padding: '1.4em 0',
|
|
|
|
position: 'absolute',
|
|
|
|
content: '""',
|
|
|
|
borderColor: DIVIDER,
|
|
|
|
borderWidth: '1px',
|
|
|
|
borderRadius: BORDER_RADIUS,
|
|
|
|
borderStyle: 'solid',
|
|
|
|
width: '100%',
|
|
|
|
},
|
|
|
|
}));
|
|
|
|
|
|
|
|
const PanelHeader = ({ children }: Props): JSX.Element => {
|
|
|
|
const classes = useStyles();
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Box className={classes.innerHeader} whiteSpace="pre-wrap">
|
|
|
|
<div className={classes.header} />
|
|
|
|
{children}
|
|
|
|
</Box>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default PanelHeader;
|