UNPKG

@atlaskit/avatar

Version:

An avatar is a visual representation of a user or entity.

20 lines (19 loc) 544 B
/** * @jsxRuntime classic * @jsx jsx */ import { type FC } from 'react'; import { type PresenceProps } from '../presence'; import { type AppearanceType, type IndicatorSizeType } from '../types'; interface PresenceWrapperProps extends PresenceProps { appearance: AppearanceType; size: IndicatorSizeType; testId?: string; } /** * __Presence wrapper__ * * A presence wrapper is used internally to position presence ontop of the avatar. */ declare const PresenceWrapper: FC<PresenceWrapperProps>; export default PresenceWrapper;