@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
10 lines (9 loc) • 316 B
TypeScript
import React from 'react';
type UseDataTableHasScrollParamsType = {
ref: React.RefObject<HTMLDivElement>;
};
type UseDataTableHasScrollReturnType = {
hasScroll: boolean;
};
export declare const useDataTableHasScroll: ({ ref, }: UseDataTableHasScrollParamsType) => UseDataTableHasScrollReturnType;
export {};