We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to add custom emojis, but since there are too many types, I would like to sub-categorize them, like smileys, objects, etc.
Is there a way to do that?
<EmojiPicker key="animated-picker" onEmojiClick={(emojiData) => { onEmojiSelect(emojiData); onClose(); }} customEmojis={[...CUSTOM_SMILEYS, ...CUSTOM_OBJECTS]} autoFocusSearch={false} width={350} height={450} lazyLoadEmojis={true} searchPlaceholder="Search custom emoji..." categories={[ { category: 'custom', name: 'Custom Smileys' }, { category: 'objects', name: 'Custom Objects' } ]} defaultCategories={[]} preload={false} />
I don't see a way of mapping CUSTOM_SMILEYS - which contains id, names and imgUrl - in the categories array. Is it possible?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to add custom emojis, but since there are too many types, I would like to sub-categorize them, like smileys, objects, etc.
Is there a way to do that?
I don't see a way of mapping CUSTOM_SMILEYS - which contains id, names and imgUrl - in the categories array. Is it possible?
The text was updated successfully, but these errors were encountered: