1
0
mirror of https://github.com/SomboChea/ui synced 2024-09-28 20:37:47 +07:00
verdaccio-ui/src/muiComponents/Tooltip/Tooltip.tsx

14 lines
524 B
TypeScript
Raw Normal View History

import React, { forwardRef } from 'react';
import { default as MuiTooltip, TooltipProps } from '@material-ui/core/Tooltip';
// The default element type of MUI's Tooltip is 'div' and the change of this prop is not allowed
type TooltipRef = HTMLElementTagNameMap['div'];
/* eslint-disable verdaccio/jsx-spread */
// eslint-disable-next-line react/display-name
const Tooltip = forwardRef<TooltipRef, TooltipProps>(function ToolTip(props, ref) {
return <MuiTooltip {...props} innerRef={ref} />;
});
export default Tooltip;