UNPKG

react-scrollbar-size

Version:

React hook to calculate the size of browser scrollbars

9 lines (8 loc) 269 B
export interface ScrollbarMeasurements { /** Current height of the scrollbar */ height: number; /** Current width of the scrollbar */ width: number; } declare const useScrollbarSize: () => ScrollbarMeasurements; export default useScrollbarSize;