Farmbot-Web-App/frontend/devices/components/space_panel_tool_tip.tsx

16 lines
364 B
TypeScript
Raw Normal View History

2017-06-29 12:54:02 -06:00
import * as React from "react";
import { t } from "i18next";
2017-06-29 12:54:02 -06:00
interface SPTTProps {
tooltip?: string | undefined;
}
export function SpacePanelToolTip({ tooltip }: SPTTProps) {
return (tooltip && <div className="help">
<i className="fa fa-question-circle help-icon" />
<div className="help-text">
{t(tooltip)}
2017-06-29 12:54:02 -06:00
</div>
</div>) || <span />;
}