@mui/material
Version:
Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.
10 lines • 540 B
TypeScript
export interface ListItemSecondaryActionClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the root element when the parent `ListItem` has `disableGutters={true}`. */
disableGutters: string;
}
export type ListItemSecondaryActionClassKey = keyof ListItemSecondaryActionClasses;
export declare function getListItemSecondaryActionClassesUtilityClass(slot: string): string;
declare const listItemSecondaryActionClasses: ListItemSecondaryActionClasses;
export default listItemSecondaryActionClasses;