import {StarIcon} from '@common/icons/material/Star'; import clsx from 'clsx'; interface Props { score: number | null; className?: string; } export function TitleRating({score, className}: Props) { if (!score) return null; return (
{score} / 10
); }