import { Warehouse, DollarSign, Users, AlertTriangle, Shield } from 'lucide-react'; import type { LabConstraints } from '@/types'; import { cn } from '@/lib/utils'; interface LabInventoryProps { constraints: LabConstraints; className?: string; } export default function LabInventory({ constraints, className }: LabInventoryProps) { const budgetPercent = (constraints.budget_remaining / constraints.budget) * 100; return (