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