UNPKG

@open-condo/ui

Version:

A set of React UI components for developing applications inside the condo ecosystem

15 lines 593 B
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; export interface IRadio { (props: RadioProps): React.ReactElement; } declare const Radio: IRadio; export { Radio, }; //# sourceMappingURL=radio.d.ts.map