Skip to content

Commit af1b420

Browse files
committed
refactor: replace folder icon
1 parent d9afb50 commit af1b420

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

app/components/Code/MobileTreeDrawer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ watch(isOpen, open => (isLocked.value = open))
3232
class="md:hidden fixed bottom-4 inset-ie-4 z-45"
3333
:aria-label="$t('code.toggle_tree')"
3434
@click="isOpen = !isOpen"
35-
:classicon="isOpen ? 'i-lucide:circle-x' : 'i-carbon:folder'"
35+
:classicon="isOpen ? 'i-lucide:circle-x' : 'i-lucide:folder'"
3636
/>
3737

3838
<!-- Backdrop -->

app/utils/file-icons.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,8 +314,8 @@ export const COMPOUND_EXTENSIONS: Record<string, string> = {
314314
export const DEFAULT_ICON = 'vscode-icons-default-file'
315315

316316
export const ADDITIONAL_ICONS = {
317-
'folder': 'carbon:folder',
318-
'folder-open': 'carbon:folder-open',
317+
'folder': 'lucide:folder',
318+
'folder-open': 'lucide:folder-open',
319319
}
320320

321321
/**

0 commit comments

Comments
 (0)