import { Tooltip } from '@chakra-ui/react'; import { IoChevronDown } from '@react-icons/all-files/io5/IoChevronDown'; import { IoChevronUp } from '@react-icons/all-files/io5/IoChevronUp'; import { tooltipDelayFast } from '../../../ontimeConfig'; import { millisToDelayString } from '../../utils/dateConfig'; import style from './DelayIndicator.module.scss'; interface DelayIndicatorProps { delayValue?: number; tooltipPrefix?: string; } export default function DelayIndicator(props: DelayIndicatorProps) { const { delayValue, tooltipPrefix } = props; if (typeof delayValue !== 'number' || delayValue === 0) { return null; } const delayString = tooltipPrefix ? `${tooltipPrefix} ${millisToDelayString(delayValue)}` : millisToDelayString(delayValue); return ( {delayValue < 0 ? : } ); }