@naturacosmeticos/natds-web
Version:
A collection of components from Natura Design System for React websites and webapps
21 lines (20 loc) • 621 B
TypeScript
import { ListItemAvatarProps } from '@material-ui/core/ListItemAvatar';
export interface IListItemAvatarProps extends ListItemAvatarProps {
/**
* The content of the component – normally `Avatar`.
*
* @required
* @see Avatar
* @type element
*/
children: ListItemAvatarProps['children'];
/**
* Override or extend the styles applied to the component.
*
* See [CSS API](https://material-ui.com/api/list/#css) below for more details.
*
* @see https://material-ui.com/api/list/#css
* @type object
*/
classes?: ListItemAvatarProps['classes'];
}