mirror of
https://github.com/elk-zone/elk.git
synced 2025-03-24 02:21:14 +03:00
5 lines
274 B
TypeScript
5 lines
274 B
TypeScript
import type { InjectionKey, Ref } from 'vue'
|
|
import type { ColorMode, FontSize } from '~/types'
|
|
|
|
export const InjectionKeyFontSize = Symbol('font-size') as InjectionKey<Ref<FontSize>>
|
|
export const InjectionKeyColorMode = Symbol('color-mode') as InjectionKey<Ref<ColorMode>>
|