Skip to content

Commit 5d690cb

Browse files
Merge pull request #271 from alley-rs/dev
2 parents 010606c + cb02d43 commit 5d690cb

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

src/components/history/Item/index.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import { createMemo, Show } from "solid-js";
2-
import { AiFillApi, AiFillChrome, AiFillDelete } from "solid-icons/ai";
2+
3+
import { AiFillChrome, AiFillDelete } from "solid-icons/ai";
4+
import { TiFlash } from "solid-icons/ti";
35

46
import { deleteHistoryByID, open } from "~/command";
57
import {
@@ -80,7 +82,7 @@ const HistoryItem = (props: HistoryItemProps) => {
8082
when={!isParsing()}
8183
fallback={<LazySpinner size="extra-tiny" />}
8284
>
83-
<AiFillApi font-size={BUTTON_ICON_FONT_SIZE} />
85+
<TiFlash font-size={BUTTON_ICON_FONT_SIZE} />
8486
</Show>
8587
}
8688
appearance="transparent"

src/components/search/index.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { createSignal, For, Show } from "solid-js";
2-
import { AiFillApi } from "solid-icons/ai";
2+
3+
import { TiFlash } from "solid-icons/ti";
34

45
import { LazyButton, LazyInput, LazyBadge, LazySpinner } from "~/lazy";
56

@@ -97,7 +98,7 @@ const Search = () => {
9798
when={!isSearchParsing()}
9899
fallback={<LazySpinner size="extra-tiny" />}
99100
>
100-
<AiFillApi />
101+
<TiFlash />
101102
</Show>
102103
}
103104
isLoading={isSearchParsing()}

0 commit comments

Comments
 (0)