UNPKG

@twa-dev/mark42

Version:

Mark42 is a simple lightweight tree-shakable UI library for [Telegram Web Apps (TWA)](https://core.telegram.org/bots/webapps).

8 lines (7 loc) 219 B
import { FC } from "react"; import { AvatarProps } from "../Avatar"; export interface ImageAvatarProps extends AvatarProps { src?: string; alt?: string; } export declare const ImageAvatar: FC<ImageAvatarProps>;