diff --git a/src/index.jsx b/src/index.jsx index 147313c..1f31a1b 100644 --- a/src/index.jsx +++ b/src/index.jsx @@ -1,3 +1,4 @@ +import { IconContext } from "react-icons"; import React from 'react'; import ReactDOM from 'react-dom'; @@ -5,4 +6,9 @@ import './favicon.ico' import './styles/index.scss' import App from './components/App'; -ReactDOM.render(, document.querySelector("#app")); +ReactDOM.render( + + + , + document.querySelector("#app") +); diff --git a/src/styles/index.scss b/src/styles/index.scss index 51766f1..d653c6c 100644 --- a/src/styles/index.scss +++ b/src/styles/index.scss @@ -50,3 +50,9 @@ $toolbar-offset: 0; .maputnik-layout { height: 100vh; } + +.react-icons { + vertical-align: middle; + width: 14px; + height: 14px; +}