@atlaskit/avatar
Version:
An avatar is a visual representation of a user or entity.
22 lines (21 loc) • 657 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
* @jsxFrag
*/
import { type ReactNode } from 'react';
type AvatarContentProps = {
children?: ReactNode;
};
/**
* __Avatar content__
*
* Avatar content renders the avatar content. It can be composed with the Avatar component
* to create a custom avatar.
*
* - [Examples](https://atlassian.design/components/avatar/examples)
* - [Code](https://atlassian.design/components/avatar/code)
* - [Usage](https://atlassian.design/components/avatar/usage)
*/
export declare const AvatarContent: import("react").ForwardRefExoticComponent<AvatarContentProps & import("react").RefAttributes<HTMLElement>>;
export {};