UNPKG

victory-native

Version:

A charting library for React Native with a focus on performance and customization.

11 lines (9 loc) 283 B
import { rect, type ClipDef } from "@shopify/react-native-skia"; import type { ChartBounds } from "../types"; export const boundsToClip = (bounds: ChartBounds): ClipDef => rect( bounds.left, bounds.top, bounds.right - bounds.left, bounds.bottom - bounds.top, );