import { forwardRef } from "react";
import type { IconProps } from "../../types";

export const IconMapBicolorSolid = forwardRef<SVGSVGElement, IconProps>(
  ({ color = "currentColor", ...props }, forwardedRef) => {
    const { className } = props;
    props = {
      ...props,
      width: `${props.width || props.size || 20}`,
      height: `${props.height || props.size || 20}`,
      className: `${
        className ? className + " " : ""
      }customeow-icon customeow-icon-icon-map-bicolor-solid`,
    };
    return (
      <svg
        viewBox="0 0 20 20"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
        {...props}
        ref={forwardedRef}
      >
        <path
          d="M13.3 16.895 17.3304 15.4844C17.7314 15.344 18 14.9655 18 14.5406V4.40953C18 3.72068 17.3198 3.23811 16.6697 3.46567L13.3026 4.64414 13.3 4.64503V16.895ZM2.66965 4.51567 6.6001 3.14001V15.5466L3.30128 16.5889C2.65673 16.7925 2 16.3113 2 15.6354V5.45953C2 5.03459 2.26856 4.65605 2.66965 4.51567Z"
          fill={color}
        />
        <path
          opacity=".4"
          d="M12.3 4.54587L7.6001 3.17505V15.5782L12.3 16.8157V4.54587Z"
          fill={color}
        />
      </svg>
    );
  }
);

IconMapBicolorSolid.displayName = "IconMapBicolorSolid";

export default IconMapBicolorSolid;
