import React, { memo } from "react"; import { getAssetPath } from "../../lib/assetUtils"; interface HeaderTabProps extends React.HTMLAttributes { children?: React.ReactNode; className?: string; stretch?: boolean; } const HeaderTab = memo( ({ children, className = "", stretch = false, ...props }) => { const stretchClasses = stretch ? "flex-1 sm:mr-[var(--spacing-scale-008)] md:mr-[185px] lg:mr-[var(--spacing-scale-024)] xl:mr-[var(--spacing-scale-032)]" : ""; return (
{children}
); } ); HeaderTab.displayName = "HeaderTab"; export default HeaderTab;