openreplay/frontend/app/components/Session_/Issues/AuthoAvatar.js
2021-05-01 15:12:01 +05:30

12 lines
330 B
JavaScript

import React from 'react';
import cn from 'classnames';
const AuthorAvatar = ({ className, imgUrl, width = 32, height = 32 }) => {
return (
<div className={ cn(className, "img-crcle")}>
<img src={ imgUrl } alt="" width={ width } height={ height } />
</div>
);
};
export default AuthorAvatar;