export const LogOutIcon: React.FC<React.SVGAttributes<{}>> = (props) => (
  <svg xmlns="http://www.w3.org/2000/svg" fill="none" {...props}>
    <path
      fill="currentColor"
      d="m16.875 10-3.125 3.125v-6.25L16.875 10Z"
      opacity={0.2}
    />
    <path
      fill="currentColor"
      d="M8.75 16.875a.625.625 0 0 1-.625.625H3.75a1.25 1.25 0 0 1-1.25-1.25V3.75A1.25 1.25 0 0 1 3.75 2.5h4.375a.625.625 0 0 1 0 1.25H3.75v12.5h4.375a.625.625 0 0 1 .625.625Zm8.567-6.433-3.125 3.125a.625.625 0 0 1-1.067-.442v-2.5h-5a.625.625 0 1 1 0-1.25h5v-2.5a.625.625 0 0 1 1.067-.442l3.125 3.125a.626.626 0 0 1 0 .884ZM15.99 10l-1.614-1.616v3.232L15.989 10Z"
    />
  </svg>
);
