@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
16 lines (15 loc) • 550 B
text/typescript
import { SplineProps } from "../../awesome/Spline/type.mjs";
import "../../awesome/Spline/index.mjs";
import * as react31 from "react";
import { CSSProperties } from "react";
//#region src/brand/LogoThree/LogoSpline.d.ts
interface LogoSplineProps extends Partial<SplineProps> {
className?: string;
height?: number | string;
style?: CSSProperties;
width?: number | string;
}
declare const LogoSpline: react31.NamedExoticComponent<LogoSplineProps>;
//#endregion
export { LogoSpline, LogoSplineProps };
//# sourceMappingURL=LogoSpline.d.mts.map