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

const Search24: 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="M8 11a5 5 0 1 1 10 0 5 5 0 0 1-10 0Zm5-7a7 7 0 0 0-5.606 11.192l-3.101 3.1a1 1 0 1 0 1.414 1.415l3.1-3.1A7 7 0 1 0 13 4Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="24" height="24" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default Search24