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