@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
12 lines (11 loc) • 367 B
text/typescript
import { ImgProps } from "../../types/index.mjs";
import { FC } from "react";
import { ImageProps } from "antd";
//#region src/brand/Logo3d/index.d.ts
type Logo3dProps = Omit<ImgProps & ImageProps, 'width' | 'height' | 'src'> & {
size?: number | string;
};
declare const Logo3d: FC<Logo3dProps>;
//#endregion
export { Logo3d };
//# sourceMappingURL=index.d.mts.map