2022-11-23 02:55:25 +00:00
|
|
|
import { Icon, Tooltip } from "@calcom/ui";
|
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>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|