UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

17 lines (12 loc) 493 B
import * as React from 'react'; import { StandardProps } from '..'; import { FormGroupProps, FormGroupClassKey } from '../FormGroup'; export interface RadioGroupProps extends StandardProps<FormGroupProps, RadioGroupClassKey, 'onChange'> { name?: string; onChange?: (event: React.ChangeEvent<{}>, value: string) => void; value?: string; } export type RadioGroupClassKey = FormGroupClassKey; declare const RadioGroup: React.ComponentType<RadioGroupProps>; export default RadioGroup;