@withjoy/joykit
Version:
UI Component Library for Joy web
13 lines (12 loc) • 365 B
TypeScript
import React from 'react';
import { Props } from '../../common/props';
export declare type Size = 'small' | 'medium' | 'large';
export interface AvatarProps extends Props {
a11yLabel?: string;
children?: never;
initials?: string;
name?: string;
size?: Size;
source?: string;
}
export declare const Avatar: React.FC<AvatarProps>;