// ** React Imports import { useState } from 'react' // ** MUI Imports import Box from '@mui/material/Box' import Card from '@mui/material/Card' import Backdrop from '@mui/material/Backdrop' import IconButton from '@mui/material/IconButton' import Typography from '@mui/material/Typography' import CardHeader from '@mui/material/CardHeader' import CardContent from '@mui/material/CardContent' import CircularProgress from '@mui/material/CircularProgress' // ** Icon Imports import Icon from 'src/@core/components/icon' const CardActionRefresh = () => { // ** State const [reload, setReload] = useState(false) const handleBackDrop = () => { setReload(true) setTimeout(() => { setReload(false) }, 2000) } return ( handleBackDrop()} > } /> You can specifically add refresh action using actionRefresh prop Click on{' '} {' '} icon to see it in action theme.zIndex.mobileStepper - 1 }} > ) } export default CardActionRefresh