import {
MessageComponentTypes,
ButtonStyleTypes,
TextStyleTypes,
} from 'discord.js';
const message = {
content: 'Choose your preferences:',
components: [
{
type: MessageComponentTypes.ACTION_ROW,
components: [
{
type: MessageComponentTypes.STRING_SELECT,
custom_id: 'preference_select',
placeholder: 'Select your preference',
options: [
{ label: 'Option A', value: 'a', emoji: { name: '🅰️' } },
{ label: 'Option B', value: 'b', emoji: { name: '🅱️' } },
{ label: 'Option C', value: 'c', emoji: { name: '©️' } },
],
},
],
},
{
type: MessageComponentTypes.ACTION_ROW,
components: [
{
type: MessageComponentTypes.BUTTON,
style: ButtonStyleTypes.SUCCESS,
label: 'Confirm',
custom_id: 'confirm_button',
},
{
type: MessageComponentTypes.BUTTON,
style: ButtonStyleTypes.DANGER,
label: 'Cancel',
custom_id: 'cancel_button',
},
],
},
],
};