@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
15 lines (14 loc) • 395 B
text/typescript
import { FlexboxProps } from "../Flex/type.mjs";
import "../Flex/index.mjs";
import { Ref } from "react";
//#region src/Block/type.d.ts
interface BlockProps extends FlexboxProps {
clickable?: boolean;
glass?: boolean;
ref?: Ref<HTMLDivElement>;
shadow?: boolean;
variant?: 'filled' | 'outlined' | 'borderless';
}
//#endregion
export { BlockProps };
//# sourceMappingURL=type.d.mts.map