import * as React from 'react';
import type { SVGProps } from 'react';
const SvgReportsIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M.75 1c.416 0 .75.334.75.75v11c0 .416.334.75.75.75h13c.416 0 .75.334.75.75s-.334.75-.75.75h-13A2.25 2.25 0 0 1 0 12.75v-11C0 1.334.334 1 .75 1m4.5 6c.416 0 .75.334.75.75v2.5c0 .416-.334.75-.75.75a.75.75 0 0 1-.75-.75v-2.5c0-.416.334-.75.75-.75M9 4.75v5.5c0 .416-.334.75-.75.75a.75.75 0 0 1-.75-.75v-5.5c0-.416.334-.75.75-.75s.75.334.75.75M11.25 6c.416 0 .75.334.75.75v3.5c0 .416-.334.75-.75.75a.75.75 0 0 1-.75-.75v-3.5c0-.416.334-.75.75-.75M15 2.75v7.5c0 .416-.334.75-.75.75a.75.75 0 0 1-.75-.75v-7.5c0-.416.334-.75.75-.75s.75.334.75.75"
    />
  </svg>
);
export default SvgReportsIcon;
