Created
January 31, 2019 21:32
-
-
Save MohamedLamineAllal/d8c4667a43e8eef1076242165fe7a944 to your computer and use it in GitHub Desktop.
React import svg inline as component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {ReactComponent as MyIcon} from 'connected.svg' | |
export default class ConnexionBox extends PureComponent { | |
render() { | |
return ( | |
<div> | |
<MyIcon className="connectedIcon" alt="connected"/> | |
</div> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment