import React from 'react';
import type { LanedCommit } from './gitGraph';
const LANE_WIDTH = 8;
interface GitGraphSegmentProps {
laned: LanedCommit;
totalLanes: number;
isExpanded: boolean;
}
/**
* Renders the git graph lane column using an HTML Canvas element.
*
* Layout isolation pattern:
* A plain
(no replaced-element intrinsic sizing) owns all layout via
* `height: 100%` + self-stretch on the parent. The