npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@removify/icons

v0.4.4

Published

Removify Custom Icons

Readme

Removify-icons

Welcome to Removify-Icons, our in-house icon library tailored for enhancing the user interfaces of our internal projects. This collection is an embodiment of our commitment to consistency, efficiency, and aesthetic appeal in all our digital products.

Key Features

  • Use icon with unplugin-icons and unplugin-vue-components.

  • Language server auto completion support with Volar.

  • Support with tailwind icon plugin.

Usage Guidelines

To see a working example, check removify-icons-example.

Installation

This library is built on top of iconify and unplugin-icons, also vite is recommended. To install, run the following command:

npm install -D unplugin-icons @removify/icons
# or
yarn add -D unplugin-icons @removify/icons
# or
pnpm add -D unplugin-icons @removify/icons

Usage

To use with vite:

import { customCollections } from '@removify/icons';
import Icons from 'unplugin-icons/vite';
// vite.config.ts
import { defineConfig } from 'vite';

export default defineConfig({
  ...otherConfig,
  plugins: [
    Icons({
      customCollections: {
        ...customCollections,
      },
    }),
  ],
});

Then you can import the icons in your project:

import ArrowLeft from '~icons/rmv-arrows/angle-left';

<ArrowLeft style="color: red; height: 20px; width: 20px;" />;

Auto Import

Reference to unplugin-icons.

Vue example:

import { collectionKeys, customCollections } from '@removify/icons';
import IconsResolver from 'unplugin-icons/resolver';
import Icons from 'unplugin-icons/vite';
import Components from 'unplugin-vue-components/vite';
// vite.config.ts
import { defineConfig } from 'vite';

export default defineConfig({
  plugins: [
    Icons({
      compiler: 'vue3',
      customCollections: {
        ...customCollections,
      },
    }),
    Components({
      resolvers: [
        IconsResolver({
          customCollections: [...collectionKeys],
        }),
      ],
    }),
  ],
});

To use that you can simply use:

<i-rmv-arrows-angle-left style="color: red; width: 3rem; height: 3rem">
</i-rmv-arrows-angle-left>

LSP support

To make your LSP knowns the components, you need to add the following code to your {t,j}sconfig.json:

{
  "compilerOptions": {
    "types": [
      "@removify/icons/components",
      "@removify/icons/imports"
    ]
  }
}
  • You don't need to include unplugin-icons/types/vue, it's already included in @removify/icons/imports, but if you think it's slow down your auto completion, you change replace it with unplugin-icons/types/vue.

In this way, you can have all the hints and auto-completion from your LSP.

[!CAUTION] ⚠️ You should NOT remove the unplugin-vue-components plugin, our plugin is only for the LSP to know the components. But to make the components work, you still need unplugin-vue-components.

Get the list of icons

To get the list of icons, you can import the data from:

import icons from '@removify/icons/json';

Tailwind CSS

We also provide a collection to work with tailwind icons plugin.

You have to make sure you have tailwind setup and the plugin installed:

pnpm add -D @egoist/tailwindcss-icons

To configure the plugin, you can add the following code to tailwind.config.ts:

import { getIconCollections, iconsPlugin } from '@egoist/tailwindcss-icons';
import collections from '@removify/icons/iconify';

export default {
  ...resetConfig,
  plugins: [
    iconsPlugin({
      collections: {
        ...collections,
        // Can add more if needed
        ...getIconCollections(['heroicons']),
      },
    }),
  ],
} satisfies Config;

Future work

[!NOTE] 🚧 A website to show all icons is planned, but not yet implemented, stay tuned! As unplugin-icons does not support dynamic import, would be little bit tricky to implement. The finally silly solution would to generate a file with all icons.

[!NOTE] 🚧 To export all components, rather than reply on unplugin-vue-components to auto import Such that use import { Alert } from 'removify-icons' to import all icons.