/**
* Toolbar icons ported verbatim from clinic-pro-tauri `src/assets/icon` so the
* پروندهها header matches the tauri /files page pixel-for-pixel.
*/
export function SearchHeaderP({ color = '#7E7E7E' }: { color?: string }) {
return (
);
}
export function TurnsFilter({ color = '#616161' }: { color?: string }) {
return (
);
}
/** Table-view toggle icon (tauri `PatientsGridView`). */
export function PatientsGridView({ width = 24, height = 24, color = '#5559CE' }: { width?: number; height?: number; color?: string }) {
return (
);
}
/** Card-view toggle icon (tauri `PatientsCategoryView`). */
export function PatientsCategoryView({ width = 24, height = 24, color = '#616161' }: { width?: number; height?: number; color?: string }) {
return (
);
}
export function AddTurn({ color = '#E1E1E1' }: { color?: string }) {
return (
);
}