@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
9 lines (8 loc) • 313 B
TypeScript
/// <reference types="react" />
import { ImageProps } from 'antd';
import { ImgProps } from "../../types";
type Logo3dProps = Omit<ImgProps & ImageProps, 'width' | 'height' | 'src'> & {
size?: number | string;
};
declare const Logo3d: import("react").NamedExoticComponent<Logo3dProps>;
export default Logo3d;