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

const ThumbUp64: FC<ADSIcon>  = 
    ({fill, size = '4rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
  <path fill-rule="evenodd" d="M36.173 10.5a3.657 3.657 0 0 1 5.96 4.171l-4.76 8.569a1.5 1.5 0 0 0 1.294 2.26h14.859a.5.5 0 0 1 .489.605l-3.476 16.221-.243.975a46.27 46.27 0 0 1-.586 2.229c-.252.833-.487 1.363-.765 1.754-.49.688-1.324 1.248-3.798 1.882h-15.57l-6.744-2.247V25.893L36.173 10.5Zm-14.42 12.06L33.906 8.536a6.657 6.657 0 0 1 10.85 7.592l-3.54 6.372h12.31a3.5 3.5 0 0 1 3.422 4.233l-3.481 16.248a210.39 210.39 0 0 0-.241.973c-.226.912-.43 1.737-.645 2.445-.289.956-.637 1.845-1.192 2.624-1.166 1.638-2.97 2.418-5.692 3.098-.119.03-.241.045-.364.045h-16c-.16 0-.321-.026-.474-.077l-6.026-2.008v.585a1.5 1.5 0 0 1-1.5 1.5H12a1.5 1.5 0 0 1-1.483-1.277l-4-26.667A1.5 1.5 0 0 1 8 22.5h13.333c.146 0 .287.02.42.059Zm-1.92 2.94v23.667h-6.541L9.742 25.5h10.091Z"/>
</svg>
)
export default ThumbUp64