RPG-style inventory grid with drag-and-drop and rarity colors.
npx chaos add inventory-gridimport { InventoryGrid } from '@oalacea/chaosui/navigation/inventory-grid';
const items = [
{ id: '1', icon: '⚔️', name: 'Sword', count: 1, rarity: 'legendary' },
{ id: '2', icon: '🧪', name: 'Potion', count: 5, rarity: 'common' },
];
<InventoryGrid items={items} onSelect={handleSelect} />