mars-v2-frontend/components/Tooltip.tsx
Linkie Link 27cdd1c954
Linter and prettier adjustments (#50)
* tidy: added eslintrc and prettierrc rules

* tidy: formated the files via ‚yarn format‘

* import sort improvements

* format script regex fix

* replace eslint import severity to warning

* remove staged file

Co-authored-by: Gustavo Mauricio <gustavo.mauricio58@gmail.com>
2022-11-09 10:04:06 +01:00

24 lines
579 B
TypeScript

import { InformationCircleIcon } from '@heroicons/react/24/solid'
import Tippy from '@tippyjs/react'
import { ReactNode } from 'react'
interface TooltipProps {
content: string | ReactNode
className?: string
}
const Tooltip = ({ content, className }: TooltipProps) => {
return (
<Tippy
appendTo={() => document.body}
className='rounded-md bg-[#ED512F] p-2 text-xs'
content={<span>{content}</span>}
interactive={true}
>
<InformationCircleIcon className={`w-5 cursor-pointer ${className}`} />
</Tippy>
)
}
export default Tooltip