UNPKG

@cainiaofe/cn-ui-m

Version:
33 lines (32 loc) 745 B
import * as React from 'react'; import { CnButtonProps } from "../../cn-button"; export interface CnButtonGroupProps extends React.HTMLAttributes<HTMLDivElement> { /** * 自定义容器,可传入 htmlId */ containerId?: string; /** * 是否全宽展示 */ fullWidth?: boolean; /** * 大小 */ size?: CnButtonProps['size']; /** * @deprecated 弃用,请自行控制按钮顺序,按照从左往右优先级升高的逻辑排列 * @ignore */ isReverse?: boolean; /** * 手动控制从第几个开始隐藏 */ hiddenIdx?: number; /** * `v0.9.3` * @default form * @ignore * @since 0.9.3 */ shape?: 'form' | 'card'; }