import * as React from 'react';
import type { SVGProps } from 'react';
const SvgConnectionsIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M5.279 14.786a.72.72 0 0 0 0-1.033L3.56 12.077l10.689-.003c.415 0 .75-.326.75-.731a.74.74 0 0 0-.75-.731H3.56L5.28 8.936a.716.716 0 0 0 0-1.033.763.763 0 0 0-1.06 0L1.22 10.825a.716.716 0 0 0 0 1.033l3 2.925c.293.289.768.289 1.059.003m9.5-9.61a.716.716 0 0 0 0-1.033L11.78 1.215a.76.76 0 0 0-1.059 0 .72.72 0 0 0 0 1.033l1.719 1.675-10.689.003a.74.74 0 0 0-.75.732c0 .405.335.73.75.73H12.44L10.72 7.065a.716.716 0 0 0 0 1.033.763.763 0 0 0 1.06 0l2.999-2.925z"
    />
  </svg>
);
export default SvgConnectionsIcon;
