@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
12 lines (11 loc) • 351 B
text/typescript
import { FlexboxProps } from "../Flex/type.mjs";
import "../Flex/index.mjs";
//#region src/MaskShadow/type.d.ts
interface MaskShadowProps extends FlexboxProps {
position?: 'top' | 'bottom' | 'left' | 'right';
size?: number;
visibility?: 'auto' | 'always' | 'never';
}
//#endregion
export { MaskShadowProps };
//# sourceMappingURL=type.d.mts.map