Skip to content

Commit

Permalink
Merge branch 'issues/9272/view-live-consultation-btn' of https://gith…
Browse files Browse the repository at this point in the history
…ub.com/JavidSumra/care_fe into issues/9272/view-live-consultation-btn
  • Loading branch information
JavidSumra committed Dec 5, 2024
2 parents aa4d41b + a2c8a1e commit 85dee90
Show file tree
Hide file tree
Showing 15 changed files with 144 additions and 34 deletions.
2 changes: 1 addition & 1 deletion cypress/pageobject/Patient/PatientLogupdate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class PatientLogupdate {
}

clickUpdateDetail() {
cy.verifyAndClickElement("#consultation-preview", "Update Details");
cy.verifyAndClickElement("#consultation-preview", "Update Log");
cy.wait(3000);
}

Expand Down
19 changes: 17 additions & 2 deletions src/CAREUI/icons/CareIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import duoToneIconData from "@/CAREUI/icons/DuoTonePaths.json";
import iconData from "@/CAREUI/icons/UniconPaths.json";
import "@/CAREUI/icons/icon.css";

export type IconName = keyof typeof iconData;
export type IconName = keyof typeof iconData | keyof typeof duoToneIconData;

export interface CareIconProps {
icon: IconName;
Expand All @@ -26,11 +27,16 @@ export default function CareIcon({
}: CareIconProps) {
// TODO: fill & strokeWidth are defined for only one icon
// Rethink Implementation
const [viewBox, path, fill, strokeWidth] = iconData[icon] as [

const [viewBox, path, fill, strokeWidth, secondaryPath] = (
(icon.startsWith("d-") ? duoToneIconData : iconData) as typeof iconData &
typeof duoToneIconData
)[icon] as [
number,
string,
boolean | undefined,
number | undefined,
string | undefined,
];

const svgClassName = `care-svg-icon__baseline ${className || ""}`.trim();
Expand All @@ -50,6 +56,15 @@ export default function CareIcon({
stroke={fill === false ? "currentColor" : undefined}
strokeWidth={fill === false ? strokeWidth : undefined}
/>
{secondaryPath && (
<path
d={secondaryPath}
fill={fill === false ? "none" : "currentColor"}
stroke={fill === false ? "currentColor" : undefined}
strokeWidth={fill === false ? strokeWidth : undefined}
opacity={0.32}
/>
)}
</svg>
);
}
72 changes: 72 additions & 0 deletions src/CAREUI/icons/DuoTonePaths.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
{
"d-people": [
24,
"M14.6,10.9c.7.7,1.66,1.1,2.65,1.1s1.95-.4,2.65-1.1c.7-.7,1.1-1.66,1.1-2.65s-.4-1.95-1.1-2.65c-.7-.7-1.66-1.1-2.65-1.1s-1.95.4-2.65,1.1c-.7.7-1.1,1.66-1.1,2.65s.4,1.95,1.1,2.65ZM16.5,19.5c0,.52-.1,1.03-.32,1.5h6.32s1.5,0,1.5-1.5-1.5-6-7.5-6c-.98-.01-1.96.13-2.9.42,1.88,1.45,2.9,3.55,2.9,5.58Z",
true,
null,
"M13.5,21s1.5,0,1.5-1.5-1.5-6-7.5-6S0,18,0,19.5s1.5,1.5,1.5,1.5h12ZM7.5,12c-1.19,0-2.34-.47-3.18-1.32-.84-.84-1.32-1.99-1.32-3.18s.47-2.34,1.32-3.18c.84-.84,1.99-1.32,3.18-1.32s2.34.47,3.18,1.32c.84.84,1.32,1.99,1.32,3.18s-.47,2.34-1.32,3.18c-.84.84-1.99,1.32-3.18,1.32Z"
],
"d-bell": [
24,
"M13.62,22.62c-.56.56-1.33.88-2.12.88s-1.56-.32-2.12-.88c-.56-.56-.88-1.33-.88-2.12h6c0,.8-.32,1.56-.88,2.12Z",
true,
null,
"M12.99,1.65c.02-.21,0-.42-.07-.62-.07-.2-.17-.38-.31-.54-.14-.16-.31-.28-.5-.36-.19-.09-.4-.13-.61-.13s-.42.04-.61.13c-.19.09-.36.21-.5.36-.14.16-.25.34-.31.54-.07.2-.09.41-.07.62-1.7.34-3.22,1.26-4.32,2.6-1.09,1.34-1.69,3.02-1.69,4.75,0,1.65-.75,9-3,10.5h21c-2.25-1.5-3-8.85-3-10.5,0-3.63-2.58-6.66-6.01-7.35Z"
],
"d-book-open": [
24,
"M11.75,3.02c1.57-.95,2.95-1.46,4.45-1.73,1.55-.27,3.12-.29,4.7-.29.56,0,.84,0,1.06.11.19.1.34.25.44.44.11.21.11.5.11,1.06v8.96c0,1.59,0,2.39-.29,3-.27.57-.63.97-1.18,1.29-.58.35-1.5.43-3.33.6-.42.04-.83.09-1.24.16-1.73.3-3.25,1.09-4.71,2.03V3.02ZM2.75,18.51c-.41,0-.75.34-.75.75s.34.75.75.75c1.97,0,3.4.12,4.68.47,1.27.35,2.45.93,3.91,1.9.25.17.58.17.83,0,1.46-.97,2.63-1.55,3.91-1.9,1.28-.35,2.7-.47,4.68-.47.41,0,.75-.34.75-.75s-.34-.75-.75-.75c-2.03,0-3.6.13-5.07.53-1.34.37-2.56.95-3.93,1.83-1.37-.88-2.59-1.46-3.93-1.83-1.47-.4-3.05-.53-5.07-.53Z",
true,
null,
"M11.75,3.02c-1.57-.95-2.95-1.46-4.45-1.73-1.55-.27-3.12-.29-4.7-.29-.56,0-.84,0-1.06.11-.19.1-.34.25-.44.44-.11.21-.11.5-.11,1.06v8.96c0,1.59,0,2.39.29,3,.27.57.63.97,1.18,1.29.58.35,1.5.43,3.33.6.42.04.83.09,1.24.16,1.73.3,3.25,1.09,4.71,2.03V3.02Z"
],
"d-patient": [
24,
"M12.5,9.66c2.67,0,4.83-2.16,4.83-4.83S15.17,0,12.5,0s-4.83,2.16-4.83,4.83,2.16,4.83,4.83,4.83Z",
true,
null,
"M19.48,12.64c-.26-.26-.55-.5-.86-.69-.26-.17-.53-.31-.82-.43l-1.61,11.62h-4.15l4.07-12.01c-.1,0-.2,0-.31,0h-6.61c-1.39,0-2.69.54-3.67,1.52-.98.98-1.52,2.29-1.52,3.67v4.51c0,1.27,1.04,2.31,2.31,2.31h4.82l-.1.29c-.05.13-.02.28.06.39.08.11.21.18.35.18h5.13c.22,0,.4-.16.43-.37l.07-.49v-.06c1.04-.23,1.81-1.15,1.81-2.25,0-.86-.47-1.63-1.21-2.03l.12-.9c1.18.49,1.95,1.64,1.95,2.93,0,.91-.38,1.73-1,2.31h2.25v-6.82c0-1.39-.54-2.69-1.52-3.67h0ZM7.67,18.52c-.24,0-.43-.19-.43-.43v-1.77c0-.24.19-.43.43-.43s.43.19.43.43v1.34h4.89l-.29.87h-5.02Z"
],
"d-calendar": [
24,
"M7,2c.55,0,1,.45,1,1v1h7v-1c0-.55.45-1,1-1s1,.45,1,1v1h2.5c1.38,0,2.5,1.12,2.5,2.5v2.5H1v-2.5c0-1.38,1.12-2.5,2.5-2.5h2.5v-1c0-.55.45-1,1-1ZM5,13c-.55,0-1,.45-1,1s.45,1,1,1h.01c.55,0,1-.45,1-1s-.45-1-1-1h-.01ZM5,17c-.55,0-1,.45-1,1s.45,1,1,1h.01c.55,0,1-.45,1-1s-.45-1-1-1h-.01ZM9,14c0-.55.45-1,1-1h.01c.55,0,1,.45,1,1s-.45,1-1,1h-.01c-.55,0-1-.45-1-1ZM10,17c-.55,0-1,.45-1,1s.45,1,1,1h.01c.55,0,1-.45,1-1s-.45-1-1-1h-.01ZM14,14c0-.55.45-1,1-1h.01c.55,0,1,.45,1,1s-.45,1-1,1h-.01c-.55,0-1-.45-1-1Z",
true,
null,
"M1,20v-11h21v11c0,1.66-1.34,3-3,3H4c-1.66,0-3-1.34-3-3Z"
],
"d-folder": [
24,
"M2,10v-5c0-1.66,1.34-3,3-3h4.31c.62,0,1.2.29,1.58.78l1.81,2.34c.19.24.48.39.79.39h6.51c1.1,0,2,.9,2,2v2.5c0,1.1-.9,2-2,2H4c-1.1,0-2-.9-2-2Z",
true,
null,
"M2.24,19.04l-.2-14c-.02-1.67,1.33-3.04,3-3.04h4.23c.61,0,1.19.28,1.57.76l1.88,2.38c.18.22.44.36.73.38l6.46.37c1.05.06,1.87.92,1.89,1.97l.16,11.1c.02,1.67-1.33,3.04-3,3.04H5.24c-1.64,0-2.98-1.32-3-2.96Z"
],
"d-ambulance": [
24,
"M15.44,7.06c0-.25.1-.49.28-.66.18-.18.42-.28.66-.28s.49.1.66.28c.18.18.28.42.28.66v.95h-1.89v-.95ZM19.41,9.05l1.29,2.53,1.91,1.02c.32.17.59.44.79.75.18.31.3.68.3,1.05v.23h0c.08,0,.16.03.23.08.06.06.08.14.08.23v1.47c0,.08-.03.16-.1.23-.06.06-.14.08-.23.08h0v.04c0,.07-.01.14-.04.21s-.07.13-.13.18-.11.1-.18.13-.14.04-.21.04h-2.22c-.01-.66-.3-1.3-.78-1.77s-1.12-.72-1.78-.72-1.31.25-1.78.72c-.48.47-.76,1.1-.78,1.77h-1.26v-8.96h3.73c.24,0,.47.07.66.18.2.13.37.3.47.51h.03ZM15.75,13.09h1.24s.11-.03.14-.06c.04-.04.06-.08.06-.14s-.03-.11-.06-.14c-.04-.04-.08-.06-.14-.06h-1.24s-.11.03-.14.06c-.04.04-.06.08-.06.14s.03.11.06.14c.04.04.08.06.14.06ZM15.54,9.25v2.83h4.31l-1.31-2.47c-.06-.11-.14-.2-.24-.25s-.23-.1-.34-.1h-2.42ZM5.31,15.38c-1.12,0-2.03.91-2.03,2.03s.91,2.03,2.03,2.03,2.03-.91,2.03-2.03-.91-2.03-2.03-2.03ZM5.31,18.23c-.45,0-.82-.37-.82-.82s.37-.82.82-.82.82.37.82.82-.37.82-.82.82ZM18.39,15.38c-1.12,0-2.03.91-2.03,2.03s.91,2.03,2.03,2.03,2.03-.91,2.03-2.03-.91-2.03-2.03-2.03ZM18.39,18.23c-.45,0-.82-.37-.82-.82s.37-.82.82-.82.82.37.82.82-.37.82-.82.82Z",
true,
null,
"M.34,14.62V5.91c0-.1.01-.2.06-.28s.1-.17.17-.24.16-.13.24-.17.18-.06.28-.06h2.09c0-.16.07-.3.17-.41.11-.11.25-.17.41-.17h6.36c.16,0,.3.06.41.17s.17.25.17.41h2.5c.2,0,.4.08.54.23s.23.34.23.54v11.4h-6.09c-.01-.66-.3-1.3-.78-1.77s-1.12-.72-1.78-.72-1.31.25-1.78.72c-.48.47-.76,1.1-.78,1.77h-1.67c-.17,0-.34-.06-.48-.17s-.23-.25-.27-.42h-.03c-.08,0-.16-.03-.23-.08-.06-.06-.08-.14-.08-.23v-1.47c0-.08.03-.16.08-.23.06-.06.23-.08.23-.08l.03-.03ZM5.27,11.4h1.33v1.33h1.45v-1.33h1.33v-1.45h-1.33v-1.33h-1.45v1.33h-1.33v1.45Z"
],
"d-microscope": [
24,
"M2.9,5.43c-.21-.21-.21-.55,0-.76l3.29-3.29c.21-.21.55-.21.76,0l6.07,6.07c.21.21.21.55,0,.76l-3.29,3.29c-.21.21-.55.21-.76,0L2.9,5.43ZM4.97,22.33c0-.3.24-.54.54-.54h10.55c.3,0,.54.24.54.54v1.13c0,.3-.24.54-.54.54H5.5c-.3,0-.54-.24-.54-.54v-1.13ZM15.29,15.68c-.3,0-.54.24-.54.54v.76c0,.3.24.54.54.54h6.88c.3,0,.54-.24.54-.54v-.76c0-.3-.24-.54-.54-.54h-6.88Z",
true,
null,
"M1.67,2.43c-.21.21-.21.55,0,.76l1.35,1.35,3.03-3.03L4.7.16c-.21-.21-.55-.21-.76,0L1.67,2.43ZM19.55,17.52c-.71,1.07-1.67,1.99-2.82,2.71-1.15.71-2.47,1.2-3.86,1.43-1.39.23-2.82.19-4.19-.12s-2.65-.86-3.75-1.64c-1.1-.78-1.99-1.75-2.62-2.86-.63-1.11-.97-2.32-1.01-3.56-.04-1.24.22-2.46.78-3.6.55-1.14,1.38-2.16,2.43-2.99l1.55,1.5c-.8.63-1.43,1.41-1.85,2.28-.42.87-.63,1.81-.59,2.75.03.94.3,1.87.77,2.72.48.85,1.16,1.59,2,2.18.84.59,1.82,1.02,2.86,1.25,1.05.23,2.14.26,3.2.09,1.06-.17,2.07-.54,2.95-1.09.88-.54,1.62-1.25,2.16-2.07l2,1.01ZM9.86,11.37l3.03-3.03,1.35,1.35c.21.21.21.55,0,.76l-2.27,2.27c-.21.21-.55.21-.76,0l-1.35-1.35Z"
],
"d-notice-board": [
24,
"M.97,16.66c-.19,0-.38.08-.52.22-.14.14-.22.32-.22.52s.08.38.22.52c.14.14.32.22.52.22h4.21l-1.24,4.97c-.04.19,0,.38.09.55.1.16.26.28.45.33.19.05.38.02.55-.08.17-.1.29-.25.34-.44l.6-2.38h12.09l.6,2.38c.05.19.17.34.34.44.17.1.36.13.55.08.19-.05.35-.16.45-.33.1-.16.13-.36.09-.55l-1.24-4.97h4.21c.19,0,.38-.08.52-.22s.22-.32.22-.52-.08-.38-.22-.52-.32-.22-.52-.22H.97ZM6.32,19.61l.37-1.47h10.62l.37,1.47H6.32Z",
true,
null,
"M12.66.41c-.06-.12-.15-.22-.27-.3-.12-.07-.25-.11-.39-.11s-.27.04-.39.11c-.12.07-.21.17-.27.3l-.53,1.06H3.91c-.58,0-1.15.23-1.56.65s-.65.97-.65,1.56v11.03h20.59V3.68c0-.58-.23-1.15-.65-1.56-.41-.41-.97-.65-1.56-.65h-6.9l-.53-1.06Z"
],
"d-hospital": [
24,
"M12.7,10.42h1.15v1.41h-1.15v1.15h-1.41v-1.15h-1.15v-1.41h1.15v-1.15h1.41v1.15ZM6.24,10.74v10.61c0,.29-.24.53-.53.53H1.03c-.29,0-.53-.24-.53-.53v-10.61c0-.29.24-.53.53-.53h4.68c.29,0,.53.24.53.53ZM4.96,14.98c0-.29-.24-.53-.53-.53h-2.12c-.29,0-.53.24-.53.53v2.12c0,.29.24.53.53.53h2.12c.29,0,.53-.24.53-.53v-2.12ZM23.5,10.74v10.61c0,.29-.24.53-.53.53h-4.68c-.29,0-.53-.24-.53-.53v-10.61c0-.29.24-.53.53-.53h4.68c.29,0,.53.24.53.53ZM22.22,14.98c0-.29-.24-.53-.53-.53h-2.12c-.29,0-.53.24-.53.53v2.12c0,.29.24.53.53.53h2.12c.29,0,.53-.24.53-.53v-2.12Z",
true,
null,
"M7.3,6.9v14.45c0,.29.24.53.53.53h1.5c.29,0,.53-.24.53-.53v-4.88h4.28v4.88c0,.29.24.53.53.53h1.5c.29,0,.53-.24.53-.53v-11.5s0-2.94,0-2.94c0-.29-.24-.53-.53-.53H7.83c-.29,0-.53.24-.53.53ZM12.02,13.94c-1.54,0-2.82-1.24-2.82-2.82s1.24-2.82,2.82-2.82,2.82,1.24,2.82,2.82-1.28,2.82-2.82,2.82ZM17.3,5.31H6.74c-.31,0-.56-.25-.56-.56v-2.07c0-.31.25-.56.56-.56h10.56c.31,0,.56.25.56.56v2.07c0,.31-.25.56-.56.56Z"
]
}
2 changes: 1 addition & 1 deletion src/components/Assets/AssetsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ const AssetsList = () => {
text="Total Assets"
count={totalCount}
loading={loading}
icon="l-monitor-heart-rate"
icon="d-folder"
className="flex-1"
/>
<div className="flex-1">
Expand Down
16 changes: 8 additions & 8 deletions src/components/Common/Sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ const StatelessSidebar = ({
}: StatelessSidebarProps) => {
const { t } = useTranslation();
const BaseNavItems: INavItem[] = [
{ text: t("facilities"), to: "/facility", icon: "l-hospital" },
{ text: t("patients"), to: "/patients", icon: "l-user-injured" },
{ text: t("assets"), to: "/assets", icon: "l-shopping-cart-alt" },
{ text: t("sample_test"), to: "/sample", icon: "l-medkit" },
{ text: t("shifting"), to: "/shifting", icon: "l-ambulance" },
{ text: t("resource"), to: "/resource", icon: "l-heart-medical" },
{ text: t("users"), to: "/users", icon: "l-users-alt" },
{ text: t("notice_board"), to: "/notice_board", icon: "l-meeting-board" },
{ text: t("facilities"), to: "/facility", icon: "d-hospital" },
{ text: t("patients"), to: "/patients", icon: "d-patient" },
{ text: t("assets"), to: "/assets", icon: "d-folder" },
{ text: t("sample_test"), to: "/sample", icon: "d-microscope" },
{ text: t("shifting"), to: "/shifting", icon: "d-ambulance" },
{ text: t("resource"), to: "/resource", icon: "d-book-open" },
{ text: t("users"), to: "/users", icon: "d-people" },
{ text: t("notice_board"), to: "/notice_board", icon: "d-notice-board" },
];

const PluginNavItems = useCareAppNavItems();
Expand Down
2 changes: 1 addition & 1 deletion src/components/Facility/DischargedPatientsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ const DischargedPatientsList = ({
text="Discharged Patients"
count={count}
loading={facilityQuery.loading}
icon="l-user-injured"
icon="d-patient"
className="pb-12"
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Facility/FacilityList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ export const FacilityList = () => {
text="Total Facilities"
count={permittedData ? permittedData.count : 0}
loading={isLoading}
icon="l-hospital"
icon="d-hospital"
className="flex-1"
/>
<div className="my-4 flex grow flex-col justify-between gap-2 sm:flex-row">
Expand Down
2 changes: 1 addition & 1 deletion src/components/Facility/FacilityUsers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ export default function FacilityUsers(props: any) {
text={t("total_users")}
count={facilityUserData.count}
loading={isLoading}
icon="l-user-injured"
icon="d-people"
className="flex-1"
/>
)}
Expand Down
32 changes: 24 additions & 8 deletions src/components/LogUpdate/CriticalCarePreview.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
import { Link } from "raviger";
import React, { useEffect } from "react";
import { useTranslation } from "react-i18next";

import Card from "@/CAREUI/display/Card";
import CareIcon from "@/CAREUI/icons/CareIcon";

import { Button } from "@/components/ui/button";

import { meanArterialPressure } from "@/components/Common/BloodPressureFormField";
import ButtonV2 from "@/components/Common/ButtonV2";
import Loading from "@/components/Common/Loading";
import { ABGAnalysisFields } from "@/components/LogUpdate/Sections/ABGAnalysis";
import { IOBalanceSections } from "@/components/LogUpdate/Sections/IOBalance";
Expand Down Expand Up @@ -49,14 +52,27 @@ export default function CriticalCarePreview(props: Props) {

return (
<div className="w-full transition-all duration-200 ease-in-out md:mx-auto md:max-w-5xl md:pt-8">
<div className="py-4">
<ButtonV2
id="back-to-consultation"
variant="secondary"
href={`/facility/${props.facilityId}/patient/${props.patientId}/consultation/${props.consultationId}`}
<div className="py-4 flex items-center justify-between max-md:flex-col max-md:items-start">
<Button id="back-to-consultation" variant="outline" asChild>
<Link
href={`/facility/${props.facilityId}/patient/${props.patientId}/consultation/${props.consultationId}`}
>
{t("back_to_consultation")}
</Link>
</Button>
<Button
asChild
id="update-log"
variant="outline_primary"
aria-label={t("update_log")}
>
{t("back_to_consultation")}
</ButtonV2>
<Link
href={`/facility/${props.facilityId}/patient/${props.patientId}/consultation/${props.consultationId}/log_updates/${props.id}/update`}
>
<CareIcon icon="l-edit-alt" className="mr-2 text-lg" />
{t("update_log")}
</Link>
</Button>
</div>

<Card className="md:rounded-xl lg:p-8">
Expand Down
2 changes: 1 addition & 1 deletion src/components/Notifications/NotificationsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ export default function NotificationsList({
text={t("Notifications")}
id="notification-slide-btn"
do={() => setOpen(!open)}
icon={<CareIcon icon="l-bell" className="h-5" />}
icon={<CareIcon icon="d-bell" className="h-5" />}
badgeCount={unreadCount}
handleOverflow={handleOverflow}
/>
Expand Down
19 changes: 13 additions & 6 deletions src/components/Patient/DailyRoundListDetails.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import { Link } from "raviger";
import { useState } from "react";
import { useTranslation } from "react-i18next";

import ButtonV2 from "@/components/Common/ButtonV2";
import CareIcon from "@/CAREUI/icons/CareIcon";

import { Button } from "@/components/ui/button";

import Loading from "@/components/Common/Loading";
import Page from "@/components/Common/Page";
import { DailyRoundsModel } from "@/components/Patient/models";
Expand Down Expand Up @@ -50,11 +54,14 @@ export const DailyRoundListDetails = (props: any) => {

<div>
<div className="mt-2">
<ButtonV2
href={`/facility/${facilityId}/patient/${patientId}/consultation/${consultationId}/log_updates/${id}/update`}
>
Update Details
</ButtonV2>
<Button asChild variant="outline_primary">
<Link
href={`/facility/${facilityId}/patient/${patientId}/consultation/${consultationId}/log_updates/${id}/update`}
>
<CareIcon icon="l-edit-alt" className="mr-2 text-lg" />
{t("update_log")}
</Link>
</Button>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Patient/ManagePatients.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -980,7 +980,7 @@ export const PatientManager = () => {
text="Total Patients"
count={data?.count || 0}
loading={isLoading}
icon="l-user-injured"
icon="d-patient"
className="pb-12"
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Patient/SampleViewAdmin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ export default function SampleViewAdmin() {
text="Total Samples Taken"
count={sampeleData?.count || 0}
loading={isLoading}
icon="l-thermometer"
icon="d-microscope"
className="flex-1"
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Users/ManageUsers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ export default function ManageUsers() {
text="Total Users"
count={userListData?.count || 0}
loading={userListLoading || districtDataLoading}
icon="l-user-injured"
icon="d-people"
className="flex-1"
/>
<div className="col-span-2 my-2 flex flex-col justify-between space-y-3 lg:flex-row lg:space-x-4 lg:space-y-0 lg:px-3">
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const buttonVariants = cva(
destructive:
"bg-red-500 text-gray-50 shadow-sm hover:bg-red-500/90 dark:bg-red-900 dark:text-gray-50 dark:hover:bg-red-900/90",
outline:
"border border-gray-200 bg-white shadow-sm hover:bg-gray-100 hover:text-gray-900 dark:border-gray-800 dark:bg-gray-950 dark:hover:bg-gray-800 dark:hover:text-gray-50",
"border border-gray-200 text-gray-900 bg-white shadow-sm hover:bg-gray-100 hover:text-gray-900 dark:border-gray-800 dark:bg-gray-950 dark:hover:bg-gray-800 dark:hover:text-gray-50",
primary:
"bg-primary-700 text-white shadow hover:bg-primary-700/90 dark:bg-primary-100 dark:text-primary-900 dark:hover:bg-primary-100/90",
secondary:
Expand Down

0 comments on commit 85dee90

Please sign in to comment.