Skip to content

Commit

Permalink
Revert Slider default size class enforcement
Browse files Browse the repository at this point in the history
Signed-off-by: Diego Andai <[email protected]>
  • Loading branch information
DiegoAndai authored Aug 22, 2023
1 parent 751cc12 commit 864c90b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mui-material/src/Slider/Slider.js
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ const useUtilityClasses = (ownerState) => {
track === 'inverted' && 'trackInverted',
track === false && 'trackFalse',
color && `color${capitalize(color)}`,
size !== 'medium' && `size${capitalize(size)}`,
size && `size${capitalize(size)}`,
],
rail: ['rail'],
track: ['track'],
Expand Down

0 comments on commit 864c90b

Please sign in to comment.