import * as React from 'react';
import type { SVGProps } from 'react';
const SvgFieldFilledIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="m10.667 13.996-5.334-1.495V2.004l5.334 1.495zm.889-.032V3.434l3.53-1.387a.665.665 0 0 1 .914.608v9.12a.66.66 0 0 1-.42.608l-4.024 1.578zM.419 3.617l4.025-1.578v10.527l-3.53 1.387A.665.665 0 0 1 0 13.345v-9.12c0-.268.167-.508.42-.608"
    />
  </svg>
);
export default SvgFieldFilledIcon;
