scoresaber-reloaded-v2/src/components/player/ScoreStatLabel.tsx

35 lines
679 B
TypeScript
Raw Normal View History

2023-10-20 09:50:19 +00:00
import clsx from "clsx";
type LabelProps = {
value: string;
title?: string;
2023-10-21 01:38:18 +00:00
icon?: JSX.Element;
2023-10-20 09:50:19 +00:00
className?: string;
};
export default function ScoreStatLabel({
value,
title,
2023-10-21 01:38:18 +00:00
icon,
2023-10-20 09:50:19 +00:00
className = "bg-neutral-700",
}: LabelProps) {
return (
<div
className={clsx(
"flex flex-col rounded-md hover:cursor-default",
className,
)}
>
2023-10-20 09:50:19 +00:00
<div className="p4-[0.3rem] flex items-center gap-2 pb-[0.2rem] pl-[0.3rem] pr-[0.3rem] pt-[0.2rem]">
2023-10-21 01:38:18 +00:00
<p
className="flex w-full items-center justify-center gap-1"
title={title}
>
{value}
2023-10-21 01:38:18 +00:00
{icon}
</p>
2023-10-20 09:50:19 +00:00
</div>
</div>
);
}