import type {MouseEvent} from 'react'; import styled from '@emotion/styled'; import DateTime from 'sentry/components/dateTime'; import {showPlayerTime} from 'sentry/components/replays/utils'; import {Tooltip} from 'sentry/components/tooltip'; import {IconPlay} from 'sentry/icons'; import {space} from 'sentry/styles/space'; type Props = { startTimestampMs: number; timestampMs: string | number | Date; className?: string; format?: 'mm:ss' | 'mm:ss.SSS'; onClick?: (event: MouseEvent) => void; }; function TimestampButton({ className, format = 'mm:ss', onClick, startTimestampMs, timestampMs, }: Props) { return ( } skipWrapper> {showPlayerTime(timestampMs, startTimestampMs, format === 'mm:ss.SSS')} ); } const StyledButton = styled('button')` background: transparent; border: none; color: inherit; font-variant-numeric: tabular-nums; line-height: 1.2em; display: flex; align-items: flex-start; align-self: baseline; gap: ${space(0.25)}; padding: 0; height: 100%; `; export default TimestampButton;