UNPKG

react-native-chart-kit

Version:

Beautiful React Native charts for dashboards, reports, and data-rich mobile apps.

5 lines (4 loc) 317 B
import { jsx as _jsx } from "react/jsx-runtime"; import { SvgGroup } from "./primitives"; import { getChartRenderLayerTestId } from "./layerOrder"; export const SvgLayer = ({ children, name, testID, ...props }) => (_jsx(SvgGroup, { testID: testID ?? getChartRenderLayerTestId(name), ...props, children: children }));