import * as React from 'react';
import type { SVGProps } from 'react';
const SvgReportsFilledIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M1 1c.553 0 1 .447 1 1v10.5c0 .275.225.5.5.5H15a.999.999 0 1 1 0 2H2.5A2.5 2.5 0 0 1 0 12.5V2c0-.553.447-1 1-1m4 6c.553 0 1 .447 1 1v2a.999.999 0 1 1-2 0V8c0-.553.447-1 1-1m4-2v5a.999.999 0 1 1-2 0V5a.999.999 0 1 1 2 0m2 1c.553 0 1 .447 1 1v3a.999.999 0 1 1-2 0V7c0-.553.447-1 1-1m4-3v7a.999.999 0 1 1-2 0V3a.999.999 0 1 1 2 0"
    />
  </svg>
);
export default SvgReportsFilledIcon;
