* provide an alt attribute for the rendered `img` element.
*/
alt:PropTypes.string,
/**
* Used to render icon or text elements inside the Avatar if `src` is not set.
* This can be an element, or just a string.
*/
children:PropTypes.node,
/**
* Override or extend the styles applied to the component.
*/
classes:PropTypes.object,
/**
* @ignore
*/
className:PropTypes.string,
/**
* The component used for the root node.
* Either a string to use a HTML element or a component.
*/
component:PropTypes.elementType,
/**
* [Attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attributes) applied to the `img` element if the component is used to display an image.
* It can be used to listen for the loading error event.
*/
imgProps:PropTypes.object,
/**
* The `sizes` attribute for the `img` element.
*/
sizes:PropTypes.string,
/**
* The `src` attribute for the `img` element.
*/
src:PropTypes.string,
/**
* The `srcSet` attribute for the `img` element.
* Use this attribute for responsive image display.
*/
srcSet:PropTypes.string,
/**
* The system prop that allows defining system overrides as well as additional CSS styles.