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/src/components/Avatar.js

24 lines
409 B
JavaScript

import Image from "next/image";
import styles from "../styles/avatar.module.css";
const Avatar = (props) => {
return (
<>
<Image
className={styles.playerAvatar}
src={props.url}
width={180}
height={180}
alt={"Avatar image"}
loading="lazy"
placeholder="blur"
blurDataURL="https://cdn.fascinated.cc/yb4fgdc1.jpg"
unoptimized
/>
</>
);
};
export default Avatar;