// ** MUI Components
import useMediaQuery from '@mui/material/useMediaQuery'
import { styled, useTheme } from '@mui/material/styles'
interface FooterIllustrationsProp {
image?: string
}
// Styled Components
const MaskImg = styled('img')(() => ({
bottom: 0,
zIndex: -1,
width: '100%',
position: 'absolute'
}))
const ShapeImg = styled('img')(({ theme }) => ({
left: '15%',
bottom: '12%',
position: 'absolute',
[theme.breakpoints.down('lg')]: {
bottom: '7%'
}
}))
const FooterIllustrations = (props: FooterIllustrationsProp) => {
// ** Props
const { image } = props
// ** Hook
const theme = useTheme()
// ** Vars
const hidden = useMediaQuery(theme.breakpoints.down('md'))
const src = image || '/images/pages/misc-coming-soon-object.png'
if (!hidden) {
return (
<>
>
)
} else {
return null
}
}
export default FooterIllustrations