module.exports = { gifSearchAR() { // Setup the buttons const previousButton = new MessageButton() .setCustomId('prevGif') .setLabel('⬅️') .setStyle('SECONDARY'); const confirmButton = new MessageButton() .setCustomId('confirmGif') .setLabel('✅') .setStyle('PRIMARY'); const nextButton = new MessageButton() .setCustomId('nextGif') .setLabel('➡️') .setStyle('SECONDARY'); const cancelButton = new MessageButton() .setCustomId('cancelGif') .setLabel('❌') .setStyle('DANGER'); // Put the buttons into an ActionRow return new MessageActionRow() .addComponents(previousButton, confirmButton, nextButton, cancelButton); } }