import * as React from 'react';
import type { SVGProps } from 'react';
const SvgCredentialsIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M6.688 5.813a3.5 3.5 0 1 1 2.676 3.401.65.65 0 0 0-.618.175l-.798.799h-1.48a.655.655 0 0 0-.655.656v1.094H4.719a.655.655 0 0 0-.657.656v1.094h-1.75v-2.136l4.299-4.298a.66.66 0 0 0 .175-.618 3.5 3.5 0 0 1-.099-.824M10.188 1a4.813 4.813 0 0 0-4.753 5.575l-4.244 4.241a.66.66 0 0 0-.191.465v3.063c0 .363.293.656.656.656H4.72a.655.655 0 0 0 .656-.656V13.25h1.094a.655.655 0 0 0 .656-.656V11.5h1.094a.66.66 0 0 0 .465-.191l.743-.744q.374.058.763.06A4.813 4.813 0 1 0 10.188 1m.874 4.813a.875.875 0 1 0 0-1.75.875.875 0 0 0 0 1.75"
    />
  </svg>
);
export default SvgCredentialsIcon;
