Skip to content

Commit

Permalink
fix ToggleButton too
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Sep 2, 2019
1 parent b637824 commit 875bf2b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/material-ui-lab/src/ToggleButton/ToggleButton.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ declare const ToggleButton: ExtendButtonBase<{

export type ToggleButtonProps = SimplifiedPropsOf<typeof ToggleButton>;

export type ToggleButtonClassKey = ButtonBaseClassKey | 'label' | 'selected';
export type ToggleButtonClassKey =
| 'root'
| 'disabled'
| 'selected'
| 'label'
| 'sizeSmall'
| 'sizeLarge';

export default ToggleButton;

0 comments on commit 875bf2b

Please sign in to comment.