import React from 'react'; import { Tooltip } from 'UI'; import { CaretRightOutlined } from '@ant-design/icons'; import { Button } from 'antd'; import { shortDurationFromMs } from 'App/date'; interface Props { onClick: any; time?: number; tooltip?: string; } function JumpButton(props: Props) { const { tooltip } = props; return (