UNPKG

@theme-ui/components

Version:

Primitive layout, typographic, and other components for use with Theme UI.

7 lines (6 loc) 233 B
import { ImageProps } from './Image'; import type { ForwardRef } from './types'; export interface AvatarProps extends ImageProps { size?: number | string; } export declare const Avatar: ForwardRef<HTMLImageElement, AvatarProps>;