I’m learning react.js. I want to use icons to beautify the appearance of the UI,
for best practices on a large scale,
Is it better to use a png icon that you have made yourself previously (or downloaded from the internet) and then call it using the tag <img src={nameicon/>
, or use an icon library like react-icon?
Can using SVG itself slow down the website compared to using an icon library?