UNPKG

victory-native

Version:

[![Victory Native](https://oss.nearform.com/api/banner?badge=victory&text=victory+native&bg=9c2f1e)](https://commerce.nearform.com/open-source/victory-native/)

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, );