import * as React from 'react';
import type { SVGProps } from 'react';
const SvgContractsFilledIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M4 0C2.897 0 2 .897 2 2v12c0 1.103.897 2 2 2h8c1.103 0 2-.897 2-2V5h-4c-.553 0-1-.447-1-1V0zm6 0v4h4zM4.5 2h2c.275 0 .5.225.5.5s-.225.5-.5.5h-2a.5.5 0 0 1-.5-.5c0-.275.225-.5.5-.5m0 2h2c.275 0 .5.225.5.5s-.225.5-.5.5h-2a.5.5 0 0 1-.5-.5c0-.275.225-.5.5-.5m1.694 7.931A1.5 1.5 0 0 1 4.756 13H4.5a.5.5 0 0 1-.5-.5c0-.275.225-.5.5-.5h.256a.5.5 0 0 0 .478-.356l.466-1.547a.833.833 0 0 1 1.6 0l.363 1.206a1.31 1.31 0 0 1 2.01.422l.136.275H11.5c.275 0 .5.225.5.5s-.225.5-.5.5h-2a.5.5 0 0 1-.447-.275l-.275-.553A.31.31 0 0 0 8.503 12a.3.3 0 0 0-.275.172l-.275.553a.498.498 0 0 1-.925-.078l-.528-1.74z"
    />
  </svg>
);
export default SvgContractsFilledIcon;
