import * as React from "react"; import { t } from "../../i18next_wrapper"; interface SPTTProps { tooltip?: string | undefined; } export function SpacePanelToolTip({ tooltip }: SPTTProps) { return (tooltip &&
{t(tooltip)}
) || ; }