// ** React Imports import { MouseEvent, useState } from 'react' // ** MUI Imports import Box from '@mui/material/Box' import Card from '@mui/material/Card' import Menu from '@mui/material/Menu' import Button from '@mui/material/Button' import MenuItem from '@mui/material/MenuItem' import { styled } from '@mui/material/styles' import Typography from '@mui/material/Typography' import IconButton from '@mui/material/IconButton' import CardContent from '@mui/material/CardContent' import CardActions from '@mui/material/CardActions' import Grid, { GridProps } from '@mui/material/Grid' // ** Icon Imports import Icon from 'src/@core/components/icon' import Image from 'next/image' // Styled Grid component const StyledGrid = styled(Grid)(({ theme }) => ({ display: 'flex', alignItems: 'center', justifyContent: 'center', [theme.breakpoints.down('md')]: { borderBottom: `1px solid ${theme.palette.divider}` }, [theme.breakpoints.up('md')]: { borderRight: `1px solid ${theme.palette.divider}` } })) const CardMobile = () => { // ** State const [anchorEl, setAnchorEl] = useState(null) const open = Boolean(anchorEl) const handleClick = (event: MouseEvent) => { setAnchorEl(event.currentTarget) } const handleClose = () => { setAnchorEl(null) } return ( Apple iPhone 11 Pro ['0 !important', '0 !important', `${theme.spacing(6)} !important`], pl: theme => [`${theme.spacing(6)} !important`, `${theme.spacing(6)} !important`, '0 !important'] }} > Apple iPhone 11 Pro Apple iPhone 11 Pro smartphone. Announced Sep 2019. Features 5.8″ display Apple A13 Bionic Price:{' '} $899 ) } export default CardMobile