import Image from "next/image";
import React from "react";

export default function ProfilePic({ src, height, width, alt, className }:any) {
  return (
    <Image
      src={src}
      height={height}
      width={width}
      alt={alt}
      priority
      className={`rounded-full flex items-center justify-center m-1 sm:m-3 bg-gray-500 ${className}`}
    />
  );
}