UNPKG

@platformbuilders/react-elements

Version:

Platform Builders Shared Components Library For React Web

22 lines 676 B
/// <reference types="react" /> import { ColorsVariants } from '..'; export declare type RadioProps = { id?: string; checked?: boolean; checkedIcon?: React.ReactNode; variant?: ColorsVariants; disabled?: boolean; icon?: React.ReactNode; size?: 'small' | 'medium'; label?: string; labelPlacement?: string; value?: string; onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void; }; export declare type RadioGroupProps = { defaultValue?: any; name?: string; onChange?: (event: React.ChangeEvent<HTMLInputElement>, value: string) => void; value?: any; }; //# sourceMappingURL=Radio.d.ts.map