@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
10 lines (9 loc) • 325 B
TypeScript
import type { ImageProps } from 'antd';
import { Ref } from 'react';
import type { ImgProps as HtmlImgeProps } from "../types";
type ImgProps = HtmlImgeProps & ImageProps & {
ref?: Ref<HTMLImageElement>;
unoptimized?: boolean;
};
declare const Img: import("react").NamedExoticComponent<ImgProps>;
export default Img;