Files
openchamber/packages/ui/src/hooks/useFontPreferences.ts
T

14 lines
309 B
TypeScript
Raw Normal View History

2025-12-07 19:32:53 +02:00
import type { MonoFontOption, UiFontOption } from '@/lib/fontOptions';
interface FontPreferences {
uiFont: UiFontOption;
monoFont: MonoFontOption;
}
export const useFontPreferences = (): FontPreferences => {
return {
uiFont: 'ibm-plex-sans',
monoFont: 'ibm-plex-mono',
};
};