import clsx from "clsx"; type LabelProps = { value: string; title?: string; icon?: JSX.Element; className?: string; }; export default function ScoreStatLabel({ value, title, icon, className = "bg-neutral-700", }: LabelProps) { return (

{value} {icon}

); }