emoji-picker-react
Version:
Emoji Picker component for React Applications on the web
12 lines (11 loc) • 386 B
TypeScript
import * as React from 'react';
import { EmojiStyle } from '../../types/exposedTypes';
export declare function EmojiImg({ emojiName, style, lazyLoad, imgUrl, onError, className }: {
emojiName: string;
emojiStyle: EmojiStyle;
style: React.CSSProperties;
lazyLoad?: boolean;
imgUrl: string;
onError: () => void;
className?: string;
}): JSX.Element;