import React, { FC } from 'react';
import { ADSIcon } from "../../icons.types";

const PushPinOff24: FC<ADSIcon>  = 
    ({fill, size = '1.5rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M3.707 2.293a1 1 0 0 0-1.414 1.414L7.586 9H6a1 1 0 0 0-.707.293l-1 1a1 1 0 0 0 0 1.414L7.586 15l-3.293 3.293a1 1 0 1 0 1.414 1.414L9 16.414l3.293 3.293a1 1 0 0 0 1.414 0l1-1A1 1 0 0 0 15 18v-1.586l5.293 5.293a1 1 0 0 0 1.414-1.414l-18-18Zm9.41 12.238-3.648-3.648A.996.996 0 0 1 9 11H6.414l3.293 3.293L13 17.586V15c0-.17.042-.33.117-.47Zm.176-12.238a1 1 0 0 1 1.414 0l1 1 5 5 1 1a1 1 0 0 1-1.414 1.414L20 10.414l-2.293 2.293-.707.707L15.586 12l.707-.707L18.586 9 15 5.414l-2.293 2.293-.707.707L10.586 7l.707-.707L13.586 4l-.293-.293a1 1 0 0 1 0-1.414Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="24" height="24" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default PushPinOff24