mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
16 lines
413 B
TypeScript
16 lines
413 B
TypeScript
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<typeof buttonGroupProps>
|