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

v1.0.15

Published

React icon library for social media, platforms, and communication icons

Readme

@nice2dev/icons-social

Social media, messaging, reactions, and profile icons for Nice2Dev UI library.

Installation

pnpm add @nice2dev/icons-social

Features

  • 🎨 60 Social Icons - Comprehensive set of social media and communication icons
  • 🎭 3 Variants - Filled, outlined, and duotone rendering modes
  • 9 Animations - Built-in SMIL animations (pulse, grow, shake, spin, bounce, fade, flip, slide, glow)
  • 🏷️ Brand Colors - Pre-configured brand colors for platform icons
  • 📦 Tree-shakeable - Import only what you need
  • 🔷 TypeScript - Full type safety with comprehensive types

Icon Categories

Platform Icons (15)

Social media platform icons with brand colors:

| Icon | Brand Color | | --------------- | ----------- | | FacebookIcon | #1877f2 | | TwitterIcon | #1da1f2 | | InstagramIcon | #e4405f | | LinkedInIcon | #0077b5 | | YouTubeIcon | #ff0000 | | TikTokIcon | #000000 | | SnapchatIcon | #fffc00 | | PinterestIcon | #bd081c | | RedditIcon | #ff4500 | | DiscordIcon | #5865f2 | | SlackIcon | Multi-color | | TwitchIcon | #9146ff | | GitHubIcon | #181717 | | DribbbleIcon | #ea4c89 | | BehanceIcon | #1769ff |

Messaging Icons (15)

Communication and messaging icons:

ChatIcon, ChatBubbleIcon, ChatDotsIcon, MessageIcon, MessageSquareIcon, SendIcon, InboxIcon, MailIcon, MailOpenIcon, ReplyIcon, ReplyAllIcon, ForwardIcon, AttachmentIcon, EmojiIcon, StickerIcon

Reaction Icons (15)

Social media engagement and reaction icons:

LikeIcon, DislikeIcon, LoveIcon, HahaIcon, WowIcon, SadIcon, AngryIcon, ClapIcon, FireIcon, ThumbsUpIcon, ThumbsDownIcon, CelebrateIcon, SupportIcon, InsightfulIcon, CuriousIcon

Profile Icons (15)

User profile and social relationship icons:

UserIcon, UserCircleIcon, UserPlusIcon, UserMinusIcon, UserCheckIcon, UsersIcon, UsersGroupIcon, FriendIcon, FollowIcon, UnfollowIcon, BlockIcon, VerifiedIcon, BadgeIcon, AvatarIcon, ProfileIcon

Usage

Basic Usage

import { FacebookIcon, LoveIcon, ChatIcon, UserIcon } from '@nice2dev/icons-social';

// Platform icon with brand color
<FacebookIcon size={32} />

// Reaction with animation
<LoveIcon animation="pulse" />

// Messaging icon
<ChatIcon variant="outlined" />

// Profile icon
<UserIcon size={24} color="#333" />

Icon Variants

import { TwitterIcon } from '@nice2dev/icons-social';

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

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

// Duotone
<TwitterIcon variant="duotone" accentColor="#444" />

Animations

import { LikeIcon } from '@nice2dev/icons-social';

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

Grouped Imports

import { platformIcons, messagingIcons, reactionIcons, profileIcons } from '@nice2dev/icons-social';

// Access all platform icons
const { FacebookIcon, TwitterIcon } = platformIcons;

// Use in icon picker
const allReactions = Object.values(reactionIcons);

Custom Colors

import { SendIcon } from '@nice2dev/icons-social';

// Override default colors
<SendIcon color="#333333" accentColor="#0066ff" />;

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 | SocialIconAnimation | - | Animation type | | className | string | - | Additional CSS class | | style | CSSProperties | - | Inline styles |

TypeScript

import type {
  SocialIconProps,
  SocialIconAnimation,
  PlatformIconName,
  MessagingIconName,
  ReactionIconName,
  ProfileIconName,
} from '@nice2dev/icons-social';

// Type-safe icon selection
const iconName: PlatformIconName = 'Facebook';
const animation: SocialIconAnimation = 'pulse';

License

MIT © Nice2Dev