import { Grid, Typography } from '@material-ui/core'; import Accordion from '@material-ui/core/Accordion'; import AccordionDetails from '@material-ui/core/AccordionDetails'; import AccordionSummary from '@material-ui/core/AccordionSummary'; import { blueGrey } from '@material-ui/core/colors'; import ExpandMoreIcon from '@material-ui/icons/ExpandMore'; import { Skeleton } from '@material-ui/lab'; import { withStyles } from '@material-ui/styles'; import React, { Component } from 'react'; const styles = theme => ({ acc_summary: { backgroundColor: blueGrey[50], padding: theme.spacing(2), textAlign: 'center', height: '75px', }, acc_details: { backgroundColor: blueGrey[100], }, grid_typo: { fontSize: theme.typography.pxToRem(20), fontWeight: theme.typography.fontWeightRegular, }, grid_typo_2: { marginLeft: '5px', fontSize: theme.typography.pxToRem(15), fontWeight: theme.typography.fontWeightRegular, color: theme.palette.text.secondary, }, }); class ServiceInfoSkeleton extends Component { render() { const { classes } = this.props; return ( }> ); } } export default withStyles(styles)(ServiceInfoSkeleton);