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