UNPKG

react-native-chart-kit

Version:

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

7 lines (6 loc) 239 B
export const createSvgHitRegionProps = ({ disabled = false, fill = "#000", fillOpacity = 0.001, pointerEvents, ...props }) => ({ ...props, fill, fillOpacity, pointerEvents: pointerEvents ?? (disabled ? "none" : "auto") });