export const HomeIcon: React.FC<React.SVGAttributes<{}>> = (props) => (
  <svg xmlns="http://www.w3.org/2000/svg" {...props} fill="none">
    <path
      stroke="currentColor"
      strokeLinecap="round"
      strokeLinejoin="round"
      strokeWidth="2"
      d="m1.25 11 8.954-8.955a1.126 1.126 0 0 1 1.591 0L20.75 11M3.5 8.75v10.125c0 .62.504 1.125 1.125 1.125H8.75v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V20h4.125c.621 0 1.125-.504 1.125-1.125V8.75M7.25 20h8.25"
    />
  </svg>
);
