import styles from './slot.module.css'; /** * An inventory slot. Displays an item image and the quantity of the item if > 1. */ export default function Slot({source, onClick, qty = 1}) { const image = source + '/icon.png'; return ( ); }