UNPKG

matrix-react-sdk

Version:
21 lines (20 loc) 531 B
import React from 'react'; import { ResizeMethod } from "../../../Avatar"; export interface IProps { groupId?: string; groupName?: string; groupAvatarUrl?: string; width?: number; height?: number; resizeMethod?: ResizeMethod; onClick?: React.MouseEventHandler; } export default class GroupAvatar extends React.Component<IProps> { static defaultProps: { width: number; height: number; resizeMethod: string; }; getGroupAvatarUrl(): string; render(): JSX.Element; }