diff --git a/src/components/Avatar.tsx b/src/components/Avatar.tsx index 418f25fc..c2970f50 100644 --- a/src/components/Avatar.tsx +++ b/src/components/Avatar.tsx @@ -4,22 +4,12 @@ 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) => ( -
+export const Avatar = ({ children, color, onClick }: AvatarProps) => ( +
{children}
);