worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
20
node_modules/@mui/material/MenuItem/menuItemClasses.d.ts
generated
vendored
Normal file
20
node_modules/@mui/material/MenuItem/menuItemClasses.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
export interface MenuItemClasses {
|
||||
/** Styles applied to the root element. */
|
||||
root: string;
|
||||
/** State class applied to the root element if keyboard focused. */
|
||||
focusVisible: string;
|
||||
/** Styles applied to the root element if dense. */
|
||||
dense: string;
|
||||
/** State class applied to the root element if `disabled={true}`. */
|
||||
disabled: string;
|
||||
/** Styles applied to the root element if `divider={true}`. */
|
||||
divider: string;
|
||||
/** Styles applied to the inner `component` element unless `disableGutters={true}`. */
|
||||
gutters: string;
|
||||
/** State class applied to the root element if `selected={true}`. */
|
||||
selected: string;
|
||||
}
|
||||
export type MenuItemClassKey = keyof MenuItemClasses;
|
||||
export declare function getMenuItemUtilityClass(slot: string): string;
|
||||
declare const menuItemClasses: MenuItemClasses;
|
||||
export default menuItemClasses;
|
||||
Loading…
Add table
Add a link
Reference in a new issue