import { buttonProps } from './button' import type { ExtractPropTypes } from 'vue' export const buttonGroupProps = { /** * @description control the size of buttons in this button-group */ size: buttonProps.size, /** * @description control the type of buttons in this button-group */ type: buttonProps.type, } as const export type ButtonGroupProps = ExtractPropTypes