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

emoji-picker-react

v4.17.3

Published

Emoji Picker component for React Applications on the web

Readme

🥒 Emoji Picker React (v4)

The most popular, fully customizable emoji picker for React apps.

🔴 Live Demo | 🐛 Report a Bug

image

reactions


✨ Features

  • 🎨 Fully Customizable: Control styles via CSS variables.
  • 🌗 Dark Mode: Native support for light, dark, and auto themes.
  • 🖱️ Interactivity: Custom click handlers and reactions picker mode.
  • 🌍 Multi-Language: Built-in support for dozens of languages.
  • 🦄 Custom Emojis: seamless support for custom image-based emojis.
  • 📦 Zero-Config: Works out of the box with sensible defaults.
  • 📱 Responsive: Mobile-friendly design.
  • 🍎 Multiple Styles: Support for Apple, Google, Facebook, Twitter, and Native system emojis.

🚀 Getting Started

Installation

npm install emoji-picker-react

Basic Usage

Render the component in your app. It works immediately with no required props.

import EmojiPicker from 'emoji-picker-react';

function App() {
  return (
    <div>
      <EmojiPicker onEmojiClick={(emojiObject) => console.log(emojiObject)} />
    </div>
  );
}

📚 Props Reference

The following is a complete list of all props accepted by EmojiPicker.

🎛️ General Configuration

| Prop | Type | Default | Description | | ----------------- | ------------ | ------------------ | -------------------------------------------------------------------------------------------- | | open | boolean | true | Controls the visibility of the picker. | | theme | Theme | Theme.LIGHT | The visual theme. Options: 'light', 'dark', 'auto'. | | emojiStyle | EmojiStyle | EmojiStyle.APPLE | The emoji set to use. Options: 'apple', 'google', 'facebook', 'twitter', 'native'. | | emojiVersion | string | null | Limit emojis to a specific unicode version (e.g., "14.0"). | | lazyLoadEmojis | boolean | false | If true, emoji images are loaded only when they scroll into view. | | autoFocusSearch | boolean | true | Focuses the search input automatically when the picker mounts. | | emojiData | object | undefined | Pass imported locale data here for internationalization. |

📐 Dimensions & Styling

| Prop | Type | Default | Description | | ----------- | --------------- | -------- | ------------------------------------------ | | width | string | number | 350 | | height | string | number | 450 | | style | CSSProperties | {} | Inline styles applied to the root element. | | className | string | "" | CSS class applied to the root element. |

🖱️ Events & Interaction

| Prop | Type | Description | | ------------------ | -------------------------------------------------------- | -------------------------------------------------------------------- | | onEmojiClick | (emojiData: EmojiClickData, event: MouseEvent) => void | Callback triggered when a user clicks an emoji. | | onReactionClick | (emojiData: EmojiClickData, event: MouseEvent) => void | Callback triggered when a user clicks a reaction (in reaction mode). | | onSkinToneChange | (skinTone: SkinTones) => void | Callback triggered when the user selects a new skin tone. |

🔎 Search & Categories

| Prop | Type | Default | Description | | ------------------------ | ------------------------ | ------------------------- | -------------------------------------------------------------------- | | searchDisabled | boolean | false | If true, the search bar is completely removed. | | searchPlaceholder | string | "Search" | Placeholder text for the search input. | | searchClearButtonLabel | string | "Clear" | Aria label for the search clear button. | | categories | CategoryConfig[] | (All) | Array of category objects to customize order or visibility. | | suggestedEmojisMode | SuggestionMode | SuggestionMode.FREQUENT | Logic for "Suggested" category. Options: 'recent', 'frequent'. | | defaultSkinTone | SkinTones | SkinTones.NEUTRAL | The initial skin tone. | | skinTonesDisabled | boolean | false | If true, users cannot change the skin tone. | | skinTonePickerLocation | SkinTonePickerLocation | SEARCH | Location of the skin tone trigger. Options: 'SEARCH', 'PREVIEW'. |

🦄 Customization & Advanced

| Prop | Type | Default | Description | | --------------- | ------------------------------------------------ | ----------------------- | --------------------------------------------------------------- | | customEmojis | CustomEmoji[] | [] | Array of custom image-based emojis to inject. | | hiddenEmojis | string[] | [] | Array of unified IDs (e.g., '1f921') to hide from the picker. | | previewConfig | PreviewConfig | { showPreview: true } | configuration for the bottom preview bar. | | getEmojiUrl | (unified: string, style: EmojiStyle) => string | - | Function to override the default CDN URL for emoji images. |

❤️ Reactions Picker Mode

| Prop | Type | Default | Description | | ---------------------- | ---------- | --------------- | ------------------------------------------------------------------------ | | reactionsDefaultOpen | boolean | false | If true, mounts in "Reactions" mode (single row) instead of full picker. | | reactions | string[] | (Default Set) | Array of unified IDs to display in the reactions bar. | | allowExpandReactions | boolean | true | If true, shows a + button to switch from reactions to full picker. |


🛠️ Detailed Configuration

CSS Variables

Override default variables by targeting .EmojiPickerReact or aside.EmojiPickerReact.

CSS Variables

You can customize the picker by overriding CSS variables.

🎨 View Full List of CSS Variables

Custom Emojis Data Structure

When passing customEmojis, use this format:

{
  id: string;      // Unique ID
  names: string[]; // Search keywords
  imgUrl: string;  // Image source
}

Preview Config

Control the footer preview area using previewConfig:

{
  defaultEmoji: string; // Default: "1f60a"
  defaultCaption: string; // Default: "What's your mood?"
  showPreview: boolean; // Default: true
}

🌍 Internationalization (i18n)

Import the dictionary you need and pass it to the emojiData prop.

import EmojiPicker from 'emoji-picker-react';
import es from 'emoji-picker-react/dist/data/emojis-es'; // Spanish

function App() {
  return <EmojiPicker emojiData={es} />;
}
  • emojis-bn (Bengali 🇧🇩)
  • emojis-da (Danish 🇩🇰)
  • emojis-de (German 🇩🇪)
  • emojis-en-gb (English, GB 🇬🇧)
  • emojis-en (English, US 🇺🇸)
  • emojis-es-mx (Spanish, Mexico 🇲🇽)
  • emojis-es (Spanish 🇪🇸)
  • emojis-et (Estonian 🇪🇪)
  • emojis-fi (Finnish 🇫🇮)
  • emojis-fr (French 🇫🇷)
  • emojis-hi (Hindi 🇮🇳)
  • emojis-hu (Hungarian 🇭🇺)
  • emojis-it (Italian 🇮🇹)
  • emojis-ja (Japanese 🇯🇵)
  • emojis-ko (Korean 🇰🇷)
  • emojis-lt (Lithuanian 🇱🇹)
  • emojis-ms (Malay 🇲🇾)
  • emojis-nb (Norwegian Bokmål 🇳🇴)
  • emojis-nl (Dutch 🇳🇱)
  • emojis-pl (Polish 🇵🇱)
  • emojis-pt (Portuguese 🇵🇹)
  • emojis-ru (Russian 🇷🇺)
  • emojis-sv (Swedish 🇸🇪)
  • emojis-th (Thai 🇹🇭)
  • emojis-uk (Ukrainian 🇺🇦)
  • emojis-zh-hant (Traditional Chinese 🇹🇼)
  • emojis-zh (Simplified Chinese 🇨🇳)

⚠️ Troubleshooting

Server-Side Rendering (Next.js / Remix)

This package relies on the window object and must be rendered on the client.

Next.js Example:

import dynamic from 'next/dynamic';

const Picker = dynamic(() => import('emoji-picker-react'), { ssr: false });

Vite

If you encounter global is not defined, add this to your HTML:

<script>
  window.global = window;
</script>

🤝 Contributing

We welcome contributions! Please check out the Contributing Guide for how to run the project locally.

Shout Outs: Design inspiration by Pavel Bolo.

If you enjoy using emoji-picker-react, check out Vest validation framework.