UNPKG

material-ui-cordova

Version:

React components that implement Google's Material Design.

22 lines (17 loc) 511 B
import * as React from 'react'; import { StandardProps } from '..'; import { FormGroupProps, FormGroupClassKey } from '../Form/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;