manifold/web/components/info-tooltip.tsx
2022-08-28 01:43:13 -07:00

12 lines
337 B
TypeScript

import { InformationCircleIcon } from '@heroicons/react/outline'
import { Tooltip } from './tooltip'
export function InfoTooltip(props: { text: string }) {
const { text } = props
return (
<Tooltip className="inline-block" text={text}>
<InformationCircleIcon className="-mb-1 h-5 w-5 text-gray-500" />
</Tooltip>
)
}