Skip to content

Commit 26343b9

Browse files
authoredMar 25, 2021
Add figures for some common mathematical symbols (#62)
1 parent 9876125 commit 26343b9

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed
 

‎index.d.ts

+6
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@ declare const figureSet: {
4747
readonly arrowRight: string;
4848
readonly arrowLeftRight: string;
4949
readonly arrowUpDown: string;
50+
readonly almostEqual: string;
51+
readonly notEqual: string;
52+
readonly lessOrEqual: string;
53+
readonly greaterOrEqual: string;
54+
readonly identical: string;
55+
readonly infinity: string;
5056
readonly subscriptZero: string;
5157
readonly subscriptOne: string;
5258
readonly subscriptTwo: string;

‎index.js

+6
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ const common = {
2525
arrowRight: '→',
2626
arrowLeftRight: '↔',
2727
arrowUpDown: '↕',
28+
almostEqual: '≈',
29+
notEqual: '≠',
30+
lessOrEqual: '≤',
31+
greaterOrEqual: '≥',
32+
identical: '≡',
33+
infinity: '∞',
2834
subscriptZero: '₀',
2935
subscriptOne: '₁',
3036
subscriptTwo: '₂',

‎readme.md

+6
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,12 @@ Symbols to use when running on Windows.
111111
| arrowRight |||
112112
| arrowLeftRight |||
113113
| arrowUpDown |||
114+
| almostEqual |||
115+
| notEqual |||
116+
| lessOrEqual |||
117+
| greaterOrEqual |||
118+
| identical |||
119+
| infinity |||
114120
| radioOn || (*) |
115121
| radioOff || ( ) |
116122
| checkboxOn || [×] |

0 commit comments

Comments
 (0)
Please sign in to comment.