grommet
Version:
focus on the essential experience
15 lines (11 loc) • 338 B
TypeScript
import * as React from "react";
export interface RadioButtonProps {
checked?: boolean;
disabled?: boolean;
id?: string;
label?: React.ReactNode;
name: string;
onChange?: ((...args: any[]) => any);
}
declare const RadioButton: React.ComponentClass<RadioButtonProps & JSX.IntrinsicElements['input']>;
export { RadioButton };