2023-01-03 11:58:08 +00:00
|
|
|
import { InjectionKeyDropdownContext, InjectionKeyFontSize } from '~/constants/symbols'
|
2022-12-28 01:06:54 +00:00
|
|
|
|
|
|
|
export function useFontSizeRef() {
|
|
|
|
return inject(InjectionKeyFontSize)!
|
|
|
|
}
|
2023-01-03 11:58:08 +00:00
|
|
|
|
|
|
|
export function useDropdownContext() {
|
|
|
|
return inject(InjectionKeyDropdownContext, undefined)
|
|
|
|
}
|