Skip to content

Commit e020042

Browse files
committed
chore: use simple icons
1 parent b96ad72 commit e020042

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

app/utils/install-command.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,29 @@ export const packageManagers = [
77
label: 'npm',
88
action: 'install',
99
execute: 'npx',
10-
icon: 'i-vscode-icons:file-type-npm',
10+
icon: 'i-simple-icons:npm',
1111
},
1212
{
1313
id: 'pnpm',
1414
label: 'pnpm',
1515
action: 'add',
1616
execute: 'pnpm dlx',
17-
icon: 'i-vscode-icons:file-type-light-pnpm',
17+
icon: 'i-simple-icons:pnpm',
1818
},
1919
{
2020
id: 'yarn',
2121
label: 'yarn',
2222
action: 'add',
2323
execute: 'yarn dlx',
24-
icon: 'i-vscode-icons:file-type-yarn',
24+
icon: 'i-simple-icons:yarn',
2525
},
26-
{ id: 'bun', label: 'bun', action: 'add', execute: 'bunx', icon: 'i-vscode-icons:file-type-bun' },
26+
{ id: 'bun', label: 'bun', action: 'add', execute: 'bunx', icon: 'i-simple-icons:bun' },
2727
{
2828
id: 'deno',
2929
label: 'deno',
3030
action: 'add',
3131
execute: 'deno run',
32-
icon: 'i-vscode-icons:file-type-light-deno',
32+
icon: 'i-simple-icons:deno',
3333
},
3434
{ id: 'vlt', label: 'vlt', action: 'install', execute: 'vlt x', icon: 'i-custom-vlt' },
3535
] as const

0 commit comments

Comments
 (0)