import clsx from "clsx"; export type FutureSyncStatusItem = { key: string; state: "ready" | "syncing"; label: string; note: string; }; export function FutureRefreshLock({ locale }: { locale: string }) { return (
); } export function FutureSyncStatusStrip({ items, compact = false, }: { items: readonly FutureSyncStatusItem[]; compact?: boolean; }) { return (
{items.map((item) => (
))}
); }