/**
* Patient case-file (tauri /files-services) icons, ported verbatim from
* clinic-pro-tauri/src/assets/icon so the detail page matches pixel-for-pixel.
*/
import type { CSSProperties } from 'react';
type IconProps = { color?: string; style?: CSSProperties };
/* ── Service card ─────────────────────────────────────────────────────────── */
export function FilesServiceSuccess({ style }: { style?: CSSProperties }) {
return (
);
}
export function FilesServiceMore({ style }: { style?: CSSProperties }) {
return (
);
}
/* ── Banner ───────────────────────────────────────────────────────────────── */
export function FilesServicePhone() {
return (
);
}
export function FilesServiceCalendar() {
return (
);
}
export function FilesServiceNotification() {
return (
);
}
export function FilesServiceMessage() {
return (
);
}
export function ArrowLeftPH({ style }: { style?: CSSProperties }) {
return (
);
}
export function ArrowLeftD() {
return (
);
}
/* ── Tab icons (color = active #5559ce / inactive #616161) ─────────────────── */
export function TabServices({ color = '#616161', style }: IconProps) {
return (
);
}
export function TabInfo({ color = '#616161', style }: IconProps) {
return (
);
}
export function TabCalendar({ color = '#616161', style }: IconProps) {
return (
);
}
export function TabCard({ color = '#616161', style }: IconProps) {
return (
);
}
export function TabWallet({ color = '#616161', style }: IconProps) {
return (
);
}
export function TabSMS({ color = '#616161', style }: IconProps) {
return (
);
}
export function TabCall({ color = '#616161', style }: IconProps) {
return (
);
}
export function TabAttach({ color = '#616161', style }: IconProps) {
return (
);
}
export function TabBody({ color = '#616161', style }: IconProps) {
return (
);
}