11 lines
284 B
TypeScript
11 lines
284 B
TypeScript
|
import { InformationCircleIcon } from '@heroicons/react/solid'
|
||
|
|
||
|
export function InfoTooltip(props: { text: string }) {
|
||
|
const { text } = props
|
||
|
return (
|
||
|
<div className="tooltip" data-tip={text}>
|
||
|
<InformationCircleIcon className="h-5 w-5 text-gray-500" />
|
||
|
</div>
|
||
|
)
|
||
|
}
|