Revert "Use Folder icon from Compound."

This reverts commit f4adde627f.
This commit is contained in:
Benoit Marty 2026-04-02 09:25:30 +02:00
parent fe05c27232
commit 56f033e0ee

View file

@ -17,6 +17,7 @@ import androidx.compose.foundation.layout.size
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.lazy.items
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.outlined.Folder
import androidx.compose.material.icons.outlined.SubdirectoryArrowLeft
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.MaterialTheme
@ -111,7 +112,7 @@ private fun ItemRow(
}
is Item.Folder -> {
ListItem(
leadingContent = ListItemContent.Icon(IconSource.Vector(CompoundIcons.Folder())),
leadingContent = ListItemContent.Icon(IconSource.Vector(Icons.Outlined.Folder)),
headlineContent = {
Text(
text = item.name,