1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-09 15:56:47 +01:00
elk/composables/injections.ts
2023-01-03 20:03:50 +08:00

10 lines
263 B
TypeScript

import { InjectionKeyDropdownContext, InjectionKeyFontSize } from '~/constants/symbols'
export function useFontSizeRef() {
return inject(InjectionKeyFontSize)!
}
export function useDropdownContext() {
return inject(InjectionKeyDropdownContext, undefined)
}