import { StarIcon } from "@heroicons/react/24/solid"; import React, { FC } from "react"; export interface StartRatingProps { className?: string; point?: number; reviewCount?: number; } const StartRating: FC = ({ className = "", point = 4.5, reviewCount = 112, }) => { return (
{point} ({reviewCount})
); }; export default StartRating;