mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-20 06:52:25 +03:00
4b49c6fb03
- Larger avatar - Less rounded sheet - Add Joined date
30 lines
469 B
JavaScript
30 lines
469 B
JavaScript
import './avatar.css';
|
|
|
|
const SIZES = {
|
|
s: 16,
|
|
m: 20,
|
|
l: 24,
|
|
xl: 32,
|
|
xxl: 50,
|
|
xxxl: 64,
|
|
};
|
|
|
|
function Avatar({ url, size, alt = '' }) {
|
|
size = SIZES[size] || size || SIZES.m;
|
|
return (
|
|
<span
|
|
class="avatar"
|
|
style={{
|
|
width: size,
|
|
height: size,
|
|
}}
|
|
title={alt}
|
|
>
|
|
{!!url && (
|
|
<img src={url} width={size} height={size} alt={alt} loading="lazy" />
|
|
)}
|
|
</span>
|
|
);
|
|
}
|
|
|
|
export default Avatar;
|