amis-rpc-design/node_modules/antd/lib/radio/style/index.d.ts

75 lines
2.2 KiB
TypeScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
export interface ComponentToken {
/**
* @desc
* @descEN Radio size
*/
radioSize: number;
/**
* @desc
* @descEN Size of Radio dot
*/
dotSize: number;
/**
* @desc
* @descEN Color of disabled Radio dot
*/
dotColorDisabled: string;
/**
* @desc
* @descEN Background color of Radio button
*/
buttonBg: string;
/**
* @desc
* @descEN Background color of checked Radio button
*/
buttonCheckedBg: string;
/**
* @desc
* @descEN Color of Radio button text
*/
buttonColor: string;
/**
* @desc
* @descEN Horizontal padding of Radio button
*/
buttonPaddingInline: number;
/**
* @desc
* @descEN Background color of checked and disabled Radio button
*/
buttonCheckedBgDisabled: string;
/**
* @desc
* @descEN Color of checked and disabled Radio button text
*/
buttonCheckedColorDisabled: string;
/**
* @desc
* @descEN Color of checked solid Radio button text
*/
buttonSolidCheckedColor: string;
/**
* @desc
* @descEN Background color of checked solid Radio button text
*/
buttonSolidCheckedBg: string;
/**
* @desc
* @descEN Background color of checked solid Radio button text when hover
*/
buttonSolidCheckedHoverBg: string;
/**
* @desc
* @descEN Background color of checked solid Radio button text when active
*/
buttonSolidCheckedActiveBg: string;
/**
* @desc
* @descEN Margin right of Radio button
*/
wrapperMarginInlineEnd: number;
}
declare const _default: (prefixCls: string) => import("../../theme/interface").UseComponentStyleResult;
export default _default;