import type { FC, PropsWithChildren } from 'react'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faInfoCircle as infoIcon } from '@fortawesome/free-solid-svg-icons'; import { UncontrolledTooltip } from 'reactstrap'; import type { Placement } from '@popperjs/core'; import { useElementRef } from './helpers/hooks'; export type InfoTooltipProps = PropsWithChildren<{ className?: string; placement: Placement; }>; export const InfoTooltip: FC = ({ className = '', placement, children }) => { const ref = useElementRef(); return ( <> {children} ); };