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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@chill-wind/icons

v2.0.1

Published

Dynamic Angular icon library with native Tailwind CSS support, tree-shakeable icon data, and built from Iconoir SVGs.

Readme

Chill-Wind Icons

Dynamic Angular icon library with native Tailwind CSS support, tree-shakeable icon data, and built from Iconoir SVGs.

Features

  • 🎯 Native Tailwind CSS Support - Use standard Tailwind utilities for sizing, colors, and animations
  • 🌲 Tree-shakeable - Only import the icons you use
  • 🚀 Performance optimized - Built-in SVG sanitization caching
  • 📱 Fully responsive - Works with all Tailwind breakpoints
  • 🎨 Dark mode ready - Seamless integration with Tailwind's dark mode
  • Accessible - Proper ARIA attributes and keyboard navigation
  • 🔒 Type-safe - Full TypeScript support with literal types for all icon names

Installation

npm install @chill-wind/icons

Quick Start

// Single icon import
import { CwIcon, checkRegularIconData } from '@chill-wind/icons';

// Multiple icons import
import { CwIcon, checkRegularIconData, userRegularIconData } from '@chill-wind/icons';

@Component({
  template: `
    <!-- Basic usage with Tailwind classes -->
    <cw-icon [icon]="checkIcon" class="w-6 h-6 text-green-500"></cw-icon>

    <!-- Multiple icons usage -->
    <cw-icon [icon]="checkIcon" class="w-5 h-5 text-green-600"></cw-icon>
    <cw-icon [icon]="userIcon" class="w-5 h-5 text-blue-600"></cw-icon>

    <!-- Responsive sizing -->
    <cw-icon [icon]="checkIcon" class="w-4 h-4 md:w-6 md:h-6 lg:w-8 lg:h-8"></cw-icon>

    <!-- Dark mode support -->
    <cw-icon [icon]="checkIcon" class="text-gray-700 dark:text-gray-300"></cw-icon>

    <!-- Hover effects -->
    <cw-icon [icon]="checkIcon" class="hover:text-blue-600 hover:scale-110 transition-all"></cw-icon>

    <!-- Animations -->
    <cw-icon [icon]="checkIcon" class="animate-pulse"></cw-icon>
  `
})
export class MyComponent {
  checkIcon = checkRegularIconData;
  userIcon = userRegularIconData;
}

Tailwind CSS Usage

The component is designed to work seamlessly with Tailwind CSS utilities:

Sizing

<!-- Tailwind size utilities -->
<cw-icon [icon]="icon" class="w-4 h-4"></cw-icon>     <!-- 16px -->
<cw-icon [icon]="icon" class="w-6 h-6"></cw-icon>     <!-- 24px -->
<cw-icon [icon]="icon" class="size-8"></cw-icon>      <!-- 32px (Tailwind 3.4+) -->

<!-- Arbitrary values -->
<cw-icon [icon]="icon" class="w-[18px] h-[18px]"></cw-icon>

Colors

<!-- Tailwind color utilities -->
<cw-icon [icon]="icon" class="text-blue-500"></cw-icon>
<cw-icon [icon]="icon" class="text-slate-700"></cw-icon>

<!-- Arbitrary colors using Tailwind CSS syntax -->
<!-- The component automatically detects and applies text-[#colorValue] as inline styles -->
<cw-icon [icon]="icon" class="text-[#1da1f2]"></cw-icon>
<cw-icon [icon]="icon" class="text-[#ff6b6b]"></cw-icon>
<cw-icon [icon]="icon" class="text-[#f505ed]"></cw-icon>

Animations

<!-- Built-in Tailwind animations -->
<cw-icon [icon]="icon" class="animate-spin"></cw-icon>
<cw-icon [icon]="icon" class="animate-pulse"></cw-icon>
<cw-icon [icon]="icon" class="animate-bounce"></cw-icon>

Responsive Design

<!-- Different sizes at different breakpoints -->
<cw-icon [icon]="icon" class="w-4 h-4 sm:w-5 sm:h-5 md:w-6 md:h-6 lg:w-8 lg:h-8"></cw-icon>

<!-- Different colors for light/dark mode -->
<cw-icon [icon]="icon" class="text-gray-700 dark:text-gray-300"></cw-icon>

Hover & Focus States

<!-- Hover effects -->
<cw-icon [icon]="icon" class="hover:text-blue-600 transition-colors"></cw-icon>
<cw-icon [icon]="icon" class="hover:scale-110 transition-transform"></cw-icon>

<!-- Focus styles -->
<cw-icon [icon]="icon" class="focus:outline-none focus:ring-2 focus:ring-blue-500"></cw-icon>

Component API

Inputs

| Input | Type | Default | Description | |-------|------|---------|-------------| | icon | IconData | undefined | The icon data object to render | | size | number | string | 24 | Size in pixels (overridden by Tailwind classes) | | alt | string | null | null | Accessibility label | | strokeWeight | string | icon default | SVG stroke width | | svgClass | string | '' | Additional classes for the SVG element | | showFallback | boolean | true | Show fallback icon when data is missing |

TypeScript Support

The library includes full TypeScript support with literal types for all icon names:

import { IconName, RegularIconName, SolidIconName } from '@chill-wind/icons';

// Full type safety and autocomplete
const iconName: RegularIconName = 'check'; // ✅ Valid
const invalidName: RegularIconName = 'invalid'; // ❌ TypeScript error

Available Icons

Total icons: 1671

  • Regular: 1383 icons
  • Solid: 288 icons

License

MIT