Skip to content

Commit

Permalink
Changed the icons of resource list
Browse files Browse the repository at this point in the history
  • Loading branch information
vipinpaul committed Dec 7, 2023
1 parent 7f67fdb commit e39de15
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions renderer/src/components/Resources/ResourcesSideBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
import {
DocumentTextIcon,
PhotoIcon,
ChatBubbleLeftEllipsisIcon,
Square3Stack3DIcon,
MicrophoneIcon,
BookOpenIcon,
QuestionMarkCircleIcon,
ClipboardDocumentListIcon,
AcademicCapIcon,
} from '@heroicons/react/24/outline';

import React, { useState, useEffect } from 'react';
Expand Down Expand Up @@ -64,33 +66,33 @@ export default function ResourcesSidebar({
id: 'twlm',
title: t('label-resource-twl'),
resourceType: 'translationWordList',
Icon: PhotoIcon,
Icon: ClipboardDocumentListIcon,
},
{
id: 'tw',
title: t('label-resource-twlm'),
resourceType: 'translationWord',
Icon: ChatBubbleLeftEllipsisIcon,
Icon: Square3Stack3DIcon,
},
{
id: 'tq',
title: t('label-resource-tq'),
resourceType: 'translationQuestion',
Icon: BookOpenIcon,
Icon: QuestionMarkCircleIcon,
},
{
id: 'ta',
title: t('label-resource-ta'),
resourceType: 'translationAcademy',
Icon: PhotoIcon,
Icon: AcademicCapIcon,
},
],
},
{
id: 'obs',
title: t('label-resource-obs'),
resourceType: 'obsResource',
Icon: ChatBubbleLeftEllipsisIcon,
Icon: PhotoIcon,
subCategory: [
{
id: 'obs-tn',
Expand All @@ -108,7 +110,7 @@ export default function ResourcesSidebar({
id: 'obs-twlm',
title: t('label-resource-obs-twl'),
resourceType: 'obsTranslationWordList',
Icon: PhotoIcon,
Icon: ClipboardDocumentListIcon,
},
],
},
Expand Down

0 comments on commit e39de15

Please sign in to comment.