Trying to include feather icons into react component but it is not showing up.
const SomeComponent = () => {
<div>
    <script src="https://unpkg.com/feather-icons/dist/feather.min.js"> </script>
    <script>
        feather.replace()
    </script>
    <i data-feather="home"></i>
</div>
}
What could be the issue?
 
    