8 lines
272 B
TypeScript
Raw Normal View History

2021-02-20 18:55:36 +01:00
import * as React from "react";
import { ClientAvatar } from "tc-shared/file/Avatars";
export declare const AvatarRenderer: React.MemoExoticComponent<(props: {
2021-05-01 23:38:36 +02:00
avatar: ClientAvatar | "loading" | "default";
2021-02-20 18:55:36 +01:00
className?: string;
alt?: string;
}) => JSX.Element>;