vueless
Version:
Vue Styleless UI Component Library, powered by Tailwind CSS.
31 lines (29 loc) • 496 B
text/typescript
export const COMPONENT_NAME = "UKey";
export const KEY_SYMBOLS = {
command: "⌘",
cmd: "⌘",
meta: "⌘",
shift: "⇧",
alt: "⌥",
option: "⌥",
ctrl: "⌃",
control: "⌃",
enter: "↵",
return: "↵",
delete: "⌫",
backspace: "⌫",
escape: "⎋",
esc: "⎋",
tab: "⇥",
capslock: "⇪",
caps: "⇪",
up: "↑",
down: "↓",
left: "←",
right: "→",
pageup: "⇞",
pagedown: "⇟",
home: "↖",
end: "↘",
space: "␣",
} as const;