diff --git a/src/components/common/ActiveIcon.js b/src/components/common/ActiveIcon.js index 3274290..6f2da48 100644 --- a/src/components/common/ActiveIcon.js +++ b/src/components/common/ActiveIcon.js @@ -1,17 +1,25 @@ import React from "react"; import PropTypes from "prop-types"; import { CheckCircleOutlineRounded, RemoveRounded } from "@material-ui/icons"; -import { LinearProgress } from "@material-ui/core"; +import { LinearProgress, Grid } from "@material-ui/core"; const ActiveIcon = ({ active, loading }) => { if (loading && loading === true) { - return ; + return ( + + + + + + + + ); } return active && active === true ? ( - + ) : ( - + ); };