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

前端 未结 7 826
[愿得一人]
[愿得一人] 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:49

    You can also import .svg, .jpg, .png, .ttf, etc. files like:

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

提交回复
热议问题