Skip to content

Commit c4b29e0

Browse files
committed
refactor: replace users icon
1 parent 86cee18 commit c4b29e0

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

app/components/Link/Base.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ const isButtonMedium = computed(() => props.size === 'medium' && !isLink.value)
105105
/>
106106
<span
107107
v-else-if="isLinkAnchor && isLink"
108-
class="i-carbon:link size-[1em] opacity-0 group-hover/link:opacity-100 transition-opacity duration-200"
108+
class="i-lucide:link size-[1em] opacity-0 group-hover/link:opacity-100 transition-opacity duration-200"
109109
aria-hidden="true"
110110
/>
111111
<kbd

app/components/Org/MembersPanel.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ watch(lastExecutionTime, () => {
304304
<!-- Header -->
305305
<div class="flex items-center justify-between p-4 border-b border-border">
306306
<h2 id="members-heading" class="font-mono text-sm font-medium flex items-center gap-2">
307-
<span class="i-carbon:user-multiple w-4 h-4 text-fg-muted" aria-hidden="true" />
307+
<span class="i-lucide:users w-4 h-4 text-fg-muted" aria-hidden="true" />
308308
{{ $t('org.members.title') }}
309309
<span v-if="memberList.length > 0" class="text-fg-muted">({{ memberList.length }})</span>
310310
</h2>

app/components/Package/AccessControls.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ watch(
202202
/>
203203
<span
204204
v-else
205-
class="i-carbon:user w-3.5 h-3.5 text-fg-subtle shrink-0"
205+
class="i-lucide:user w-3.5 h-3.5 text-fg-subtle shrink-0"
206206
aria-hidden="true"
207207
/>
208208
<span class="font-mono text-sm text-fg-muted truncate">

app/pages/package/[[org]]/[name].vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -873,7 +873,7 @@ const showSkeleton = shallowRef(false)
873873
</li>
874874
<li class="basis-full sm:hidden" />
875875
<li v-if="homepageUrl">
876-
<LinkBase :to="homepageUrl" classicon="i-carbon:link">
876+
<LinkBase :to="homepageUrl" classicon="i-lucide:link">
877877
{{ $t('package.links.homepage') }}
878878
</LinkBase>
879879
</li>

0 commit comments

Comments
 (0)