import * as React from 'react';
import type { SVGProps } from 'react';
const SvgFieldIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M15.711 2.114a.64.64 0 0 1 .289.53v8.998a.64.64 0 0 1-.43.6l-4.667 1.713a.68.68 0 0 1-.447.009l-5.109-1.64-4.444 1.634a.69.69 0 0 1-.617-.072.64.64 0 0 1-.286-.53V4.358c0-.268.17-.506.43-.6l4.667-1.713a.68.68 0 0 1 .447-.009l5.109 1.64 4.444-1.634a.69.69 0 0 1 .617.072zM1.333 4.8v7.624L4.667 11.2V3.576zM10 12.464V4.82L6 3.536v7.643zm1.333-.04 3.334-1.224V3.576L11.333 4.8z"
    />
  </svg>
);
export default SvgFieldIcon;
