/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type React from 'react'; import { Box, type DOMElement } from 'ink'; import { theme } from '../semantic-colors.js'; export interface StickyHeaderProps { children: React.ReactNode; width: number; isFirst: boolean; borderColor: string; borderDimColor: boolean; containerRef?: React.RefObject; } export const StickyHeader: React.FC = ({ children, width, isFirst, borderColor, borderDimColor, containerRef, }) => ( {children} {/* Dark border to separate header from content. */} } > {children} );