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

@reliability-design/icons

v1.0.2

Published

SVG icon library for Reliability Design System built with Lit

Readme

@reliability/icons

A comprehensive SVG icon library for the Reliability Design System, built with Lit web components.

Features

  • 201 SVG Icons - Complete icon set optimized for web
  • 🎨 Lit Web Components - Built with modern web standards
  • 📦 Tree-Shakable - Import only the icons you need
  • 🎯 TypeScript Support - Full type definitions included
  • 📏 Responsive Sizing - 5 size variants (xs, sm, md, lg, xl)
  • 🎨 Customizable Colors - Uses currentColor by default
  • 🚀 Framework Agnostic - Works with React, Vue, Angular, or plain HTML

Installation

npm install @reliability/icons

Usage

As Web Component

The simplest way to use icons is with the <rel-icon> web component:

<!-- Import the package -->
<script type="module">
  import '@reliability/icons';
</script>

<!-- Use the icon -->
<rel-icon name="add"></rel-icon>
<rel-icon name="close" size="lg"></rel-icon>
<rel-icon name="check" color="#00ff00"></rel-icon>

Available Sizes

  • xs - 12px
  • sm - 16px
  • md - 20px (default)
  • lg - 24px
  • xl - 32px

Using Icon Dictionary

You can also import the icon dictionary directly:

import { RelIcons } from '@reliability/icons';
import { html, LitElement } from 'lit';

class MyComponent extends LitElement {
  render() {
    return html`
      <div class="icon-wrapper">
        ${RelIcons['add']}
      </div>
    `;
  }
}

Tree-Shakable Individual Imports

For optimal bundle size, import only the icons you need:

import { iconAdd, iconClose, iconCheck } from '@reliability/icons/svgs';
import { html } from 'lit';

const template = html`
  <div>${iconAdd}</div>
  <div>${iconClose}</div>
  <div>${iconCheck}</div>
`;

Available Icons

The library includes 201 icons across multiple categories:

Actions

cancel_circle, check_circle, block, apps, more_vertical, hamburger, plus, minus, refresh, download, upload, search, assignment, document, copy, pencil, delete, settings, person_remove, person_add, print, sort, filter, mic, thumbs_up, send, share, check, close

Arrows & Navigation

arrow_expansion, direction_left, direction_right, arrow_down, arrow_up, arrow_left, arrow_right, arrow_from_bottom, arrow_from_top, arrow_from_left, arrow_from_right, arrows_horizontal, arrows_vertical, caret_down, caret_up, caret_right, caret_left, chevron_down, chevron_up, chevron_left, chevron_right, go_back

Business & Operations

processing, service_request, edit_square, add_service, recent_search, saved_search, pipeline, repeat, services, open_in_new, import, replace, sort_arrows, sort_down_arrow, sort_up_arrow, swap_vertical

Date & Time

today, calendar_month, calendar_today, calendar_range, event_available, alarm_clock, history, update, watch, timer, time_filed, hourglass, gavel_with_clock

Communication

photo_camera, front_hand, lock, gavel, signature, attach_file, link, pending, secure_lock, email, forward_to_inbox, phone, sales_rep, chat

Files & Documents

us_dollar, file_claim, add_note, documents, id, article, check_file, drag, horizontal_drag, vertical_drag

Status & Indicators

discount, verified, password, local_library, whats_hot, trophy, square_round_edges, status_loading, status, rows_narrow, checkbox_unchecked, checkbox_checked, checkbox_indeterminate, radio_button_unchecked, radio_button_checked, toggle_off, toggle_on

Alerts & Feedback

alert_circle, error, warning, help, info

Analytics & Data

villa, pie_chart, contrast, techometer, analytics, dashboard, web, trending_up, trending_down, advance_analytics, billing_invoices, financial, general

Transportation & Logistics

air_front, air_side, air_top, air, dryage, intermodal, lm_side, lm_top, ltl_front, ltl_side, ltl_top, rail_front, rail_side, sea_front, sea_side, sea_top, ship, tracking, truck_check, truck_filled, truck_outline, truck, shuttle, truckload_front, truckload_side, truckload_top

Notifications

notification_on, notification_off, manage_notification

Content & Media

image, heart_outlined, heart_filled, numbered_list, bullet_list, checklist, manage_search, edit_note

Logistics Operations

inbound, outbound, operational, self_service, service_levels, visibility, add_item, empty_container, filled_container, shipment, load_search

People & Users

remove_person, add_person, people, person

Social Media

facebook, instagram, twitter, linkedin, youtube, weblink

Miscellaneous

star_outlined, star_filled, visibility_on, visibility_off

Component API

<rel-icon>

Properties

| Property | Type | Default | Description | |----------|------|---------|-------------| | name | string | "" | Name of the icon to display | | size | "xs" \| "sm" \| "md" \| "lg" \| "xl" | "md" | Size of the icon | | color | string | currentColor | Custom color for the icon |

CSS Custom Properties

You can also customize the icon size using CSS custom properties:

rel-icon {
  --icon-size: 28px;
}

Framework Integration

React

import '@reliability/icons';

function MyComponent() {
  return (
    <div>
      <rel-icon name="add" size="lg"></rel-icon>
    </div>
  );
}

Vue

<template>
  <div>
    <rel-icon name="add" size="lg"></rel-icon>
  </div>
</template>

<script>
import '@reliability/icons';

export default {
  name: 'MyComponent'
}
</script>

Angular

import '@reliability/icons';
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';

@Component({
  selector: 'app-my-component',
  template: '<rel-icon name="add" size="lg"></rel-icon>',
  schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
export class MyComponent {}

Development

Build

npm run build

Clean Build

npm run rebuild

Publishing

cd packages/icons
npm publish --access public

License

MIT

Contributing

Contributions are welcome! Please read our contributing guidelines before submitting PRs.