UNPKG

@patternfly/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

12 lines (10 loc) 198 B
// @ts-nocheck /** * @param element */ export default function getHTMLElementScroll(element: HTMLElement) { return { scrollLeft: element.scrollLeft, scrollTop: element.scrollTop }; }