Skip to content

Commit

Permalink
Fix class names
Browse files Browse the repository at this point in the history
  • Loading branch information
hbjORbj committed Sep 13, 2022
1 parent 344d935 commit 94d6e4e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/mui-joy/src/Button/buttonClasses.ts
Expand Up @@ -35,10 +35,10 @@ export interface ButtonClasses {
sizeLg: string;
/** Styles applied to the root element if `fullWidth={true}`. */
fullWidth: string;
/** Styles applied to the startIcon element if supplied. */
startIcon: string;
/** Styles applied to the endIcon element if supplied. */
endIcon: string;
/** Styles applied to the startDecorator element if supplied. */
startDecorator: string;
/** Styles applied to the endDecorator element if supplied. */
endDecorator: string;
}

export type ButtonClassKey = keyof ButtonClasses;
Expand All @@ -65,8 +65,8 @@ const buttonClasses: ButtonClasses = generateUtilityClasses('JoyButton', [
'sizeMd',
'sizeLg',
'fullWidth',
'startIcon',
'endIcon',
'startDecorator',
'endDecorator',
]);

export default buttonClasses;

0 comments on commit 94d6e4e

Please sign in to comment.