import React from 'react'; import { ArchiveBoxIcon } from '@heroicons/react/24/outline'; import StatCard from '../ui/StatCard'; import { formatNumber } from '../../lib/utils'; import type { InventoryStats } from '../../hooks/useInventory'; const ICON = ; /** Four headline counters — order/colors mirror the tauri InventoryCards. */ export default function InventoryStatCards({ stats }: { stats: InventoryStats }) { return (
); }