2022-07-27 02:24:00 +00:00
|
|
|
import { Icon } from "@calcom/ui/Icon";
|
2022-05-05 21:16:25 +00:00
|
|
|
import { Tooltip } from "@calcom/ui/Tooltip";
|
2022-01-25 00:31:05 +00:00
|
|
|
|
|
|
|
export default function InfoBadge({ content }: { content: string }) {
|
|
|
|
return (
|
|
|
|
<>
|
2022-07-14 11:32:28 +00:00
|
|
|
<Tooltip side="top" content={content}>
|
2022-01-25 00:31:05 +00:00
|
|
|
<span title={content}>
|
2022-08-03 16:01:29 +00:00
|
|
|
<Icon.FiInfo className="relative top-px left-1 right-1 mt-px h-4 w-4 text-gray-500" />
|
2022-01-25 00:31:05 +00:00
|
|
|
</span>
|
|
|
|
</Tooltip>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|