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

const Report64: 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="M17.855 6.739a1.5 1.5 0 0 1 1.433-.105L48.62 19.968a1.5 1.5 0 0 1 0 2.73L20.167 35.633V56a1.5 1.5 0 1 1-3 0V8c0-.51.259-.985.688-1.261Zm2.312 25.598 24.208-11.004L20.167 10.33v22.007Z"/>
</svg>
)
export default Report64