@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 • 478 B
TypeScript
export interface ListItemAvatarClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the root element when the parent `ListItem` uses `alignItems="flex-start"`. */
alignItemsFlexStart: string;
}
export type ListItemAvatarClassKey = keyof ListItemAvatarClasses;
export declare function getListItemAvatarUtilityClass(slot: string): string;
declare const listItemAvatarClasses: ListItemAvatarClasses;
export default listItemAvatarClasses;