Skip to content

Commit

Permalink
Fix typescript vs javascript differences
Browse files Browse the repository at this point in the history
  • Loading branch information
GFynbo committed Feb 18, 2020
1 parent ad1d1b9 commit e15f32e
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions packages/material-ui-lab/src/AvatarGroup/AvatarGroup.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,9 @@ AvatarGroup.propTypes = {
*/
classes: PropTypes.object,
/**
* Defines the space between the type `avatar` component.
* Spacing between avatars.
*/
spacing: PropTypes.oneOfType([
PropTypes.string,
PropTypes.number,
]),
spacing: PropTypes.oneOfType([PropTypes.oneOf(['large', 'medium', 'small']), PropTypes.number]),
/**
* @ignore
*/
Expand Down

0 comments on commit e15f32e

Please sign in to comment.