boolean
required
Indicate if the picker should be shown as disabled
Data required for getActualSet function
Object, your emoji object.Data returned
Object | or null.Example Usage
Image

Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
SoftUI.formTypes.emojiPicker(disabled),
{
optionId: "join_emoji",
optionName: "Emoji",
optionDescription: "Which Emoji should I use?",
optionType: SoftUI.formTypes.emojiPicker(false),
getActualSet: ({ guild }) => {
return emoji[guild.id];
},
setNew: ({ guild, newData }) => {
emojiPicker[guild.id] = newData;
return;
},
}

Was this page helpful?