import { withStyles } from '@material-ui/core/styles'; import { Grid, LinearProgress, Typography } from '@material-ui/core'; import Panel from './Panel'; import Text from './Text/HeaderText'; import { PURPLE_OFF, RED_ON } from '../lib/consts/DEFAULT_THEME'; const BorderLinearProgress = withStyles({ root: { height: 10, borderRadius: 5, }, colorPrimary: { backgroundColor: PURPLE_OFF, }, bar: { borderRadius: 5, backgroundColor: RED_ON, }, })(LinearProgress); const Memory = (): JSX.Element => { return ( Allocated: 14GB Free: 50GB ); }; export default Memory;