1.1.1 • Published 6 months ago

nomercyicons v1.1.1

Weekly downloads
-
License
MIT
Repository
-
Last release
6 months ago

Basic Usage

The quickest way to use these icons is to simply copy the source for the icon you need from heroicons.com and inline it directly into your HTML:

<svg
  class="h-6 w-6 text-gray-500"
  fill="none"
  viewBox="0 0 24 24"
  stroke="currentColor"
  stroke-width="2"
>
  <path
    stroke-linecap="round"
    stroke-linejoin="round"
    d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"
  />
</svg>

Both icon styles are preconfigured to be stylable by setting the color CSS property, either manually or using utility classes like text-gray-500 in a framework like Tailwind CSS.

React

First, install @nomercyicons/react from npm:

npm install @nomercyicons/react

Now each icon can be imported individually as a React component:

import { BeakerIcon } from '@nomercyicons/react/24/filled'

function MyComponent() {
  return (
    <div>
      <BeakerIcon className="h-6 w-6 text-blue-500" />
      <p>...</p>
    </div>
  )
}

The 24x24 outlined icons can be imported from @nomercyicons/react/24/outlined, the 24x24 filled icons can be imported from @nomercyicons/react/24/filled.

Icons use an upper camel case naming convention and are always suffixed with the word Icon.

Browse the full list of icon names on UNPKG

Vue

Note that this library currently only supports Vue 3.

First, install @nomercyicons/vue from npm:

npm install @nomercyicons/vue

Now each icon can be imported individually as a Vue component:

<template>
  <div>
    <BeakerIcon class="h-6 w-6 text-blue-500" />
    <p>...</p>
  </div>
</template>

<script setup>
import { BeakerIcon } from '@nomercyicons/vue/24/filled'
</script>

The 24x24 outlined icons can be imported from @nomercyicons/vue/24/outlined, the 24x24 filled icons can be imported from @nomercyicons/vue/24/filled.

Icons use an upper camel case naming convention and are always suffixed with the word Icon.

Browse the full list of icon names on UNPKG

Contributing

While we absolutely appreciate anyone's willingness to try and improve the project, we're currently only interested in contributions that fix bugs, for example things like incorrect TypeScript types, or fixing an icon that's been exported with a fill instead of a stroke, etc.

We're not accepting contributions for new icons or adding support for other frameworks like Svelte or filledJS. Instead we encourage you to release your own icons in your own library, and create your own packages for any other frameworks you'd like to see supported.

License

This library is MIT licensed.

1.1.1

6 months ago

1.1.0

6 months ago

1.0.1

8 months ago

1.0.0

8 months ago