> ## Documentation Index
> Fetch the complete documentation index at: https://docs.assistantscenter.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Emoji Picker

```
SoftUI.formTypes.emojiPicker(disabled),
```

<ParamField path="disabled" type="boolean" required>
  Indicate if the picker should be shown as disabled
</ParamField>

## Data required for getActualSet function

Object, your emoji object.

## Data returned

Object | or null.

## Example Usage

```javascript theme={null}
{
    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;
    },
}
```

## Image

<Frame>
  <img src="https://mintlify.s3.us-west-1.amazonaws.com/assistantscenter/images/formtypes/softui-emoji.png" />
</Frame>
