react-hero-icon

``` npm install react-hero-icon ```

Usage no npm install needed!

<script type="module">
  import reactHeroIcon from 'https://cdn.skypack.dev/react-hero-icon';
</script>

README

Install

npm install react-hero-icon

Usage

import Icon from "react-hero-icon";

<Icon icon="paper-clip" />;

Specify the variant with a type attribute (outline-md is the default set)

import Icon from "react-hero-icon";

<Icon icon="paper-clip" type="solid" />
<Icon icon="paper-clip" type="outline" />

Or import the icon directly from the set

import { PaperClip } from "react-hero-icon/solid";

<PaperClip />;

Enjoy!