[Viewthedocumentation](https://react-icons.github.io/react-icons) for further usage examples and how to use icons from other packages. _NOTE_: each Icon package has it's own subfolder under `react-icons` you import from.
Forexample,touseaniconfrom**MaterialDesign**,yourimportwouldbe:`import { ICON_NAME } from 'react-icons/md';`
Thepreviewsiteisthe[`react-icons`](https://react-icons.github.io/react-icons) website, built in [NextJS](https://nextjs.org/).
```bash
cdpackages/react-icons
yarnbuild
cd../preview
yarnstart
```
###Demo
Thedemoisa[CreateReactApp](https://create-react-app.dev/) boilerplate with `react-icons` added as a dependency for easy testing.
```bash
cdpackages/react-icons
yarnbuild
cd../demo
yarnstart
```
##WhyReactSVGcomponentsinsteadoffonts?
SVGis[supportedbyallmajorbrowsers](http://caniuse.com/#search=svg). With `react-icons`, you can serve only the needed icons instead of one big font file to the users, helping you to recognize which icons are used in your project.