// @flow import React from 'react'; import MUITooltip from '@mui/material/Tooltip'; import type { Node } from 'react'; type Props = { arrow?: boolean, children: Node, disableInteractive?: boolean, enterDelay?: number, title?: string | Node, followCursor?: boolean, placement?: string, // https://mui.com/api/tooltip/ }; function Tooltip(props: Props) { const { arrow = true, children, disableInteractive = true, enterDelay = 300, title, followCursor = false, placement = 'bottom', } = props; return ( {children} ); } export default Tooltip;