import { Badge, OverlayTrigger, Tooltip } from 'react-bootstrap' import CowboyHatIcon from '../svgs/cowboy.svg' export default function CowboyHat ({ streak, badge, className = 'ml-1', height = 16, width = 16 }) { if (streak === null) { return null } return ( {badge ? ( {streak || 'new'} ) : } ) } function HatTooltip ({ children, overlayText, placement }) { return ( {overlayText} } trigger={['hover', 'focus']} > {children} ) }