import { IStylableProps } from '../Generic.types'; export interface IAvatarProps extends IStylableProps { /** * Src path to the avatar image */ src?: string; /** * The alt attribute to the avatar image */ alt?: string; /** * The placeholder image to show when no src is provided */ placeholderImage?: string; } export default IAvatarProps;