Skip to content

Instantly share code, notes, and snippets.

@jenbennings
Created March 30, 2017 08:16
Show Gist options
  • Save jenbennings/4f020d2a1e3d41b264260e2f988db2d1 to your computer and use it in GitHub Desktop.
Save jenbennings/4f020d2a1e3d41b264260e2f988db2d1 to your computer and use it in GitHub Desktop.
import icon from './assets/icon.svg';
class myComponent extends React.Component {
render() {
return (
<UnrelatedWrapper>
<SVGWrapper dangerouslySetInnerHTML={{__html: icon}} />
</UnrelatedWrapper>
);
}
}
const SVGWrapper = styled.span`
background-color: red;
svg {
background-color: blue;
}
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment