import React from 'react'; import { DropdownProps } from 'neetoui'; type Emoji = { native: string; unified: string; }; /** * * A component to pick emojis. * *  * * @example * * import EmojiPicker from "@bigbinary/neeto-molecules/EmojiPicker"; * * const EmojiPickerContainer = () => { * const [emoji, setEmoji] = useState(); * return ( *