import * as React from 'react';
import type { SVGProps } from 'react';
const SvgBoundaryIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M7.5 1a1.5 1.5 0 0 1 .65 2.852v1.296c.307.148.555.396.702.702h3.296a1.5 1.5 0 1 1 2.003 2.002v4.296a1.5 1.5 0 1 1-2.003 2.003H3.852a1.5 1.5 0 1 1-2.003-2.003V3.852a1.5 1.5 0 1 1 2.003-2.003h2.296A1.5 1.5 0 0 1 7.5 1M6.148 3.15H3.852a1.5 1.5 0 0 1-.702.702v8.296c.306.147.555.396.702.702h8.296c.147-.306.396-.555.702-.702V7.852a1.5 1.5 0 0 1-.702-.702H8.852A1.5 1.5 0 1 1 6.85 5.148V3.852a1.5 1.5 0 0 1-.632-.575z"
    />
  </svg>
);
export default SvgBoundaryIcon;
