import { Tooltip } from '@chakra-ui/react'; import { cx } from '../../../common/utils/styleUtils'; import style from './TimeLayout.module.scss'; interface TimeLayoutProps { label: string; value: string; muted?: boolean; daySpan?: number; className?: string; testId?: string; } export function TimeColumn({ label, value, muted, className, testId }: TimeLayoutProps) { return (