Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Feb 9, 2021
1 parent f665ad5 commit 3f9fb0b
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/material-ui/src/Checkbox/Checkbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,7 @@ const useUtilityClasses = (styleProps) => {
const { classes, indeterminate, color } = styleProps;

const slots = {
root: [
'root',
indeterminate && 'indeterminate',
`color${capitalize(color)}`,
],
root: ['root', indeterminate && 'indeterminate', `color${capitalize(color)}`],
};

return composeClasses(slots, getCheckboxUtilityClass, classes);
Expand Down

0 comments on commit 3f9fb0b

Please sign in to comment.