UNPKG

@theme-ui/components

Version:

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

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