UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

12 lines (7 loc) 304 B
import { StandardProps } from '..'; export interface ListItemIconProps extends StandardProps<{}, ListItemIconClassKey> { children: React.ReactElement<any>; } export type ListItemIconClassKey = 'root'; declare const ListItemIcon: React.ComponentType<ListItemIconProps>; export default ListItemIcon;