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 (
{label} {value}
); } export function TimeRow({ label, value, daySpan, muted, className }: TimeLayoutProps) { return (
{label} {daySpan ? ( {value} ) : ( {value} )}
); }