mirror of https://github.com/linkerd/linkerd2.git
28 lines
695 B
JavaScript
28 lines
695 B
JavaScript
import CircularProgress from '@material-ui/core/CircularProgress';
|
|
import Grid from '@material-ui/core/Grid';
|
|
import PropTypes from 'prop-types';
|
|
import React from 'react';
|
|
import { withStyles } from '@material-ui/core/styles';
|
|
|
|
const styles = theme => ({
|
|
progress: {
|
|
margin: "auto",
|
|
color: theme.palette.primary.main,
|
|
},
|
|
});
|
|
|
|
function CircularIndeterminate(props) {
|
|
const { classes } = props;
|
|
return (
|
|
<Grid container justify="center">
|
|
<CircularProgress className={classes.progress} />
|
|
</Grid>
|
|
);
|
|
}
|
|
|
|
CircularIndeterminate.propTypes = {
|
|
classes: PropTypes.shape({}).isRequired,
|
|
};
|
|
|
|
export default withStyles(styles, { withTheme: true })(CircularIndeterminate);
|