import { Icon, TooltipHost } from "@fluentui/react"; import * as React from "react"; export interface TooltipProps { children: string; } export const InfoTooltip: React.FunctionComponent = ({ children }: TooltipProps) => { return ( ); };