@kinvolk/headlamp-plugin
Version:
The needed infrastructure for building Headlamp plugins.
13 lines (12 loc) • 536 B
TypeScript
import { TooltipProps } from '@mui/material/Tooltip';
import { ReactNode } from 'react';
export interface TooltipLightProps extends Omit<TooltipProps, 'children'> {
/**
* If true, the tooltip will be interactive. Defaults to true.
*
* If a tooltip is interactive, it will close when the user hovers over the tooltip before the leaveDelay is expired.
*/
interactive?: boolean;
children: ReactNode;
}
export default function TooltipLight(props: TooltipLightProps): import("react/jsx-runtime").JSX.Element;