@open-condo/ui
Version:
A set of React UI components for developing applications inside the condo ecosystem
12 lines • 534 B
TypeScript
import React from 'react';
import type { TypographyTextProps } from '../Typography';
import type { RadioProps as DefaultRadioProps } from 'antd';
type CondoRadioProps = {
label?: React.ReactNode;
labelProps?: TypographyTextProps;
icon?: React.ReactNode;
};
export type RadioProps = Pick<DefaultRadioProps, 'autoFocus' | 'defaultChecked' | 'disabled' | 'onChange' | 'checked' | 'value' | 'children' | 'id'> & CondoRadioProps;
declare const Radio: React.FC<RadioProps>;
export { Radio, };
//# sourceMappingURL=radio.d.ts.map