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

const PushPin48: FC<ADSIcon>  = 
    ({fill, size = '3rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
  <path fill-rule="evenodd" d="M29.06 4.94a1.5 1.5 0 0 0-2.12 2.12l.939.94-10.5 10.5H12a1.5 1.5 0 0 0-1.06.44l-2 2a1.5 1.5 0 0 0 0 2.12L15.878 30l-6.94 6.94a1.5 1.5 0 0 0 2.122 2.12L18 32.122l6.94 6.94a1.5 1.5 0 0 0 2.12 0l2-2A1.5 1.5 0 0 0 29.5 36v-5.379l10.5-10.5.94.94a1.5 1.5 0 0 0 2.12-2.122l-2-2-10-10-2-2Zm-9.999 24L26 35.879l.5-.5V30c0-.398.158-.78.44-1.06L37.878 18 30 10.121l-10.94 10.94A1.5 1.5 0 0 1 18 21.5h-5.379l-.5.5 6.94 6.939Z"/>
</svg>
)
export default PushPin48