@kinvolk/headlamp-plugin
Version:
The needed infrastructure for building Headlamp plugins.
9 lines (8 loc) • 317 B
TypeScript
import { IconProps } from '@iconify/react';
import React from 'react';
export interface TooltipIconProps {
children: string | React.ReactNode;
/** A materialui/core icon. */
icon?: IconProps['icon'];
}
export default function TooltipIcon(props: TooltipIconProps): import("react/jsx-runtime").JSX.Element;