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