You currently use: ```js export const Icon = { skip: '✖️', // ':heavy_multiplication_x:' success: '✔️', // ':heavy_check_mark:' fail: '❌' // ':x:' } ``` This is how it looks on Mac: <img width="393" alt="Screenshot 2022-10-05 at 21 46 28" src="https://user-images.githubusercontent.com/516597/194149386-ea733290-11e6-4e92-a05d-31815eba49c9.png"> I suggest using: ```js export const Icon = { skip: '✖️', // ':heavy_multiplication_x:' success: '✅', // ':white_check_mark:' fail: '❌' // ':x:' } ``` See comparison: - checkmark - suggested: https://emojiguide.com/symbols/check-mark-button/ - original: https://emojiguide.com/symbols/check-mark/