stylist / frontend / src / components / Avatar / Avatar.tsx
Avatar.tsx
Raw
import React from 'react';
import Image from 'next/image';
import userImage from '../../../public/icons/user.svg';
const Avatar = () => {
  return (
    <>
      <Image src={userImage} alt="User Icon" placeholder="blur" fill={true} />
    </>
  );
};

export default Avatar;