2022-01-16 07:14:21 +00:00
|
|
|
import { InformationCircleIcon } from '@heroicons/react/outline'
|
2022-08-12 19:04:23 +00:00
|
|
|
import { Tooltip } from './tooltip'
|
2022-01-15 21:28:19 +00:00
|
|
|
|
|
|
|
export function InfoTooltip(props: { text: string }) {
|
|
|
|
const { text } = props
|
|
|
|
return (
|
2022-08-12 19:04:23 +00:00
|
|
|
<Tooltip text={text}>
|
2022-01-15 21:28:19 +00:00
|
|
|
<InformationCircleIcon className="h-5 w-5 text-gray-500" />
|
2022-08-12 19:04:23 +00:00
|
|
|
</Tooltip>
|
2022-01-15 21:28:19 +00:00
|
|
|
)
|
|
|
|
}
|