b50c54f855
Co-authored-by: David Luzar <luzar.david@gmail.com>
16 lines
358 B
TypeScript
16 lines
358 B
TypeScript
import "./Avatar.scss";
|
|
|
|
import React from "react";
|
|
|
|
type AvatarProps = {
|
|
children: string;
|
|
onClick: (e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
|
color: string;
|
|
};
|
|
|
|
export const Avatar = ({ children, color, onClick }: AvatarProps) => (
|
|
<div className="Avatar" style={{ background: color }} onClick={onClick}>
|
|
{children}
|
|
</div>
|
|
);
|