import { Box, Text, Tooltip } from "@mantine/core";
import type { ReactNode } from "react";
import { ShimmerText } from "./ShimmerText";
export function StatsGrid({
children,
variant,
}: {
children: ReactNode;
variant: "card" | "turn";
}) {
return (
{children}
);
}
export function StatCell({
children,
usageState,
}: {
children: ReactNode;
usageState?: string;
}) {
return (
{children}
);
}
export function StaticStat({
accessibleLabel,
animated = false,
icon,
title,
value,
}: {
accessibleLabel: string;
animated?: boolean;
icon: ReactNode;
title: string;
value: string;
}) {
return (
{icon}
{animated ? {value} : value}
);
}