Skip to content

Commit e02750c

Browse files
committed
replace search icon
1 parent 75cc72e commit e02750c

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

app/components/AppHeader.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ onKeyStroke(
287287
:aria-expanded="showMobileMenu"
288288
@click="expandMobileSearch"
289289
v-if="!isSearchExpanded && !isOnHomePage"
290-
classicon="i-carbon:search"
290+
classicon="i-lucide:search"
291291
/>
292292

293293
<!-- Mobile: Menu button (always visible, click to open menu) -->

app/components/Org/MembersPanel.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ watch(lastExecutionTime, () => {
327327
<div class="flex flex-wrap items-center gap-2 p-3 border-b border-border bg-bg">
328328
<div class="flex-1 min-w-[150px] relative">
329329
<span
330-
class="absolute inset-is-2 top-1/2 -translate-y-1/2 i-carbon:search w-3.5 h-3.5 text-fg-subtle"
330+
class="absolute inset-is-2 top-1/2 -translate-y-1/2 i-lucide:search w-3.5 h-3.5 text-fg-subtle"
331331
aria-hidden="true"
332332
/>
333333
<label for="members-search" class="sr-only">{{ $t('org.members.filter_label') }}</label>

app/components/Org/TeamsPanel.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ watch(lastExecutionTime, () => {
283283
<div class="flex items-center gap-2 p-3 border-b border-border bg-bg">
284284
<div class="flex-1 relative">
285285
<span
286-
class="absolute inset-is-2 top-1/2 -translate-y-1/2 i-carbon:search w-3.5 h-3.5 text-fg-subtle"
286+
class="absolute inset-is-2 top-1/2 -translate-y-1/2 i-lucide:search w-3.5 h-3.5 text-fg-subtle"
287287
aria-hidden="true"
288288
/>
289289
<label for="teams-search" class="sr-only">{{ $t('org.teams.filter_label') }}</label>

app/components/Package/ListControls.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const showFilteredCount = computed(() => {
5959
class="absolute h-full w-10 flex items-center justify-center text-fg-subtle pointer-events-none"
6060
aria-hidden="true"
6161
>
62-
<div class="i-carbon:search w-4 h-4" />
62+
<div class="i-lucide:search w-4 h-4" />
6363
</div>
6464
<InputBase
6565
id="package-filter"

app/components/SearchProviderToggle.client.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ useEventListener('keydown', event => {
9696
"
9797
>
9898
<span
99-
class="i-carbon:search w-4 h-4 mt-0.5 shrink-0"
99+
class="i-lucide:search w-4 h-4 mt-0.5 shrink-0"
100100
:class="searchProviderValue === 'algolia' ? 'text-accent' : 'text-fg-muted'"
101101
aria-hidden="true"
102102
/>

app/pages/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ defineOgImageComponent('Default', {
9393
type="submit"
9494
variant="primary"
9595
class="absolute inset-ie-2 border-transparent"
96-
classicon="i-carbon:search"
96+
classicon="i-lucide:search"
9797
>
9898
<span class="sr-only sm:not-sr-only">
9999
{{ $t('search.button') }}

0 commit comments

Comments
 (0)