import React, { useState } from "react"; import { Flex, IconButton } from "theme-ui"; import ExpandMoreDiceIcon from "../../icons/ExpandMoreDiceIcon"; import DiceTrayOverlay from "./dice/DiceTrayOverlay"; function MapDice() { const [isExpanded, setIsExpanded] = useState(false); return ( setIsExpanded(!isExpanded)} sx={{ display: "block", backgroundColor: "overlay", borderRadius: "50%", }} m={2} > ); } export default MapDice;