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

const Report20: 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 20 20">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M5.427 1.87a.75.75 0 0 1 .717-.053l9.166 4.167a.75.75 0 0 1 0 1.365l-8.727 3.967V17.5a.75.75 0 0 1-1.5 0v-15a.75.75 0 0 1 .344-.63Zm1.157 7.799 6.604-3.002-6.605-3.002v6.004Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="20" height="20" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default Report20