emoji-picker-react
Version:
Emoji Picker component for React Applications on the web
15 lines (14 loc) • 626 B
TypeScript
import * as React from 'react';
import { DataEmoji } from '../../dataUtils/DataTypes';
import { BaseEmojiProps } from './BaseEmojiProps';
declare type ClickableEmojiProps = Readonly<BaseEmojiProps & {
hidden?: boolean;
showVariations?: boolean;
hiddenOnSearch?: boolean;
emoji: DataEmoji;
className?: string;
noBackground?: boolean;
style?: React.CSSProperties;
}>;
export declare function ClickableEmoji({ emoji, unified, hidden, hiddenOnSearch, emojiStyle, showVariations, size, lazyLoad, getEmojiUrl, className, noBackground, style }: ClickableEmojiProps): JSX.Element;
export {};