Skip to content

Commit 2a58558

Browse files
committed
replace favorite icon
1 parent 5972e16 commit 2a58558

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

app/components/BlueskyPostEmbed.client.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ const { data: post, status } = useAsyncData(
112112
<div class="flex items-center gap-4 text-sm text-fg-subtle">
113113
<DateTime :datetime="post.record.createdAt" date-style="medium" />
114114
<span v-if="post.likeCount" class="flex items-center gap-1">
115-
<span class="i-carbon:favorite w-3.5 h-3.5" aria-hidden="true" />
115+
<span class="i-lucide:heart w-3.5 h-3.5" aria-hidden="true" />
116116
{{ post.likeCount }}
117117
</span>
118118
<span v-if="post.repostCount" class="flex items-center gap-1">

app/pages/about.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ const roleLabels = computed(
207207
:to="person.sponsors_url"
208208
no-underline
209209
no-external-icon
210-
classicon="i-carbon:favorite"
210+
classicon="i-lucide:heart"
211211
class="relative z-10 text-xs text-fg-muted hover:text-pink-400 mt-0.5"
212212
:aria-label="$t('about.team.sponsor_aria', { name: person.login })"
213213
>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@ const showSkeleton = shallowRef(false)
901901
</LinkBase>
902902
</li>
903903
<li v-if="fundingUrl">
904-
<LinkBase :to="fundingUrl" classicon="i-carbon:favorite">
904+
<LinkBase :to="fundingUrl" classicon="i-lucide:heart">
905905
{{ $t('package.links.fund') }}
906906
</LinkBase>
907907
</li>

0 commit comments

Comments
 (0)