import ReactTooltip from 'react-tooltip'; import { HelpCircle } from 'react-feather'; import clsx from 'clsx'; import _ from 'lodash'; import styles from './Tooltip.module.css'; type Position = 'top' | 'right' | 'bottom' | 'left'; export interface Props { position?: Position; message: string; } export function Tooltip({ message, position = 'bottom' }: Props) { const id = _.uniqueId('tooltip-'); return ( ); }