Changed archived Album icon color to secondary

This commit is contained in:
Ananddubey01 2023-01-12 11:32:20 +05:30
parent b7d8fc6301
commit 9d8e820f2e

View file

@ -51,7 +51,7 @@ function CollectionCardIcon({ collectionType }) {
<CollectionBarTileIcon> <CollectionBarTileIcon>
{collectionType === CollectionSummaryType.favorites && <Favorite />} {collectionType === CollectionSummaryType.favorites && <Favorite />}
{collectionType === CollectionSummaryType.archived && ( {collectionType === CollectionSummaryType.archived && (
<ArchiveOutlined /> <ArchiveOutlined color="secondary" />
)} )}
{collectionType === CollectionSummaryType.shared && <PeopleIcon />} {collectionType === CollectionSummaryType.shared && <PeopleIcon />}
</CollectionBarTileIcon> </CollectionBarTileIcon>