Skip to content

Commit b24379f

Browse files
committed
replace chart line icon
1 parent 1e6a9da commit b24379f

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

app/components/Package/Card.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ const numberFormatter = useNumberFormatter()
118118
<div class="flex items-center gap-1.5">
119119
<dt class="sr-only">{{ $t('package.card.weekly_downloads') }}</dt>
120120
<dd class="flex items-center gap-1.5">
121-
<span class="i-carbon:chart-line w-3.5 h-3.5" aria-hidden="true" />
121+
<span class="i-lucide:chart-line w-3.5 h-3.5" aria-hidden="true" />
122122
<span class="font-mono">{{ $n(result.downloads.weekly) }}/w</span>
123123
</dd>
124124
</div>
@@ -152,7 +152,7 @@ const numberFormatter = useNumberFormatter()
152152
v-if="result.downloads?.weekly"
153153
class="text-fg-subtle gap-2 flex items-center justify-end"
154154
>
155-
<span class="i-carbon:chart-line w-3.5 h-3.5" aria-hidden="true" />
155+
<span class="i-lucide:chart-line w-3.5 h-3.5" aria-hidden="true" />
156156
<span class="font-mono text-xs">
157157
{{ $n(result.downloads.weekly) }} {{ $t('common.per_week') }}
158158
</span>

app/pages/org/[org].vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ defineOgImageComponent('Default', {
190190
class="text-fg-subtle text-xs mt-1 flex items-center gap-1.5 justify-end cursor-help"
191191
:title="$t('common.vanity_downloads_hint', { count: filteredCount }, filteredCount)"
192192
>
193-
<span class="i-carbon:chart-line w-3.5 h-3.5" aria-hidden="true" />
193+
<span class="i-lucide:chart-line w-3.5 h-3.5" aria-hidden="true" />
194194
<span class="font-mono"
195195
>{{ $n(totalWeeklyDownloads) }} {{ $t('common.per_week') }}</span
196196
>

app/pages/~[username]/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ defineOgImageComponent('Default', {
166166
class="text-fg-subtle text-xs mt-1 flex items-center gap-1.5 justify-end cursor-help"
167167
:title="$t('common.vanity_downloads_hint', { count: filteredCount }, filteredCount)"
168168
>
169-
<span class="i-carbon:chart-line w-3.5 h-3.5" aria-hidden="true" />
169+
<span class="i-lucide:chart-line w-3.5 h-3.5" aria-hidden="true" />
170170
<span class="font-mono"
171171
>{{ $n(totalWeeklyDownloads) }} {{ $t('common.per_week') }}</span
172172
>

0 commit comments

Comments
 (0)