@lobehub/ui
Version: 
Lobe UI is an open-source UI component library for building AIGC web apps
14 lines (13 loc) • 364 B
TypeScript
import type { CSSProperties, Ref } from 'react';
import type { FlexboxProps } from 'react-layout-kit';
export interface AuroraBackgroundProps extends FlexboxProps {
    classNames?: {
        content?: string;
        wrapper?: string;
    };
    ref?: Ref<HTMLDivElement>;
    styles?: {
        content?: CSSProperties;
        wrapper?: CSSProperties;
    };
}