import * as React from 'react';
import type { SVGProps } from 'react';
const SvgSessionsIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M10.083 2c-.21.378-.333.817-.333 1.286V3.5H1.5V10h8.25v1.429H1.667c-.92 0-1.667-.77-1.667-1.715v-6C0 2.77.747 2 1.667 2zM9.75 12.714c0 .469.122.908.333 1.286H3.125a.633.633 0 0 1-.625-.643c0-.356.279-.643.625-.643zM12.25 2h2.5c.69 0 1.25.576 1.25 1.286v9.428c0 .71-.56 1.286-1.25 1.286h-2.5c-.69 0-1.25-.576-1.25-1.286V3.286C11 2.576 11.56 2 12.25 2m.625 1.714a.633.633 0 0 0-.625.643c0 .356.279.643.625.643h1.25a.633.633 0 0 0 .625-.643.633.633 0 0 0-.625-.643zm0 2.572a.633.633 0 0 0-.625.643c0 .356.279.642.625.642h1.25a.633.633 0 0 0 .625-.642.633.633 0 0 0-.625-.643zm1.458 3.857a.845.845 0 0 0-.833-.857.845.845 0 0 0-.833.857c0 .474.372.857.833.857s.833-.383.833-.857"
    />
  </svg>
);
export default SvgSessionsIcon;
