UNPKG

emoji-picker-react

Version:

Emoji Picker component for React Applications on the web

16 lines (15 loc) 596 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; style?: React.CSSProperties; }>; export declare function ClickableEmojiButton({ emojiNames, unified, hidden, hiddenOnSearch, showVariations, hasVariations, children, className, noBackground, style }: ClickableEmojiButtonProps): JSX.Element; export {};