UNPKG

amotify

Version:

UI Component for React,NextJS,esbuild

12 lines (11 loc) 346 B
/// <reference types="react" /> import { StyleTags } from '../@declares'; declare namespace Img { type Input = StyleTags.BasicElement & { src: string; alt?: string; showExpand?: boolean | string; } & React.HTMLAttributes<HTMLImageElement>; } declare const Img: React.FC<Img.Input>; export { Img, Img as default };