diff --git a/dist/index.js b/dist/index.js index 3cfb736..590770e 100644 --- a/dist/index.js +++ b/dist/index.js @@ -2096,9 +2096,9 @@ var Align; Align["None"] = "---"; })(Align = exports.Align || (exports.Align = {})); exports.Icon = { - skip: '✖️', - success: '✔️', - fail: '❌' // ':x:' + skip: '⬜', + success: '🟩', + fail: '🟥' // ':x:' }; function link(title, address) { return `[${title}](${address})`; diff --git a/src/utils/markdown-utils.ts b/src/utils/markdown-utils.ts index 0b02911..803b09c 100644 --- a/src/utils/markdown-utils.ts +++ b/src/utils/markdown-utils.ts @@ -6,9 +6,9 @@ export enum Align { } export const Icon = { - skip: '✖️', // ':heavy_multiplication_x:' - success: '✔️', // ':heavy_check_mark:' - fail: '❌' // ':x:' + skip: '⬜', // ':heavy_multiplication_x:' + success: '🟩', // ':heavy_check_mark:' + fail: '🟥' // ':x:' } export function link(title: string, address: string): string {