2022-12-28 01:06:54 +00:00
|
|
|
import type { InjectionKey, Ref } from 'vue'
|
2022-12-29 12:26:08 +00:00
|
|
|
import type { FontSize } from '~/types'
|
2022-12-28 01:06:54 +00:00
|
|
|
|
2023-01-03 11:58:08 +00:00
|
|
|
export const InjectionKeyFontSize: InjectionKey<Ref<FontSize>> = Symbol('font-size')
|
|
|
|
|
|
|
|
export const InjectionKeyDropdownContext: InjectionKey<{
|
|
|
|
hide: () => void
|
|
|
|
}> = Symbol('dropdown-context')
|