Iconic is a free “do wtf you want with” set of pixel-perfect icons.
Available as basic SVG icons and via first-party React and Vue libraries.
## Basic Usage The quickest way to use these icons is to simply copy the source for the icon you need from [iconic.app](https://iconic.app/) and inline it directly into your HTML: ```html ``` ## React First, install `@iconicicons/react` from npm: ```sh npm install @iconicicons/react ``` Now each icon can be imported individually as a React component: ```js import { BatteryIcon } from '@iconicicons/react' function MyComponent() { return (
...
...