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

@nice2dev/icons-life

v1.0.15

Published

Personal life icons (health, finance, home, productivity) for Nice2Dev UI

Readme

@nice2dev/icons-life

Personal life icons (health, finance, home, productivity) for Nice2Dev UI library.

Installation

pnpm add @nice2dev/icons-life

Features

  • 🎨 60 Life Icons - Comprehensive set of personal life icons
  • 🎭 3 Variants - Filled, outlined, and duotone rendering modes
  • 9 Animations - Built-in SMIL animations (pulse, grow, shake, spin, bounce, fade, flip, slide, glow)
  • 📦 Tree-shakeable - Import only what you need
  • 🔷 TypeScript - Full type safety with comprehensive types

Icon Categories

Health Icons (15)

Medical, fitness and wellness icons:

HeartIcon, HeartbeatIcon, StethoscopeIcon, PillsIcon, SyringeIcon, BandageIcon, HospitalIcon, AmbulanceIcon, DoctorIcon, DnaIcon, BrainIcon, LungsIcon, DumbbellIcon, YogaIcon, RunningIcon

Finance Icons (15)

Money, banking and investment icons:

WalletIcon, CreditCardIcon, BankNoteIcon, CoinsIcon, PiggyBankIcon, BankIcon, ChartIcon, TrendingUpIcon, TrendingDownIcon, CalculatorIcon, ReceiptIcon, InvoiceIcon, SafeIcon, BitcoinIcon, ExchangeIcon

Home Icons (15)

House, building and interior icons:

HouseIcon, BuildingIcon, DoorIcon, KeyIcon, BedIcon, SofaIcon, LampIcon, KitchenIcon, BathtubIcon, GarageIcon, GardenIcon, FenceIcon, AirConditionerIcon, HeaterIcon, WifiIcon

Productivity Icons (15)

Time management and planning icons:

CalendarIcon, ClockIcon, AlarmIcon, TimerIcon, ChecklistIcon, TargetIcon, TrophyIcon, FlagIcon, RocketIcon, LightbulbIcon, BookmarkIcon, ClipboardIcon, KanbanIcon, GanttIcon, PomodoroIcon

Usage

Basic Usage

import { HeartIcon, WalletIcon, HouseIcon, CalendarIcon } from '@nice2dev/icons-life';

// Health icon with pulse animation
<HeartIcon animation="pulse" />

// Finance icon
<WalletIcon size={32} />

// Home icon
<HouseIcon variant="outlined" />

// Productivity icon
<CalendarIcon size={24} color="#333" />

Icon Variants

import { TrophyIcon } from '@nice2dev/icons-life';

// Filled (default)
<TrophyIcon variant="filled" />

// Outlined
<TrophyIcon variant="outlined" />

// Duotone
<TrophyIcon variant="duotone" accentColor="#fcd34d" />

Animations

import { RocketIcon } from '@nice2dev/icons-life';

<RocketIcon animation="pulse" />   // Pulsing effect
<RocketIcon animation="grow" />    // Size growth
<RocketIcon animation="shake" />   // Shake/wiggle
<RocketIcon animation="spin" />    // 360° rotation
<RocketIcon animation="bounce" />  // Bouncing effect
<RocketIcon animation="fade" />    // Fade in/out
<RocketIcon animation="flip" />    // 3D flip
<RocketIcon animation="slide" />   // Slide motion
<RocketIcon animation="glow" />    // Glowing effect

Grouped Imports

import { healthIcons, financeIcons, homeIcons, productivityIcons } from '@nice2dev/icons-life';

// Access all health icons
const { HeartIcon, DumbbellIcon } = healthIcons;

// Use in icon picker
const allFinanceIcons = Object.values(financeIcons);

Custom Colors

import { HeartIcon } from '@nice2dev/icons-life';

// Override default colors
<HeartIcon color="#333333" accentColor="#ef4444" />;

Props

| Prop | Type | Default | Description | | ------------- | ------------------------------------- | ---------------- | ---------------------------------- | | size | number | 24 | Icon size in pixels | | color | string | 'currentColor' | Primary icon color | | accentColor | string | - | Secondary/accent color for duotone | | variant | 'filled' \| 'outlined' \| 'duotone' | 'filled' | Icon style variant | | animation | LifeIconAnimation | - | Animation type | | className | string | - | Additional CSS class | | style | CSSProperties | - | Inline styles |

TypeScript

import type {
  LifeIconProps,
  LifeIconAnimation,
  HealthIconName,
  FinanceIconName,
  HomeIconName,
  ProductivityIconName,
} from '@nice2dev/icons-life';

// Type-safe icon selection
const iconName: HealthIconName = 'Heart';
const animation: LifeIconAnimation = 'pulse';

Use Cases

Health App Dashboard

<HeartbeatIcon animation="pulse" color="#ef4444" />
<DumbbellIcon size={32} />
<RunningIcon variant="outlined" />

Finance Tracker

<TrendingUpIcon color="#22c55e" />
<TrendingDownIcon color="#ef4444" />
<PiggyBankIcon animation="bounce" />

Smart Home Control

<HouseIcon size={40} />
<LampIcon variant="duotone" accentColor="#fcd34d" />
<WifiIcon animation="pulse" />

Productivity App

<CalendarIcon />
<ChecklistIcon color="#22c55e" />
<PomodoroIcon animation="pulse" accentColor="#ef4444" />

License

MIT © Nice2Dev