@etsoo/materialui
Version:
TypeScript Material-UI Implementation
24 lines (23 loc) • 428 B
TypeScript
/**
* User avatar props
*/
export interface UserAvatarProps {
/**
* Photo src
*/
src?: string;
/**
* Format title
*/
formatTitle?: (title?: string) => string;
/**
* Title of the user
*/
title?: string;
}
/**
* User avatar
* @param props Props
* @returns Component
*/
export declare function UserAvatar(props: UserAvatarProps): import("react/jsx-runtime").JSX.Element;