Socket
Socket
Sign inDemoInstall

@emoji-mart/react

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@emoji-mart/react

React wrapper for Emoji Mart; the emoji picker for the web.


Version published
Maintainers
1
Created

What is @emoji-mart/react?

@emoji-mart/react is a comprehensive emoji picker component for React applications. It provides a customizable and easy-to-use interface for selecting emojis, supporting various categories, skin tones, and search functionalities.

What are @emoji-mart/react's main functionalities?

Emoji Picker

The basic emoji picker component allows users to select emojis. The selected emoji is logged to the console in this example.

import { Picker } from '@emoji-mart/react';

function App() {
  return <Picker onEmojiSelect={console.log} />;
}

Customizable Emoji Picker

The emoji picker can be customized with different themes, such as 'dark' mode, to better fit the application's design.

import { Picker } from '@emoji-mart/react';

function App() {
  return <Picker theme="dark" onEmojiSelect={console.log} />;
}

Search Functionality

The emoji picker includes a search bar to allow users to quickly find specific emojis.

import { Picker } from '@emoji-mart/react';

function App() {
  return <Picker onEmojiSelect={console.log} showSearch={true} />;
}

Skin Tone Selector

The emoji picker supports selecting different skin tones for applicable emojis.

import { Picker } from '@emoji-mart/react';

function App() {
  return <Picker onEmojiSelect={console.log} showSkinTones={true} />;
}

Other packages similar to @emoji-mart/react

FAQs

Package last updated on 02 Jan 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc