// ** MUI Imports import Box from '@mui/material/Box' 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 trophy image const TrophyImg = styled('img')(({ theme }) => ({ right: 22, bottom: 0, width: 106, position: 'absolute', [theme.breakpoints.down('sm')]: { width: 95 } })) const CardAward = () => { return ( Congratulations{' '} Norris ! 🎉 Best seller of the month $42.8k 78% of target 🤟🏻 ) } export default CardAward