@atlaskit/avatar
Version:
An avatar is a visual representation of a user or entity.
21 lines (20 loc) • 481 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import { type FC } from 'react';
import { type AppearanceType, type SizeType } from '../types';
interface AvatarImageProps {
appearance: AppearanceType;
size: SizeType;
alt?: string;
src?: string;
testId?: string;
}
/**
* __Avatar image__
*
* An avatar image is an internal component used to control the rendering phases of an image.
*/
declare const AvatarImage: FC<AvatarImageProps>;
export default AvatarImage;