UNPKG

@patternfly/react-core

Version:

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

16 lines (14 loc) 294 B
// @ts-nocheck import { Rect, ClientRectObject } from '../types'; /** * @param rect */ export default function rectToClientRect(rect: Rect): ClientRectObject { return { ...rect, left: rect.x, top: rect.y, right: rect.x + rect.width, bottom: rect.y + rect.height }; }