I would like to add the emoji type that contains a textual alternative so the printing functions could decide how to print it based on the terminal support. I imagine having the following type: ```haskell data Emoji = Emoji { emojiMain :: Text , emojiAlt :: Text } ``` with the intended usage like this: ```haskell success, failure, process :: Emoji success = Iris.Emoji "โ " "OK " failure = Iris.Emoji "โ " "NO " process = Iris.Emoji "๐ฅ " ".. " ``` I propose creating a separate `Iris.Emoji` module where the `Emoji` definition with the documentation can be put. So far, no function for outputting an emoji is required.
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be still under discussion. The issue was opened by chshersh and has received 0 comments.