UNPKG

287 BTypeScriptView Raw
1import { StandardProps } from '..';
2
3export interface ListItemAvatarProps extends StandardProps<{}, ListItemAvatarClassKey> {}
4
5export type ListItemAvatarClassKey = 'root' | 'icon';
6
7declare const ListItemAvatar: React.ComponentType<ListItemAvatarProps>;
8
9export default ListItemAvatar;