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