@atlaskit/avatar
Version:
An avatar is a visual representation of a user or entity.
20 lines (19 loc) • 525 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import { type FC } from 'react';
import { type StatusProps } from '../status';
import { type AppearanceType, type IndicatorSizeType } from '../types';
interface StatusWrapperProps extends StatusProps {
appearance: AppearanceType;
size: IndicatorSizeType;
testId?: string;
}
/**
* __Status wrapper__
*
* A status wrapper is used internally to position status on top of the avatar.
*/
declare const StatusWrapper: FC<StatusWrapperProps>;
export default StatusWrapper;