UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

23 lines (19 loc) 589 B
import { StandardProps } from '..'; export interface ListItemAvatarProps extends StandardProps<{}, ListItemAvatarClassKey> { /** * The content of the component – normally `Avatar`. */ children: React.ReactElement; } export type ListItemAvatarClassKey = 'root' | 'icon'; /** * A simple wrapper to apply `List` styles to an `Avatar`. * Demos: * * - [Lists](https://material-ui.com/components/lists/) * * API: * * - [ListItemAvatar API](https://material-ui.com/api/list-item-avatar/) */ export default function ListItemAvatar(props: ListItemAvatarProps): JSX.Element;