8 lines
272 B
TypeScript
8 lines
272 B
TypeScript
import * as React from "react";
|
|
import { ClientAvatar } from "tc-shared/file/Avatars";
|
|
export declare const AvatarRenderer: React.MemoExoticComponent<(props: {
|
|
avatar: "default" | "loading" | ClientAvatar;
|
|
className?: string;
|
|
alt?: string;
|
|
}) => JSX.Element>;
|