import { styled } from "../stitches.config"; const SVG = styled("svg", { "& #path": { fill: "$accent", }, }); function Logo({ width, height, }: { width?: string | number; height?: string | number; }) { return ( ); } export default Logo;