import { Tooltip as ChakraTooltip, Portal } from "@chakra-ui/react" import * as React from "react" export const Tooltip = React.forwardRef(function Tooltip(props, ref) { const { showArrow, children, disabled, portalled, content, contentProps, portalRef, ...rest } = props if (disabled) return children return ( {children} {showArrow && ( )} {content} ) })