This repository has been archived on 2023-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
beatsaber-overlay/components/Avatar.js
RealFascinated aac2c7027e Updated
Added documentation to methods
Fixed avatars not initially loading
Just generally cleaned up the codebase
2022-04-02 07:01:58 +01:00

9 lines
230 B
JavaScript

import Image from "next/image";
const Avatar = (props) => {
return <>
<Image className={'player-avatar'} src={props.url} width={180} height={180} alt={'Avatar image'} loading='lazy'/>
</>
}
export default Avatar;