blob: 41c92affa9e6f65b69c0fdaead1736cb7c66c7fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import React from 'react';
import { PropTypes } from 'prop-types';
import { withStyles } from '@material-ui/core/styles';
import { CircularProgress } from '@material-ui/core';
const styles = {
circularProgress: {
position: 'fixed',
top: 'calc(50% - 30px)',
left: 'calc(50% - 30px)',
}
};
function Loading(props) {
return (<CircularProgress className={props.classes.circularProgress} size={60} color="secondary" />);
}
Loading.propTypes = {
classes: PropTypes.object.isRequired,
};
export default (withStyles(styles)(Loading));
|