import * as React from 'react';
import type { SVGProps } from 'react';
const SvgCropPlannerFeatureIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M11.25 1a.75.75 0 0 1 .75.75v.82h1a2 2 0 0 1 2 2v1.68a.75.75 0 1 1-1.5 0V6h-11v7a.5.5 0 0 0 .5.5h3.25a.75.75 0 1 1 0 1.5H3a2 2 0 0 1-2-2V4.57a2 2 0 0 1 2-2h1v-.82a.75.75 0 0 1 1.5 0v.82h5v-.82a.75.75 0 0 1 .75-.75M8.438 9.188a3.28 3.28 0 0 1 3.28 3.28V14H13.5a.5.5 0 1 1 0 1h-5a.5.5 0 1 1 0-1l1.845-.014v-1.077A3.28 3.28 0 0 1 7.5 9.656c0-.259.21-.469.469-.469zm6.093-.938c.26 0 .469.21.469.469 0 1.664-1.24 3.04-2.845 3.252a3.74 3.74 0 0 0-.956-2.04 3.28 3.28 0 0 1 2.864-1.681z"
    />
  </svg>
);
export default SvgCropPlannerFeatureIcon;
