import React from "react";
import { defaultImg } from "./config";
import '../../../index.css';
export const Avatar = ({ img = defaultImg, }) => {
  return (
    <div className="flex-shrink-0">
      <img className="h-8 w-8 rounded-full" src={img} alt="" />
    </div>
  );
};
