xinny/src/app/utils/key-symbol.ts
Ajay Bura bc5e7445d9
Add ESC btn to toolbar to quickly exit formatting (#1283)
* Add ESC btn to toolbar to quickly exit formatting

* add horizontal scroll to toolbar item

* make editor toolbar usable in touch device

* fix editor hotkeys not working in window

* remove unused import
2023-06-16 11:09:09 +10:00

10 lines
151 B
TypeScript

export enum KeySymbol {
Command = '⌘',
Shift = '⇧',
Option = '⌥',
Control = '⌃',
Hyper = '✦',
Super = '❖',
Escape = '⎋',
}