2022-01-25 00:31:05 +00:00
|
|
|
import { InformationCircleIcon } from "@heroicons/react/solid";
|
|
|
|
|
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 (
|
|
|
|
<>
|
|
|
|
<Tooltip content={content}>
|
|
|
|
<span title={content}>
|
2022-02-09 00:05:13 +00:00
|
|
|
<InformationCircleIcon 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>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|