refactor: icon and download button use button component

This commit is contained in:
2026-09-02 18:37:43 +05:00
parent 3d0f8ebb10
commit 8a6f87938d
16 changed files with 85 additions and 167 deletions
+7 -2
View File
@@ -38,7 +38,12 @@
placeholder="Search tools…"
/>
</div>
<Button icon={Search} variant="primary" onclick={() => {}}>Search</Button>
<Button
icon={Search}
variant="primary"
onclick={() => {}}
label="Search"
/>
</div>
<div class="ws-results">
{#each results as tool (tool.id)}
@@ -50,7 +55,7 @@
{/each}
</div>
<SettingsFooter>
<Button onclick={() => {}}>Open last project</Button>
<Button onclick={() => {}} label="Open last project" />
</SettingsFooter>
</Panel>
</section>