import { TooltipAnchor } from '~/components/ui'; import { useLocalize } from '~/hooks'; import { cn } from '~/utils'; export default function StopButton({ stop, setShowStopButton }) { const localize = useLocalize(); return ( { setShowStopButton(false); stop(e); }} > } > ); }