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

const ThumbDown24: 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">
  <path fill-rule="evenodd" d="M9.632 19.778a.934.934 0 0 1-1.522-1.065l1.78-3.206a1 1 0 0 0-.864-1.505H5.002a1 1 0 0 1-.977-1.21L5 8.23l.092-.37c.081-.327.144-.58.212-.804.089-.294.16-.44.225-.53.087-.123.26-.296 1.123-.523h5.712l2.162.721v7.406l-4.895 5.649Zm5.919-3.776-4.408 5.086a2.934 2.934 0 0 1-4.781-3.347l.966-1.739H5a3 3 0 0 1-2.933-3.628l.982-4.581a.99.99 0 0 1 .008-.035l.082-.332v-.002c.086-.346.167-.671.25-.948.114-.376.262-.762.51-1.111.534-.75 1.348-1.074 2.385-1.333a1 1 0 0 1 .242-.03h6a1 1 0 0 1 .317.052l1.752.584a1 1 0 0 1 .931-.636h3.5a1 1 0 0 1 .99.852l1.5 10a1 1 0 0 1-.99 1.148H15.55Zm.976-2v-8h1.64l1.2 8h-2.84Z"/>
</svg>
)
export default ThumbDown24