Skip to content

Commit cb85061

Browse files
scott graysonscott grayson
authored andcommitted
feat: improve visual distinction with mixed icon styles
- Use solid folder icons (heroicon-s-folder) for better visibility - Use outline document icons (heroicon-o-document) for contrast - Creates clearer visual distinction between folders and files - Solid folders stand out more, outline files are lighter
1 parent ea5c5c3 commit cb85061

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Resources/LibraryItemResource.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public static function table(Table $table): Table
9393
->searchable()
9494
->sortable()
9595
->icon(fn (LibraryItem $record): string =>
96-
$record->type === 'folder' ? 'heroicon-s-folder' : 'heroicon-s-document'
96+
$record->type === 'folder' ? 'heroicon-s-folder' : 'heroicon-o-document'
9797
)
9898
->iconColor('gray')
9999
->iconPosition('before')

0 commit comments

Comments
 (0)