Find this simpler one for ALL emojis
const removeEmojisFromText = (text: string) => text.replace(/\p{Extended_Pictographic}/gu, "")
source: https://stackoverflow.com/a/64007175