import { View, Text } from "react-native"; import { ProgressBar } from "./ProgressBar"; import { ResetCountdown } from "./ResetCountdown"; interface UsageStatProps { label: string; percent: number; resetAtSeconds?: number; resetAtISO?: string; } export function UsageStat({ label, percent, resetAtSeconds, resetAtISO }: UsageStatProps) { return ( {label} {Math.round(percent)}% ); }