blob: 0df0dbd7efd6ef2f24cbb3dcaccd5c885e247b70 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import React from 'react';
import PropTypes from 'prop-types';
import { Link } from 'react-router-dom';
import { UserType } from './Types';
export default function Avatar(props) {
return (
<div className="msg-avatar">
<Link to={{ pathname: props.link || `/${props.user.uname}/`}}>
<img src={`//i.juick.com/a/${props.user.uid}.png`} alt={`${props.user.uname}`} />
</Link>
</div>
);
}
Avatar.propTypes = {
user: UserType,
link: PropTypes.string
};
|