@@ -23,9 +23,10 @@ import ReportItem from 'pages/Home/components/ReportItem/ReportItem';
2323import NoReportsMessage from 'pages/Home/components/NoReportsMessage/NoReportsMessage' ;
2424import { useState , useMemo , useEffect , useRef } from 'react' ;
2525import { MedicalReport } from 'common/models/medicalReport' ;
26- import { documentTextOutline } from 'ionicons/icons' ;
2726import sortSvg from 'assets/icons/sort.svg' ;
2827import filterOutlineIcon from 'assets/icons/filter-outline.svg' ;
28+ import reportsIcon from 'assets/icons/reports.svg' ;
29+ import SvgIcon from 'common/components/Icon/SvgIcon' ;
2930import FilterPanel , { CategoryOption } from './components/FilterPanel/FilterPanel' ;
3031import CategoryTag from './components/CategoryTag/CategoryTag' ;
3132import ReportsFilterEmpty from './components/ReportsFilterEmpty/ReportsFilterEmpty' ;
@@ -262,7 +263,16 @@ const ReportsListPage: React.FC = () => {
262263 } }
263264 >
264265 < div className = "reports-list-page__title-container" >
265- < IonIcon icon = { documentTextOutline } className = "reports-list-page__title-icon" />
266+ < div className = "reports-list-page__icon-wrapper" >
267+ < SvgIcon
268+ src = { reportsIcon }
269+ alt = { t ( 'list.icon' , { ns : 'report' } ) }
270+ className = "reports-list-page__title-icon"
271+ color = "#313E4C"
272+ width = { 20 }
273+ height = { 20 }
274+ />
275+ </ div >
266276 < h1 className = "reports-list-page__title" > { t ( 'list.title' , { ns : 'report' } ) } </ h1 >
267277 </ div >
268278 < div className = "reports-list-page__actions" >
0 commit comments