mui-simple
Version:
Override mui-v7 components to simplify usage
24 lines • 777 B
TypeScript
import React from 'react';
import type { PropsWithChildren } from 'react';
import type { ListItemProps } from '../../decs';
interface ListItemCmpProps {
disablePadding?: boolean;
disableGutters?: boolean;
flexDirectionItems?: 'row' | 'column';
index?: number;
itemProps?: ListItemProps;
onClick?: (index: number, cb: any, event: any) => void;
buttonItems?: boolean;
alignItems?: 'flex-start';
isControl?: boolean;
alignControl?: string;
insetItems?: boolean;
enableSubtitle?: boolean;
isOpen?: boolean;
useReactRouterDomLink?: boolean;
draggable?: boolean;
[key: string]: any;
}
declare const ListItem: React.FC<PropsWithChildren<ListItemCmpProps>>;
export default ListItem;
//# sourceMappingURL=ListItem.d.ts.map