import "./Avatar.scss"; import React from "react"; type AvatarProps = { children: string; className?: string; onClick: (e: React.MouseEvent) => void; color: string; }; export const Avatar = ({ children, className, color, onClick, }: AvatarProps) => (
{children}
);