File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ export const mainSymbols = {
216
216
tick : '✔' ,
217
217
info : 'ℹ' ,
218
218
warning : '⚠' ,
219
- cross : '✖ ' ,
219
+ cross : '✘ ' ,
220
220
squareSmall : '◻' ,
221
221
squareSmallFilled : '◼' ,
222
222
circle : '◯' ,
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ String where the Unicode symbols will be replaced with fallback symbols dependin
72
72
| tick | ` ✔ ` | ` √ ` |
73
73
| info | ` ℹ ` | ` i ` |
74
74
| warning | ` ⚠ ` | ` ‼ ` |
75
- | cross | ` ✖ ` | ` × ` |
75
+ | cross | ` ✘ ` | ` × ` |
76
76
| square | ` █ ` | |
77
77
| squareSmall | ` ◻ ` | ` □ ` |
78
78
| squareSmallFilled | ` ◼ ` | ` ■ ` |
Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ test('replaceSymbols()', t => {
14
14
t . is ( replaceSymbols ( 'foo' ) , 'foo' ) ;
15
15
t . is ( replaceSymbols ( '?bar?' ) , '?bar?' ) ;
16
16
t . is ( replaceSymbols ( '✔ ✔ ✔' ) , result ( '✔ ✔ ✔' , '√ √ √' ) ) ;
17
- t . is ( replaceSymbols ( '✔ ✖ \n★ ◼' ) , result ( '✔ ✖ \n★ ◼' , '√ ×\n✶ ■' ) ) ;
18
- t . is ( replaceSymbols ( '✔ ✖ ★ ◼' ) , result ( '✔ ✖ ★ ◼' , '√ × ✶ ■' ) ) ;
17
+ t . is ( replaceSymbols ( '✔ ✘ \n★ ◼' ) , result ( '✔ ✘ \n★ ◼' , '√ ×\n✶ ■' ) ) ;
18
+ t . is ( replaceSymbols ( '✔ ✘ ★ ◼' ) , result ( '✔ ✘ ★ ◼' , '√ × ✶ ■' ) ) ;
19
19
} ) ;
20
20
21
21
test ( 'mainSymbols and windowsSymbols' , t => {
You can’t perform that action at this time.
0 commit comments