import clsx from "clsx"; import * as React from "react"; export interface ScoreProps { count: number; highlight?: boolean; style?: React.CSSProperties; className?: string; } const Score: React.VoidFunctionComponent = ({ count, highlight, style, className, }) => { return (
{count}
); }; export default Score;