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