tntd
Version:
tntd是基于 TNT Design 设计体系的 React UI 组件库,主要用于研发企业级中后台产品。
17 lines • 671 B
TypeScript
import type { RadioGroupProps as AntdRadioGroupProps, RadioProps as AntdRadioProps } from 'antd/lib/radio';
import AntdRadio from 'antd/lib/radio';
import React from 'react';
export * from 'antd/lib/radio';
export declare type RadioProps = AntdRadioProps & {
desc?: string | React.ReactNode;
};
export declare type RadioGroupProps = AntdRadioGroupProps & {
readonly?: boolean;
};
interface RadioComponent extends React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<AntdRadio>> {
Group: React.FC<RadioGroupProps>;
Button: typeof AntdRadio.Button;
}
declare const Radio: RadioComponent;
export default Radio;
//# sourceMappingURL=radio.d.ts.map