
* tailwind prettier * Minor fixes * Sorts components and pages Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> Co-authored-by: zomars <zomars@me.com>
15 lines
421 B
TypeScript
15 lines
421 B
TypeScript
import { InformationCircleIcon } from "@heroicons/react/solid";
|
|
|
|
import { Tooltip } from "@components/Tooltip";
|
|
|
|
export default function InfoBadge({ content }: { content: string }) {
|
|
return (
|
|
<>
|
|
<Tooltip content={content}>
|
|
<span title={content}>
|
|
<InformationCircleIcon className="relative top-px left-1 right-1 mt-px h-4 w-4 text-gray-500" />
|
|
</span>
|
|
</Tooltip>
|
|
</>
|
|
);
|
|
}
|