import * as React from "react"; import { MixingBowl, StackItem } from "../types"; import { ItemTypeIcons } from "./utils"; const styles = { cellContainer: { display: "flex", justifyContent: "space-between", margin: "2px 0", }, listContainer: { width: "80%", marginTop: 5, marginLeft: "auto", marginRight: "auto", }, stackContainer: { overflowY: "auto" as "auto", }, columnContainer: { height: "100%", textAlign: "center" as "center", margin: "0 10px", display: "flex", flexDirection: "column" as "column", }, stackMarker: { height: "0.7em", borderRadius: 5, }, stackHeader: { fontWeight: "bold", margin: "5px 0", }, }; /** Displays a single item of a bowl or dish, along with type */ const StackItemCell = ({ item }: { item: StackItem }) => { return (