@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
23 lines (22 loc) • 611 B
text/typescript
import { FlexboxProps } from "../Flex/type.mjs";
import "../Flex/index.mjs";
import { Ref } from "react";
//#region src/ScrollShadow/type.d.ts
interface ScrollShadowProps extends FlexboxProps {
hideScrollBar?: boolean;
isEnabled?: boolean;
offset?: number;
onVisibilityChange?: (visibility: {
bottom?: boolean;
left?: boolean;
right?: boolean;
top?: boolean;
}) => void;
orientation?: 'vertical' | 'horizontal';
ref?: Ref<HTMLDivElement>;
size?: number;
visibility?: 'auto' | 'always' | 'never';
}
//#endregion
export { ScrollShadowProps };
//# sourceMappingURL=type.d.mts.map