/** * The InfoTip components needs to be nuked * This component will be the future replacement * We should allow icon and placement props to be passed in */ import React, { useState } from 'react'; import HelpIcon from 'components/Icons/Help'; import StyledWrapper from './StyledWrapper'; const Help = ({ children, width = 200 }) => { const [showTooltip, setShowTooltip] = useState(false); return (