import React from 'react'; import './App.css'; import IconPicker from 'material-icon-picker'; import 'material-icon-picker/dist/style.css'; const App: React.FC = () => { const divEl = React.useRef(null); return

Pick your favorite google icon using the edit button or enter it directly in the textfield.

{ if (divEl.current) { divEl.current.innerText = `Icon value: ${icon}`; } }} />
; } export default App;