@dotconnor/grommet
Version:
focus on the essential experience
17 lines (13 loc) • 374 B
TypeScript
import * as React from 'react';
import { A11yTitleType } from '../../utils';
export interface RadioButtonProps {
a11yTitle?: A11yTitleType;
checked?: boolean;
disabled?: boolean;
id?: string;
label?: React.ReactNode;
name: string;
}
declare const RadioButton: React.ComponentClass<RadioButtonProps &
JSX.IntrinsicElements['input']>;
export { RadioButton };