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

const Policies20: FC<ADSIcon>  = 
    ({fill, size = '1.25rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M12.5 1.75a.75.75 0 0 1 .53.22c.355.354 1.127.94 2.022 1.437.914.508 1.815.843 2.448.843a.75.75 0 0 1 .75.75c0 3.54-1.333 5.999-2.68 7.571a10.732 10.732 0 0 1-1.85 1.709 8.51 8.51 0 0 1-.805.516 3.11 3.11 0 0 1-.054.028l-.016.009-.006.002-.002.002c-.001 0-.002 0-.337-.67l-.336.67h-.001l-.002-.002-.006-.002-.016-.009a3.535 3.535 0 0 1-.237-.133 8.509 8.509 0 0 1-.622-.411 10.734 10.734 0 0 1-1.85-1.709C8.084 11 6.75 8.54 6.75 5a.75.75 0 0 1 .75-.75c.633 0 1.534-.335 2.448-.843.895-.497 1.667-1.083 2.022-1.437a.75.75 0 0 1 .53-.22Zm0 12.416.335.671a.75.75 0 0 1-.67 0l.335-.67Zm0-.869a7.5 7.5 0 0 0 .342-.233 9.237 9.237 0 0 0 1.589-1.469c1.068-1.246 2.149-3.162 2.3-5.926-.822-.161-1.679-.546-2.408-.951A13.273 13.273 0 0 1 12.5 3.5c-.49.395-1.135.836-1.823 1.218-.73.405-1.586.79-2.409.952.153 2.764 1.233 4.68 2.301 5.925a9.237 9.237 0 0 0 1.589 1.469c.13.093.245.17.342.233ZM1.75 2.5a.75.75 0 0 1 .75-.75h3.333a.75.75 0 1 1 0 1.5H3.25v13.5h10.167v-.5a.75.75 0 0 1 1.5 0v1.25a.75.75 0 0 1-.75.75H2.5a.75.75 0 0 1-.75-.75v-15Zm3.333 11.667a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Zm.75-4.084a.75.75 0 0 0 0 1.5h.417a.75.75 0 0 0 0-1.5h-.417Zm9.28-2.47a.75.75 0 1 0-1.06-1.06l-1.97 1.97-.72-.72a.75.75 0 0 0-1.06 1.06l1.25 1.25a.75.75 0 0 0 1.06 0l2.5-2.5Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="20" height="20" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default Policies20