import React from 'react'; import PropTypes from 'prop-types'; import './IconTooltip.css'; import { useTranslation } from 'react-i18next'; const IconTooltip = ({ text, type = '' }) => { const { t } = useTranslation(); return
; }; IconTooltip.propTypes = { text: PropTypes.string.isRequired, type: PropTypes.string, }; export default IconTooltip;