import * as React from 'react';
import type { SVGProps } from 'react';
const SvgLogoutIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M8.058 2.359v11.329H3.683V3.537zm1.312-.2a1.16 1.16 0 0 0-1.46-1.118L3.34 2.269c-.57.156-.97.675-.97 1.268v10.15h-.714c-.363 0-.656.329-.656.657s.293.656.656.656H9.37V2.159M6.745 8.875c.361 0 .656-.394.656-.875s-.295-.875-.656-.875c-.36 0-.656.394-.656.875s.293.875.656.875m3.475-4.812h1.844a.22.22 0 0 1 .219.218v10.063c0 .363.292.656.656.656h1.37c.365 0 .657-.328.657-.656s-.292-.656-.656-.656h-.715V4.28c0-.845-.686-1.531-1.531-1.531H10.22z"
    />
  </svg>
);
export default SvgLogoutIcon;
