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

{value}

); }