owncast/web/pages/components/info-tip.tsx

21 lines
392 B
TypeScript
Raw Normal View History

2021-01-03 10:54:04 +01:00
import { InfoCircleOutlined } from "@ant-design/icons";
import { Tooltip } from "antd";
interface InfoTipProps {
tip: string | null;
}
export default function InfoTip({ tip }: InfoTipProps) {
if (tip === '' || tip === null) {
return null;
}
return (
<span className="info-tip">
<Tooltip title={tip}>
<InfoCircleOutlined />
</Tooltip>
</span>
);
}