mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-03 14:47:18 +01:00
fa1769c3c2
- Grouped based on notification.type and notification.status.id - Crossing fingers here
27 lines
437 B
JavaScript
27 lines
437 B
JavaScript
import './avatar.css';
|
|
|
|
const SIZES = {
|
|
s: 16,
|
|
m: 20,
|
|
l: 24,
|
|
xl: 32,
|
|
xxl: 50,
|
|
};
|
|
|
|
export default ({ 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>
|
|
);
|
|
};
|