import { Theme } from "../styles"; import { ListItemIconClasses } from "./listItemIconClasses"; import { SxProps } from "@suid/system"; import { ElementType, OverrideProps } from "@suid/types"; import { JSXElement } from "solid-js"; export interface ListItemIconTypeMap

{ name: "MuiListItemIcon"; selfProps: { /** * The content of the component, normally an `Avatar`. */ children?: JSXElement; /** * Override or extend the styles applied to the component. */ classes?: Partial; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps; alignItems?: string; }; props: P & ListItemIconTypeMap["selfProps"]; defaultComponent: D; } export type ListItemIconProps = OverrideProps, D>; export default ListItemIconProps; //# sourceMappingURL=ListItemIconProps.d.ts.map