Skip to content

Commit d46c161

Browse files
committed
refactor: replace info icon
1 parent fc467cd commit d46c161

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

app/components/AppHeader.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const mobileLinks = computed<NavigationConfigWithGroups>(() => [
5454
to: { name: 'about' },
5555
type: 'link',
5656
external: false,
57-
iconClass: 'i-carbon:information',
57+
iconClass: 'i-lucide:info',
5858
},
5959
{
6060
name: 'Privacy Policy',

app/components/Compare/FacetCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ function getShortName(header: string): string {
7777
<span class="text-xs text-fg-muted uppercase tracking-wider font-medium">{{ label }}</span>
7878
<TooltipApp v-if="description" :text="description" position="top">
7979
<span
80-
class="i-carbon:information w-3 h-3 text-fg-subtle"
80+
class="i-lucide:info w-3 h-3 text-fg-subtle"
8181
:title="description"
8282
aria-hidden="true"
8383
/>

app/components/Compare/FacetRow.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ function isCellLoading(index: number): boolean {
9393
<div class="comparison-label flex items-center gap-1.5 px-4 py-3 border-b border-border">
9494
<span class="text-xs text-fg-muted uppercase tracking-wider">{{ label }}</span>
9595
<TooltipApp v-if="description" :text="description" position="top">
96-
<span class="i-carbon:information w-3 h-3 text-fg-subtle cursor-help" aria-hidden="true" />
96+
<span class="i-lucide:info w-3 h-3 text-fg-subtle cursor-help" aria-hidden="true" />
9797
</TooltipApp>
9898
</div>
9999

app/components/Compare/ReplacementSuggestion.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const docUrl = computed(() => {
3131
>
3232
<span
3333
class="w-4 h-4 flex-shrink-0 mt-0.5"
34-
:class="variant === 'nodep' ? 'i-lucide:lightbulb' : 'i-carbon:information'"
34+
:class="variant === 'nodep' ? 'i-lucide:lightbulb' : 'i-lucide:info'"
3535
/>
3636
<div class="min-w-0 flex-1">
3737
<p class="font-medium">{{ packageName }}: {{ $t('package.replacement.title') }}</p>

app/components/Terminal/Install.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ const copyDevInstallCommand = () =>
271271
:to="packageRoute(createPackageInfo.packageName)"
272272
class="inline-flex items-center justify-center min-w-6 min-h-6 -m-1 p-1 text-fg-muted hover:text-fg text-xs transition-colors focus-visible:outline-2 focus-visible:outline-accent/70 rounded"
273273
>
274-
<span class="i-carbon:information w-3 h-3" aria-hidden="true" />
274+
<span class="i-lucide:info w-3 h-3" aria-hidden="true" />
275275
<span class="sr-only">{{
276276
$t('package.create.view', { packageName: createPackageInfo.packageName })
277277
}}</span>

app/components/UserCombobox.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ const prefersReducedMotion = useMediaQuery('(prefers-reduced-motion: reduce)')
204204
role="status"
205205
aria-live="polite"
206206
>
207-
<span class="i-carbon:information w-3 h-3 me-1 align-middle" aria-hidden="true" />
207+
<span class="i-lucide:info w-3 h-3 me-1 align-middle" aria-hidden="true" />
208208
{{
209209
$t('user.combobox.press_enter_to_add', {
210210
username: inputValue.trim().replace(/^@/, ''),

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1009,7 +1009,7 @@ const showSkeleton = shallowRef(false)
10091009
tabindex="0"
10101010
class="inline-flex items-center justify-center min-w-6 min-h-6 -m-1 p-1 text-fg-subtle cursor-help focus-visible:outline-2 focus-visible:outline-accent/70 rounded"
10111011
>
1012-
<span class="i-carbon:information w-3 h-3" aria-hidden="true" />
1012+
<span class="i-lucide:info w-3 h-3" aria-hidden="true" />
10131013
</span>
10141014
</TooltipApp>
10151015
</dt>

0 commit comments

Comments
 (0)