import React from 'react'; import { Box, Typography, Rating } from '@mui/material'; /** * Component to display product rating in a compact format */ const ProductRatingDisplay = ({ rating, reviewCount, showEmpty = false }) => { if (!rating && !reviewCount && !showEmpty) { return null; } return ( {reviewCount ? `(${reviewCount})` : showEmpty ? '(0)' : ''} ); }; export default ProductRatingDisplay;