13 lines
448 B
TypeScript
13 lines
448 B
TypeScript
import { EntityDict } from '../../../oak-app-domain';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { AvatarSize } from 'antd/es/avatar/AvatarContext';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'token', false, {
|
|
avatarUrl: string;
|
|
shape?: 'circle' | 'square';
|
|
size: AvatarSize;
|
|
iconColor?: string;
|
|
iconName?: string;
|
|
iconLarger?: string;
|
|
onClick?: () => void;
|
|
}>): JSX.Element;
|