UNPKG

emoji-picker-react

Version:

Emoji Picker component for React Applications on the web

15 lines (14 loc) 555 B
import * as React from 'react'; declare type ClickableEmojiButtonProps = Readonly<{ hidden?: boolean; showVariations?: boolean; hiddenOnSearch?: boolean; emojiNames: string[]; children: React.ReactNode; hasVariations: boolean; unified?: string; noBackground?: boolean; className?: string; }>; export declare function ClickableEmojiButton({ emojiNames, unified, hidden, hiddenOnSearch, showVariations, hasVariations, children, className, noBackground }: ClickableEmojiButtonProps): JSX.Element; export {};