import React from "react"; import { useColorMode } from "theme-ui"; function Logo(props) { const [colorMode] = useColorMode(); const fill = colorMode === "light" ? "black" : "white"; return (
); } export default Logo;