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

const PushPin64: FC<ADSIcon>  = 
    ({fill, size = '4rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
  <path fill-rule="evenodd" d="M38.394 6.94a1.5 1.5 0 1 0-2.121 2.12l1.606 1.607-14.5 14.5h-7.38a1.5 1.5 0 0 0-1.06.439l-2.666 2.667a1.5 1.5 0 0 0 0 2.121L21.879 40l-9.606 9.606a1.5 1.5 0 1 0 2.12 2.121L24 42.121l9.606 9.606a1.5 1.5 0 0 0 2.121 0l2.667-2.666a1.5 1.5 0 0 0 .44-1.061v-7.379l14.5-14.5 1.605 1.606a1.5 1.5 0 1 0 2.122-2.121l-2.667-2.667L41.06 9.606l-2.667-2.667Zm-13.331 32 9.604 9.604 1.166-1.166V40c0-.398.158-.78.44-1.06L51.212 24 40 12.788l-14.94 14.94a1.5 1.5 0 0 1-1.06.439h-7.38l-1.166 1.166 9.604 9.604c0 .001 0 .002.002.002 0 .001 0 .002.002.002Z"/>
</svg>
)
export default PushPin64