// ** MUI Imports import Box from '@mui/material/Box' import Card from '@mui/material/Card' import Rating from '@mui/material/Rating' import Button from '@mui/material/Button' import { styled } from '@mui/material/styles' import Typography from '@mui/material/Typography' import CardContent from '@mui/material/CardContent' import CardActions from '@mui/material/CardActions' import Grid, { GridProps } from '@mui/material/Grid' // Styled Grid component const StyledGrid1 = styled(Grid)(({ theme }) => ({ display: 'flex', flexDirection: 'column', alignItems: 'flex-start', [theme.breakpoints.down('md')]: { paddingTop: '0 !important' }, '& .MuiCardContent-root': { padding: theme.spacing(3, 4.75), [theme.breakpoints.down('md')]: { paddingTop: 0 } } })) // Styled Grid component const StyledGrid2 = styled(Grid)(({ theme }) => ({ display: 'flex', alignItems: 'center', justifyContent: 'center', [theme.breakpoints.up('md')]: { paddingLeft: '0 !important' }, [theme.breakpoints.down('md')]: { order: -1 } })) // Styled component for the image const Img = styled('img')(({ theme }) => ({ height: '11rem', borderRadius: theme.shape.borderRadius })) const CardHorizontalRatings = () => { return ( Stumptown Roasters 5 Star | 98 reviews Before there was a United States of America, there were coffee houses, because how are you supposed to build. Stumptown Roasters ) } export default CardHorizontalRatings