@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
24 lines (23 loc) • 710 B
text/typescript
import { FlexboxProps } from "../../Flex/type.mjs";
import "../../Flex/index.mjs";
import { DivProps } from "../../types/index.mjs";
//#region src/awesome/GridBackground/type.d.ts
interface GridBackgroundProps extends DivProps {
animation?: boolean;
animationDuration?: number;
backgroundColor?: string;
colorBack?: string;
colorFront?: string;
flip?: boolean;
random?: boolean;
reverse?: boolean;
showBackground?: boolean;
strokeWidth?: number;
}
interface GridShowcaseProps extends FlexboxProps {
backgroundColor?: GridBackgroundProps['backgroundColor'];
innerProps?: FlexboxProps;
}
//#endregion
export { GridBackgroundProps, GridShowcaseProps };
//# sourceMappingURL=type.d.mts.map