amotify
Version:
UI Component for React,NextJS,esbuild
12 lines (11 loc) • 348 B
TypeScript
/// <reference types="react" />
import { StyleProps } from '../@declares';
declare namespace Img {
type Input = StyleProps.BasicElement & {
src: string;
alt?: string;
showExpand?: boolean | string;
} & React.HTMLAttributes<HTMLImageElement>;
}
declare const Img: React.FC<Img.Input>;
export { Img, Img as default };