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

const ChevronDown20: 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 16 16">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M4.136 5.803a.75.75 0 0 1 1.061 0L8 8.606l2.803-2.803a.75.75 0 0 1 1.06 1.06L8.53 10.198a.75.75 0 0 1-1.06 0L4.136 6.864a.75.75 0 0 1 0-1.06Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="16" height="16" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default ChevronDown20