UNPKG

@patternfly/react-core

Version:

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

10 lines (8 loc) 218 B
// @ts-nocheck import getWindow from './getWindow'; /** * @param element */ export default function getComputedStyle(element: Element): CSSStyleDeclaration { return getWindow(element).getComputedStyle(element); }