import classNames from 'classnames'; export const Stat = ({ value, text, highlight, }: { value: string | number; text?: string; highlight?: boolean; }) => { return (

{value} {text && ( {text} )}

); };