npm install react-common-icons
or
yarn add react-common-icons
import React from 'react'
import { createRoot } from 'react-dom/client'
import Icon from "react-common-icons";
function App() {
return (
<div id="app">
<Icon name="youtube" size={30} />
</div>
);
}
const container = document.getElementById('app')
const root = createRoot(container)
root.render(<App />)
yarn dev:demo
If you need some icons, welcome PR