UNPKG

@atlaskit/avatar

Version:

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

18 lines (17 loc) 343 B
/** * @jsxRuntime classic * @jsx jsx */ import { type FC, type ReactNode } from 'react'; interface IconWrapperProps { bgColor?: string; children?: ReactNode; label?: string; } /** * __Icon wrapper__ * * An icon wrapper is used internally only. */ declare const IconWrapper: FC<IconWrapperProps>; export default IconWrapper;