import type { InjectionKey } from 'vue' import type { ButtonProps } from '@kankan-components/components/basic/button' export interface ButtonGroupContext { size?: ButtonProps['size'] type?: ButtonProps['type'] } export const buttonGroupContextKey: InjectionKey = Symbol( 'buttonGroupContextKey' )