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

const Report24: 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">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M6.459 2.16a1 1 0 0 1 .955-.07l11 5a1 1 0 0 1 0 1.82L8 13.644V21a1 1 0 1 1-2 0V3a1 1 0 0 1 .459-.84ZM8 11.446 15.583 8 8 4.553v6.894Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="24" height="24" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default Report24