adui
Version:
<div> <img src="https://wxa.wxs.qq.com/mpweb/delivery/legacy/wxadtouch/upload/t1/od834zef_52939fc6.png" style="margin:40px 0 0 -8px; background-color: #fcfcfc; box-shadow: none;" /> </div>
22 lines (21 loc) • 473 B
TypeScript
import * as React from "react";
type ContextProps = {
/**
* 是否禁用
*/
disabled?: boolean | null;
/**
* 设置内部所有 <Button /> 类型
*/
intent?: "normal" | "primary" | "success" | "warning" | "danger";
/**
* 尺寸
*/
size?: "mini" | "small" | "medium" | "large";
/**
* 主题
*/
theme?: null | "light";
};
export declare const ButtonGroupContext: React.Context<ContextProps>;
export {};