1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-06-16 16:29:42 +07:00
verdaccio-ui/src/muiComponents/Tooltip/Tooltip.tsx
2019-10-12 08:45:39 +02:00

12 lines
435 B
TypeScript

import React, { forwardRef } from 'react';
import { default as MaterialUITooltip, 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 = HTMLDivElement;
const Tooltip = forwardRef<TooltipRef, TooltipProps>(function ToolTip(props, ref) {
return <MaterialUITooltip {...props} innerRef={ref} />;
});
export default Tooltip;