import * as React from 'react'; export interface AvatarImageProps { className?: string; onError?: Function; url: string; } const AvatarImage = ({ className = '', url, onError }: AvatarImageProps) => ( { if (typeof onError === 'function') { onError(event); } }} src={url} /> ); export default AvatarImage;