"use client"; import { memo } from "react"; import Shapes from "../../asset/Shapes"; import type { StatViewProps } from "./Stat.types"; /** * Figma: "Card / Stat" (21598-18215). Full width of grid column at desktop. */ function StatView({ value, label, asOf, shapeVariant, className = "", }: StatViewProps) { return (

{value}

{label}

{asOf ? (

{asOf}

) : null}
); } StatView.displayName = "StatView"; export default memo(StatView);