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

const ThumbDown48: 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="M19.641 39.883a2.368 2.368 0 0 1-3.859-2.7l3.567-6.42a1.5 1.5 0 0 0-1.294-2.258H7.527a.5.5 0 0 1-.488-.606l2.476-11.555.182-.733v-.001c.163-.66.293-1.184.433-1.645.184-.61.346-.962.52-1.206.284-.399.79-.788 2.591-1.254h11.57l4.742 1.58v15.36L19.64 39.883Zm11.24-8.389-8.973 10.354a5.368 5.368 0 0 1-8.748-6.122l2.345-4.222H7.528a3.5 3.5 0 0 1-3.422-4.233L6.588 15.69a1.434 1.434 0 0 1 .012-.052l.17-.681v-.001c.17-.686.326-1.32.49-1.86.221-.732.497-1.444.947-2.077.958-1.345 2.429-1.956 4.484-2.47a1.5 1.5 0 0 1 .363-.044h12a1.5 1.5 0 0 1 .475.077l4.028 1.342a1.5 1.5 0 0 1 1.497-1.42h7a1.5 1.5 0 0 1 1.484 1.278l3 20a1.5 1.5 0 0 1-1.484 1.722h-10c-.058 0-.116-.003-.173-.01Zm1.673-2.99v-17h4.209l2.55 17h-6.759Z"/>
</svg>
)
export default ThumbDown48