diff --git a/src/components/clinical-dashboard/document-search-results.tsx b/src/components/clinical-dashboard/document-search-results.tsx index 7ca9a2f80..cd97ee6ab 100644 --- a/src/components/clinical-dashboard/document-search-results.tsx +++ b/src/components/clinical-dashboard/document-search-results.tsx @@ -13,6 +13,7 @@ import { ListChecks, Loader2, Pill, + Route, Shield, ShieldAlert, ShieldCheck, @@ -123,7 +124,7 @@ const documentFacetIcons: Record = { Topic: Tag, Population: Users, Setting: FileText, - Service: ShieldCheck, + Service: Route, "Document type": FileText, "Clinical action": ListChecks, "Care phase": Clock3, diff --git a/src/components/clinical-dashboard/medication-record-page.tsx b/src/components/clinical-dashboard/medication-record-page.tsx index 5fc82f19f..f67297beb 100644 --- a/src/components/clinical-dashboard/medication-record-page.tsx +++ b/src/components/clinical-dashboard/medication-record-page.tsx @@ -2,6 +2,7 @@ import { Activity, + Ban, TriangleAlert, ArrowLeft, BadgeCheck, @@ -32,8 +33,8 @@ import { cn, pageContainer } from "@/components/ui-primitives"; const sectionIcons: Record = { dose: CalendarDays, - risk: ShieldCheck, - contra: ShieldCheck, + risk: TriangleAlert, + contra: Ban, safe: ShieldCheck, mon: Activity, inter: FlaskConical, diff --git a/src/lib/app-mode-icons.ts b/src/lib/app-mode-icons.ts index 72c6af298..374ef54f5 100644 --- a/src/lib/app-mode-icons.ts +++ b/src/lib/app-mode-icons.ts @@ -4,7 +4,7 @@ import { FileText, Heart, Pill, - ShieldCheck, + Route, Sparkles, Wrench, type LucideIcon, @@ -16,7 +16,7 @@ import type { AppModeId } from "@/lib/app-modes"; export const appModeIcons: Record = { answer: Sparkles, documents: FileText, - services: ShieldCheck, + services: Route, forms: FileSignature, favourites: Heart, differentials: BrainCircuit,