import React from 'react'; import { Icon, Tooltip } from 'UI'; import { shortDurationFromMs } from "App/date"; interface Props { onClick: any; time?: number; tooltip?: string; } function JumpButton(props: Props) { const { tooltip } = props; return (