import type { SVGProps } from "react"; export interface HospitalIconProps extends Omit, "width" | "height"> { className?: string; size?: number; color?: string; } export function HospitalIcon({ className = "", size = 24, color = "currentColor", ...props }: HospitalIconProps) { return ( ); }