2022-04-05 01:40:51 -05:00
|
|
|
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: 'auto',
|
|
|
|
marginTop: '24px',
|
2022-04-20 08:29:28 -05:00
|
|
|
fontSize: '0.8rem',
|
|
|
|
display: 'flex',
|
|
|
|
alignItems: 'center',
|
2023-09-13 00:37:28 -05:00
|
|
|
flexDirection: 'column'
|
2022-04-05 01:40:51 -05:00
|
|
|
},
|
|
|
|
}));
|
|
|
|
|
|
|
|
export default function EmptyPanelMessage({text}) {
|
|
|
|
const classes = useStyles();
|
|
|
|
return (
|
|
|
|
<Box className={classes.root}>
|
2023-09-13 00:37:28 -05:00
|
|
|
<span style={{marginLeft: '4px'}}><InfoRoundedIcon style={{height: '1.2rem'}}/>{text}</span>
|
2022-04-05 01:40:51 -05:00
|
|
|
</Box>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
EmptyPanelMessage.propTypes = {
|
|
|
|
text: PropTypes.string,
|
|
|
|
};
|