[fix] i love lucide

This commit is contained in:
Arjan Singh
2025-09-16 12:29:02 -07:00
committed by Arjan Singh
parent 8165ec3bf1
commit e8bc61475b
5 changed files with 20 additions and 15 deletions

View File

@@ -100,13 +100,13 @@ export function useAssetBrowser(assets: AssetItem[] = []) {
})
return [
{ id: 'all', label: 'All Models', icon: 'i-lucide:folder' },
{ id: 'all', label: 'All Models', icon: 'icon-[lucide--folder]' },
...Array.from(categorySet)
.sort()
.map((category) => ({
id: category,
label: category.charAt(0).toUpperCase() + category.slice(1),
icon: 'i-lucide:package'
icon: 'icon-[lucide--package]'
}))
]
})