Can someone explain why resizing an imported svg is not working in this instance? I've tried removing the width and height values on the svg itself, but it didn't solve the issue.
const Wrap = styled.div`
svg {
width: 40px;
path {
fill: red;
}
}
`;
export default function App() {
return (
<div className="App">
<Wrap>
<Logo />
</Wrap>
<h2>Start editing to see some magic happen!</h2>
</div>
);
}
https://codesandbox.io/s/pensive-river-ertf8?file=/src/App.js:145-423