UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

10 lines (9 loc) 328 B
import { type ReactNode } from 'react'; import { DivProps } from "../../types"; export interface LobeHubProps extends DivProps { extra?: ReactNode; size?: number; type?: '3d' | 'flat' | 'mono' | 'text' | 'combine'; } declare const LobeHub: import("react").NamedExoticComponent<LobeHubProps>; export default LobeHub;