Skip to content

Instantly share code, notes, and snippets.

@MohamedLamineAllal
Created January 31, 2019 21:29
Show Gist options
  • Save MohamedLamineAllal/441d81280629d5167d1aa0006f2d813c to your computer and use it in GitHub Desktop.
Save MohamedLamineAllal/441d81280629d5167d1aa0006f2d813c to your computer and use it in GitHub Desktop.
React import svg url way
import myIcon from './icons/connected.svg'
export default class ConnexionBox extends PureComponent {
render() {
return (
<div>
<img src={myIcon} alt="connected" />
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment