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