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).

6 lines (5 loc) 237 B
import { FC, ImgHTMLAttributes } from "react"; import { BaseComponentProps } from "../../types"; export interface ImageProps extends BaseComponentProps, ImgHTMLAttributes<HTMLImageElement> { } export declare const Image: FC<ImageProps>;