// ** MUI Imports import Card from '@mui/material/Card' import Button from '@mui/material/Button' import { styled } from '@mui/material/styles' import Typography from '@mui/material/Typography' import CardContent from '@mui/material/CardContent' // Styled component for the avatar image const AvatarImg = styled('img')(({ theme }) => ({ right: 21, bottom: 24, height: 162, position: 'absolute', [theme.breakpoints.down('md')]: { height: 154 }, [theme.breakpoints.down('sm')]: { height: 149 } })) const CardUpgradeAccount = () => { return ( Upgrade Account 😀 Add 15 team members $199 40% OFF 😍 ) } export default CardUpgradeAccount