UNPKG

@lobehub/ui

Version:

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

19 lines (18 loc) 562 B
import { FlexboxProps } from 'react-layout-kit'; import type { DivProps } from "../../types"; export interface GridBackgroundProps extends DivProps { animation?: boolean; animationDuration?: number; backgroundColor?: string; colorBack?: string; colorFront?: string; flip?: boolean; random?: boolean; reverse?: boolean; showBackground?: boolean; strokeWidth?: number; } export interface GridShowcaseProps extends FlexboxProps { backgroundColor?: GridBackgroundProps['backgroundColor']; innerProps?: FlexboxProps; }