import { MaterialIcon } from "./MaterialIcon";
export function StarRating({ value }: { value: number | null }) {
return (
{[1, 2, 3, 4, 5].map((star) => (
= star ? "star" : "star_outline"}
className={`text-xl ${(value ?? 0) >= star ? "text-[var(--lemon-500)]" : "text-[var(--oat-border)]"}`}
/>
))}
);
}