@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
11 lines (10 loc) • 380 B
TypeScript
import { CSSProperties } from 'react';
import { type SplineProps } from "../../awesome/Spline";
export interface LogoSplineProps extends Partial<SplineProps> {
className?: string;
height?: number | string;
style?: CSSProperties;
width?: number | string;
}
declare const LogoSpline: import("react").NamedExoticComponent<LogoSplineProps>;
export default LogoSpline;