1
0
mirror of https://github.com/elk-zone/elk synced 2024-12-03 17:28:11 +09:00
elk/composables/injections.ts

10 lines
263 B
TypeScript
Raw Normal View History

2023-01-03 20:58:08 +09:00
import { InjectionKeyDropdownContext, InjectionKeyFontSize } from '~/constants/symbols'
export function useFontSizeRef() {
return inject(InjectionKeyFontSize)!
}
2023-01-03 20:58:08 +09:00
export function useDropdownContext() {
return inject(InjectionKeyDropdownContext, undefined)
}