import * as React from 'react';
import type { SVGProps } from 'react';
const SvgContractsIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M3.5 14V2c0-.275.225-.5.5-.5h5V4c0 .553.447 1 1 1h2.5v9c0 .275-.225.5-.5.5H4a.5.5 0 0 1-.5-.5M4 0C2.897 0 2 .897 2 2v12c0 1.103.897 2 2 2h8c1.103 0 2-.897 2-2V4.828a2 2 0 0 0-.584-1.415L10.584.584A2 2 0 0 0 9.172 0zm1 3c-.275 0-.5.225-.5.5s.225.5.5.5h2.5c.275 0 .5-.225.5-.5S7.775 3 7.5 3zm0 2c-.275 0-.5.225-.5.5s.225.5.5.5h2.5c.275 0 .5-.225.5-.5S7.775 5 7.5 5zm1.694 6.931L7 10.906l.522 1.738c.06.197.231.337.434.353s.4-.09.49-.275l.332-.666a.11.11 0 0 1 .097-.06c.04 0 .078.023.097.06l.331.666c.085.169.26.275.447.275H11c.275 0 .5-.225.5-.5s-.225-.5-.5-.5h-.94l-.194-.388a1.11 1.11 0 0 0-1.713-.343L7.8 10.094a.834.834 0 0 0-1.6.003l-.466 1.547a.5.5 0 0 1-.478.356H5c-.275 0-.5.225-.5.5s.225.5.5.5h.256c.663 0 1.247-.434 1.438-1.069"
    />
  </svg>
);
export default SvgContractsIcon;
