import React from "react";

const IconParkSolidHospitalThreeIcon = (
  props: React.ComponentPropsWithoutRef<"svg">,
) => {
  return (
    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" {...props}>
      <defs>
        <mask id="SVGekCfQbmp">
          <g fill="none">
            <path
              fill="#fff"
              stroke="#fff"
              strokeLinejoin="round"
              strokeWidth={4}
              d="M11 26v18h26V26L24 13z"
            />
            <path
              fill="#fff"
              d="M3.586 21.586a2 2 0 1 0 2.828 2.828zM24 4l1.414-1.414a2 2 0 0 0-2.828 0zm17.586 20.414a2 2 0 1 0 2.828-2.828zm-35.172 0l19-19l-2.828-2.828l-19 19zm16.172-19l19 19l2.828-2.828l-19-19z"
            />
            <path
              stroke="#000"
              strokeLinecap="round"
              strokeLinejoin="round"
              strokeWidth={4}
              d="M19 31h10m-5-5v10"
            />
          </g>
        </mask>
      </defs>
      <path fill="currentColor" d="M0 0h48v48H0z" mask="url(#SVGekCfQbmp)" />
    </svg>
  );
};

export default IconParkSolidHospitalThreeIcon;
