You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
470 B
22 lines
470 B
import React from "react"; |
|
import { makeStyles } from "@material-ui/core/styles"; |
|
import CircularProgress from "@material-ui/core/CircularProgress"; |
|
|
|
const useStyles = makeStyles((theme) => ({ |
|
root: { |
|
display: "flex", |
|
"& > * + *": { |
|
marginLeft: theme.spacing(2), |
|
}, |
|
}, |
|
})); |
|
|
|
export default function CircularIndeterminate() { |
|
const classes = useStyles(); |
|
|
|
return ( |
|
<div className={classes.root}> |
|
<CircularProgress /> |
|
</div> |
|
); |
|
}
|
|
|