Skip to content

Commit

Permalink
[RadioGroup] Fix TypeScript definition for value property (mui#8026)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredklewis authored and oliviertassinari committed Sep 4, 2017
1 parent ecb5a24 commit 1d84cb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Radio/RadioGroup.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { FormGroupProps } from '../Form';
export type RadioGroupProps = {
name?: string;
onChange?: (event: React.ChangeEvent<{}>, value: string) => void;
selectedValue?: string;
value?: string;
} & Partial<Omit<FormGroupProps, 'onChange'>>;

export default class RadioGroup extends StyledComponent<RadioGroupProps> {}

0 comments on commit 1d84cb8

Please sign in to comment.