14317c2232
It's unused and serialized to `undefined`.
16 lines
360 B
TypeScript
16 lines
360 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>
|
|
);
|