import { cn } from "@/src/utils/tailwind"; import { type ReactNode } from "react"; export const TotalMetric = ({ className, metric, description, children, }: { className?: string; metric: ReactNode; description?: ReactNode; children?: ReactNode; }) => { return (
{metric}

{description}

{children}
); };