import * as React from 'react';
import type { SVGProps } from 'react';
const SvgHomeFeatureIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M1.438 13.688V5.812H4.59l.64-1.372c.197-.424.541-.763.965-.957a3.064 3.064 0 0 0-6.07.58v9.625C.125 14.412.713 15 1.437 15h2.738a2.4 2.4 0 0 1-.542-1.312zm3.5-9.188h-3.5v-.437c0-.966.784-1.75 1.75-1.75.965 0 1.75.784 1.75 1.75zm2.239.94 3.01-1.317 3.011 1.318 1.364 2.925v5.103a.22.22 0 0 1-.218.219h-2.407v-1.532c0-.604-.489-1.094-1.093-1.094H9.53c-.604 0-1.094.49-1.094 1.094v1.531H6.031a.22.22 0 0 1-.219-.218V8.364l1.365-2.926zm3.448-2.559a1.1 1.1 0 0 0-.878 0l-3.172 1.39c-.243.106-.44.297-.552.538l-1.42 3.043a1.1 1.1 0 0 0-.103.462v5.155c0 .845.686 1.531 1.531 1.531h8.313c.845 0 1.531-.686 1.531-1.531V8.314c0-.158-.036-.317-.104-.462L14.352 4.81a1.1 1.1 0 0 0-.552-.539zm-1.75 4.9v1.313c0 .363.293.656.656.656h1.313a.655.655 0 0 0 .656-.656V7.78a.655.655 0 0 0-.656-.656H9.53a.655.655 0 0 0-.656.656"
    />
  </svg>
);
export default SvgHomeFeatureIcon;
