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

const PushPin32: FC<ADSIcon>  = 
    ({fill, size = '2rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M19.374 3.293a1 1 0 0 0-1.414 1.414l.626.626-7 7H8a1 1 0 0 0-.707.293L5.96 13.96a1 1 0 0 0 0 1.414L10.586 20 5.96 24.626a1 1 0 1 0 1.414 1.414L12 21.414l4.626 4.626a1 1 0 0 0 1.415 0l1.333-1.333a1 1 0 0 0 .293-.707v-3.586l7-7 .626.626a1 1 0 1 0 1.414-1.414l-1.333-1.333-6.667-6.667-1.333-1.333Zm-6.666 16 4.625 4.626.334-.333V20a1 1 0 0 1 .293-.707L25.253 12 20 6.748l-7.293 7.292a1 1 0 0 1-.707.293H8.414l-.333.334 4.625 4.625h.001l.001.002Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="32" height="32" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default PushPin32