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-business

v1.0.15

Published

Animated business icons for enterprise applications – finance, office, HR, project management, and corporate workflow elements

Readme

@nice2dev/icons-business

Animated business icons for enterprise applications. Part of the Nice2Dev UI component library.

Features

  • 🎭 60 Unique Icons — Finance, Office, HR, and Project Management categories
  • SMIL Animations — 9 built-in animation types (pulse, grow, shake, spin, bounce, fade, flip, slide, glow)
  • 🎨 3 Variants — Filled, outlined, and duotone styles
  • Tree-shakeable — Import only what you need
  • 📦 Lazy Loading — Icon collections support dynamic imports
  • 🔧 TypeScript — Full type safety with strict typing
  • Accessible — ARIA attributes and keyboard support

Installation

# npm
npm install @nice2dev/icons-business

# pnpm
pnpm add @nice2dev/icons-business

# yarn
yarn add @nice2dev/icons-business

Quick Start

import { DollarIcon, KanbanIcon, TeamIcon } from '@nice2dev/icons-business';

function App() {
  return (
    <div>
      {/* Static icon */}
      <DollarIcon size={24} />

      {/* Animated icon */}
      <KanbanIcon animation="pulse" size={32} />

      {/* Custom styling */}
      <TeamIcon variant="duotone" color="#3b82f6" accentColor="#93c5fd" animation="grow" />
    </div>
  );
}

Icon Categories

Finance (15 icons)

| Icon | Name | Description | | ---- | ---------------- | --------------------------- | | 📈 | ChartLineIcon | Line chart for trends | | 📊 | ChartBarIcon | Bar chart for comparisons | | 🥧 | ChartPieIcon | Pie chart for distributions | | 💵 | DollarIcon | USD currency symbol | | 💶 | EuroIcon | EUR currency symbol | | 📄 | InvoiceIcon | Invoice/bill document | | 👛 | WalletIcon | Digital wallet | | 💳 | CreditCardIcon | Credit/debit card | | 🏦 | BankIcon | Banking institution | | 🐷 | PiggyBankIcon | Savings/piggy bank | | 🪙 | CoinStackIcon | Stacked coins | | 📈 | GrowthIcon | Growth arrow up | | 📉 | LossIcon | Loss arrow down | | 📋 | BudgetIcon | Budget planning | | 🧾 | ReceiptIcon | Payment receipt |

Office (15 icons)

| Icon | Name | Description | | ---- | --------------- | ------------------------ | | 💼 | BriefcaseIcon | Business briefcase | | 📋 | ClipboardIcon | Clipboard with checklist | | 📅 | CalendarIcon | Calendar/scheduling | | 🪑 | DeskIcon | Office desk | | 🖨️ | PrinterIcon | Printer device | | 📠 | ScannerIcon | Document scanner | | 📁 | FolderIcon | File folder | | 📄 | FileIcon | Document file | | 📝 | DocumentIcon | Text document | | 🔖 | StampIcon | Approval stamp | | 📎 | PaperClipIcon | Paper clip | | 📌 | StaplerIcon | Stapler | | 📓 | NotebookIcon | Notebook/journal | | ✍️ | PenIcon | Writing pen | | ☕ | CoffeeIcon | Coffee cup |

HR (15 icons)

| Icon | Name | Description | | ---- | ----------------- | --------------------- | | 👥 | TeamIcon | Team/group of people | | 🤝 | MeetingIcon | Meeting/conference | | ➕ | HireIcon | New hire/recruitment | | 🤝 | HandshakeIcon | Business handshake | | 🪪 | IdCardIcon | Employee ID card | | 🏛️ | OrgChartIcon | Organization chart | | 📊 | PerformanceIcon | Performance metrics | | 🎤 | InterviewIcon | Job interview | | 📜 | ContractIcon | Employment contract | | 🚀 | OnboardingIcon | Employee onboarding | | 💰 | PayrollIcon | Payroll/salary | | 🎁 | BenefitsIcon | Employee benefits | | 🎓 | TrainingIcon | Training/education | | 💬 | FeedbackIcon | Employee feedback | | 🌈 | DiversityIcon | Diversity & inclusion |

Project Management (15 icons)

| Icon | Name | Description | | ---- | ------------------- | ----------------- | | 📋 | KanbanIcon | Kanban board | | 📏 | TimelineIcon | Project timeline | | 🏁 | MilestoneIcon | Project milestone | | 🏃 | SprintIcon | Agile sprint | | 📝 | BacklogIcon | Product backlog | | ✅ | TaskIcon | Task/to-do item | | ⏰ | DeadlineIcon | Deadline/due date | | 📊 | ProgressIcon | Progress bar | | 🗺️ | RoadmapIcon | Product roadmap | | 📉 | GanttIcon | Gantt chart | | 🔄 | AgileIcon | Agile methodology | | 🏈 | ScrumIcon | Scrum framework | | 📆 | PlanningIcon | Sprint planning | | 🔍 | RetrospectiveIcon | Retrospective | | 🚀 | VelocityIcon | Team velocity |

Animation Types

import { DollarIcon } from '@nice2dev/icons-business';

// Available animations
<DollarIcon animation="pulse" />     // Pulsing opacity
<DollarIcon animation="grow" />      // Scale up/down
<DollarIcon animation="shake" />     // Horizontal shake
<DollarIcon animation="spin" />      // 360° rotation
<DollarIcon animation="bounce" />    // Vertical bounce
<DollarIcon animation="fade" />      // Fade in/out
<DollarIcon animation="flip" />      // Y-axis flip
<DollarIcon animation="slide" />     // Horizontal slide
<DollarIcon animation="glow" />      // Drop shadow glow

Animation Duration

<DollarIcon animation="pulse" animationDuration="fast" />    // 0.5s
<DollarIcon animation="pulse" animationDuration="normal" />  // 1s (default)
<DollarIcon animation="pulse" animationDuration="slow" />    // 2s

Icon Variants

import { TeamIcon } from '@nice2dev/icons-business';

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

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

// Duotone (two-color)
<TeamIcon
  variant="duotone"
  color="#3b82f6"
  accentColor="#93c5fd"
/>

Props Reference

| Prop | Type | Default | Description | | ------------------- | ------------------------------------- | ---------------- | ------------------------------------------ | | size | number \| string | 24 | Icon size in pixels or CSS string | | color | string | 'currentColor' | Primary icon color | | accentColor | string | color | Secondary/accent color for duotone | | variant | 'filled' \| 'outlined' \| 'duotone' | 'filled' | Icon style variant | | animation | BusinessIconAnimation | 'none' | Animation type | | animationDuration | 'slow' \| 'normal' \| 'fast' | 'normal' | Animation speed | | animate | boolean | true | Whether animation should play | | strokeWidth | number | 2 | Stroke width for outlined variant | | className | string | undefined | Additional CSS class | | title | string | undefined | Accessible title (also enables aria-label) | | style | CSSProperties | undefined | Inline styles |

Dynamic Imports

For code-splitting, use the icon collections:

import { FinanceIcons } from '@nice2dev/icons-business';

// Dynamically load an icon
const loadDollarIcon = async () => {
  const DollarIcon = await FinanceIcons.Dollar();
  return DollarIcon;
};

Creating Custom Icons

Use the factory function to create custom business icons:

import { createBusinessIcon } from '@nice2dev/icons-business';

const CustomIcon = createBusinessIcon(
  ({ color, accentColor, variant }) => (
    <>
      <path d="M12 2L2 22h20L12 2z" fill={variant === 'outlined' ? 'none' : color} stroke={color} />
      {variant === 'duotone' && <circle cx="12" cy="14" r="3" fill={accentColor || color} />}
    </>
  ),
  { displayName: 'CustomIcon', viewBox: '0 0 24 24' },
);

TypeScript

All icons are fully typed:

import type {
  BusinessIconProps,
  BusinessIconAnimation,
  FinanceIconName,
  OfficeIconName,
  HRIconName,
  ProjectIconName,
} from '@nice2dev/icons-business';

// Type-safe icon name unions
type AllIconNames = FinanceIconName | OfficeIconName | HRIconName | ProjectIconName;

License

MIT © Nice2Dev