import { Show } from 'solid-js'; import type { Component } from 'solid-js'; import { PanelLeftOpen, PanelLeftClose, Calculator, Plus, FileUp, Upload, Table, Download, History, Save } from 'lucide-solid'; import { appStore } from '../../store/appStore'; interface BuilderHeaderProps { isSidebarCollapsed: boolean; onToggleSidebar: () => void; onAddScope: () => void; onReset: () => void; onImportEstimate: (e: Event) => void; onShowExportTableModal: () => void; onExportEstimate: () => void; onShowLoadModal: () => void; onShowSaveModal: () => void; onShowHistoryModal: () => void; onSaveChanges: () => void; } export const BuilderHeader: Component = (props) => { const { scopes, estimateItems: items } = appStore; return (

Estimate Builder

{scopes.length} Scopes {items.length} Items