Is there a custom template type for Emojis

Alot like this like dislike template, is there one for different emojis like: :grinning: :sleepy: :face_with_diagonal_mouth: etc…

var message = {
“type”: “template”,
“payload”: {
“template_type”: “like_dislike”
}
};
print(JSON.stringify(message))

Hello @rwhite ,

We have a way to achieve this requirement in WebSDK. You can modify the template likeDislikeTemplate provided in SDK Location - /sdk/UI/custom/customTemplate.js . You can update the template there, or create a new custom template based on the provided one.

Great! Thanks for letting me know, I’ll look into it!