@redocly/theme
Version:
Shared UI components lib
9 lines (8 loc) • 314 B
TypeScript
import type { JSX } from 'react';
export type UserAvatarProps = {
picture?: string;
className?: string;
height?: `var(${string})` | `${number}px`;
width?: `var(${string})` | `${number}px`;
};
export declare function UserAvatar({ picture, className, height, width, }: UserAvatarProps): JSX.Element;