import React, { memo } from 'react'; import { Group, RoundedRect } from '@shopify/react-native-skia'; import { CHART_TOOLTIP_HEIGHT } from './constants'; import type { TooltipProps } from './types'; const Tooltip = ({ transform, children, backgroundColor, width = 100, height = CHART_TOOLTIP_HEIGHT, }: TooltipProps) => { return ( {children} ); }; export default memo(Tooltip);