How to display svg icons(.svg files) in UI using React Component?

前端 未结 7 789
[愿得一人]
[愿得一人] 2020-11-29 22:28

I have seen lot libraries for svg on react but none gave me how to import a .svg in the react component , I have seen code which talk about bring the svg code in to react ra

7条回答
  •  执笔经年
    2020-11-29 22:52

    You can directly use .svg extension with img tag if the image is remotely hosted.

    ReactDOM.render(
      ,
      document.getElementById('root')
    );
    

    Here is the fiddle: http://codepen.io/srinivasdamam-1471688843/pen/ZLNYdy?editors=0110

    Note: If you are using any web app bundlers (like Webpack) you need to have related file loader.

提交回复
热议问题