@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
10 lines (9 loc) • 400 B
TypeScript
/// <reference types="react" />
import { FlexboxProps } from 'react-layout-kit';
import { type GridBackgroundProps } from './index';
export interface GridShowcaseProps extends FlexboxProps {
backgroundColor?: GridBackgroundProps['backgroundColor'];
innerProps?: FlexboxProps;
}
declare const GridShowcase: import("react").NamedExoticComponent<GridShowcaseProps>;
export default GridShowcase;