ds-smart-ui
Version:
Smart UI is a React component library that helps you build accessible and responsive web applications.
15 lines (13 loc) • 495 B
TypeScript
import { FormColorTypes, FormSizeTypes } from '../../../types/form-types';
declare const Radio: import('react').ForwardRefExoticComponent<Omit<import('react').InputHTMLAttributes<HTMLInputElement>, "size"> & {
label?: string;
checked?: boolean;
disabled?: boolean;
color?: FormColorTypes;
size?: FormSizeTypes;
required?: boolean;
helperText?: string;
error?: boolean;
id?: string;
} & import('react').RefAttributes<HTMLInputElement>>;
export default Radio;