fabri-pix
Version:
A React image editor using Fabric.js
13 lines (12 loc) • 412 B
TypeScript
import { default as React } from 'react';
import { SubMenu } from '../../utils/utils';
interface IProps {
emojiIconRef: React.RefObject<any>;
activeAnnotation: SubMenu | '';
handleEmojiClick: (emoji: any) => void;
handleButtonClick: () => void;
handleShowDropdown: () => void;
handleHideDropdown: () => void;
}
declare const EmojiDropdown: React.FC<IProps>;
export default EmojiDropdown;