diff options
author | Pauline <git@ethanlibs.co> | 2024-01-22 03:30:30 +0100 |
---|---|---|
committer | Pauline <git@ethanlibs.co> | 2024-01-22 03:30:30 +0100 |
commit | 61ba9fd1f62cb959f197cf95c2686809318c6482 (patch) | |
tree | 44bec06175f1b833f2131d14f461cf288e5b9200 /packages/ui/src | |
parent | fbaa87ef4fcad18ac03cb0cfa82fb106751c1b38 (diff) | |
download | Nexus-61ba9fd1f62cb959f197cf95c2686809318c6482.tar.gz Nexus-61ba9fd1f62cb959f197cf95c2686809318c6482.tar.bz2 Nexus-61ba9fd1f62cb959f197cf95c2686809318c6482.zip |
chore(deps): bump and format
Diffstat (limited to 'packages/ui/src')
-rw-r--r-- | packages/ui/src/keys.ts | 4 | ||||
-rw-r--r-- | packages/ui/src/utils.tsx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/packages/ui/src/keys.ts b/packages/ui/src/keys.ts index bb8eaa4..c752ccc 100644 --- a/packages/ui/src/keys.ts +++ b/packages/ui/src/keys.ts @@ -34,7 +34,7 @@ export type OSforKeys = 'macOS' | 'Windows' | 'Other'; export const modifierSymbols: Record< ModifierKeys | EditingKeys | UIKeys | NavigationKeys, - { macOS?: string, Windows?: string, Other: string } + { macOS?: string; Windows?: string; Other: string } > = { Alt: { macOS: '⌥', Other: 'Alt' }, AltGraph: { macOS: '⌥', Other: 'Alt' }, @@ -57,7 +57,7 @@ export const modifierSymbols: Record< ArrowRight: { Other: '→' }, }; -export const keySymbols: Record<string, { macOS?: string, Windows?: string, Other: string }> = { +export const keySymbols: Record<string, { macOS?: string; Windows?: string; Other: string }> = { ' ': { Other: '␣' }, 'Tab': { macOS: '⇥', Other: '⭾' }, 'Enter': { macOS: '↩', Other: '↵' }, diff --git a/packages/ui/src/utils.tsx b/packages/ui/src/utils.tsx index 67782bb..e4e2f10 100644 --- a/packages/ui/src/utils.tsx +++ b/packages/ui/src/utils.tsx @@ -19,7 +19,7 @@ type TailwindFactory = { React.ForwardRefExoticComponent<JSX.IntrinsicElements[K]> >; } & { - <T>(c: T): ClassnameFactory<T> + <T>(c: T): ClassnameFactory<T>; }; export const tw = new Proxy((() => {}) as unknown as TailwindFactory, { |