Skip to content

Instantly share code, notes, and snippets.

@d-ivashchuk
Created November 19, 2018 10:26
Show Gist options
  • Save d-ivashchuk/24208ee99fce23c6e8e3e040f322059a to your computer and use it in GitHub Desktop.
Save d-ivashchuk/24208ee99fce23c6e8e3e040f322059a to your computer and use it in GitHub Desktop.
import { ReactComponent as ImportedComponent } from "./logo.svg";
const StyledSVG = styled(ImportedComponent)`
display: block;
margin: auto;
width: 25em;
height: 25em;
`;
function App() {
return (
<div className="App">
<StyledSVG />
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment