diff --git a/src/components/avatar.jsx b/src/components/avatar.jsx index 48412a54..1a9fd40e 100644 --- a/src/components/avatar.jsx +++ b/src/components/avatar.jsx @@ -2,6 +2,8 @@ import './avatar.css'; import { useRef } from 'preact/hooks'; +import mem from '../utils/mem'; + const SIZES = { s: 16, m: 20, @@ -90,4 +92,4 @@ function Avatar({ url, size, alt = '', squircle, ...props }) { ); } -export default Avatar; +export default mem(Avatar);