32 lines
831 B
JavaScript
32 lines
831 B
JavaScript
import React from 'react';
|
|
import { Box } from '@material-ui/core';
|
|
import InfoRoundedIcon from '@material-ui/icons/InfoRounded';
|
|
import { makeStyles } from '@material-ui/styles';
|
|
import PropTypes from 'prop-types';
|
|
|
|
const useStyles = makeStyles((theme)=>({
|
|
root: {
|
|
color: theme.palette.text.primary,
|
|
margin: '24px auto 12px',
|
|
fontSize: '0.8rem',
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
height: '100%',
|
|
},
|
|
}));
|
|
|
|
export default function EmptyPanelMessage({text, style}) {
|
|
const classes = useStyles();
|
|
return (
|
|
<Box className={classes.root} style={style}>
|
|
<InfoRoundedIcon style={{height: '1.2rem'}}/>
|
|
<span style={{marginLeft: '4px'}}>{text}</span>
|
|
</Box>
|
|
);
|
|
}
|
|
EmptyPanelMessage.propTypes = {
|
|
text: PropTypes.string,
|
|
style: PropTypes.object,
|
|
};
|