/**
* Dashboard card icons — ported 1:1 (exact SVG paths) from clinic-pro-tauri
* (`src/assets/icon/{UserAddCD,CardCD,CardTickCD,CalendarCD,ArrowDownBlueP}.jsx`)
* to keep the ported dashboard pixel-identical. Plain SVG, no icon library.
*/
import React from 'react';
const S = {
className: 'w-full h-full',
xmlns: 'http://www.w3.org/2000/svg',
fill: 'none',
} as const;
/** مراجعین — total patients card */
export function UserAddIcon() {
return (
);
}
/** کل پرداختیها — total payments card */
export function CardIcon() {
return (
);
}
/** پرداختیهای امروز — today payments card */
export function CardTickIcon() {
return (
);
}
/** تعداد نوبتهای امروز — today appointments card */
export function CalendarIcon() {
return (
);
}
/** فلش رو به پایین — status chip chevron (source: ArrowDownBlueP) */
export function ChevronDownIcon({ color = '#5559CE' }: { color?: string }) {
return (
);
}