2023-01-23 23:08:01 +00:00
|
|
|
import { Tooltip } from "@calcom/ui";
|
|
|
|
import { FiInfo } from "@calcom/ui/components/icon";
|
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}>
|
2023-04-05 18:14:46 +00:00
|
|
|
<FiInfo className="text-subtle relative top-px left-1 right-1 mt-px h-4 w-4" />
|
2022-01-25 00:31:05 +00:00
|
|
|
</span>
|
|
|
|
</Tooltip>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|