import React from 'react'; import * as Tooltip from '@radix-ui/react-tooltip'; const WithTooltip = ({ tooltip, children, sideOffset = 5, className = '', arrowClassName = '', tooltipStyle = {} }) => { return ( {children} {tooltip} ); }; export default WithTooltip;