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