UNPKG

matrix-react-sdk

Version:
9 lines (8 loc) 327 B
import React, { ComponentProps } from 'react'; import { IApp } from "../../../stores/WidgetStore"; import { BaseAvatarType } from "./BaseAvatar"; interface IProps extends Omit<ComponentProps<BaseAvatarType>, "name" | "url" | "urls"> { app: IApp; } declare const WidgetAvatar: React.FC<IProps>; export default WidgetAvatar;