/* eslint-disable @typescript-eslint/no-explicit-any */ import styled from "@emotion/styled"; import mediaqueries from "@narative/gatsby-theme-novela/src/styles/media"; import React from "react"; // This should be the black color, but the difference not noticable, so I avoided shadowing a component. // fill="#231f20" // eslint-disable-next-line @typescript-eslint/no-unused-vars const Logo = ({fill = "#fff"}: {fill?: string}): any => ( ); export default Logo; const LogoContainer = styled.div` .Logo__Mobile { display: none; } ${mediaqueries.tablet` .Logo__Desktop { display: none; } .Logo__Mobile{ display: block; } `} `;