const LogoutIcon = ({ className }: { className?: string }) => {
  return (
    <svg
      className={className}
      width="11"
      height="14"
      viewBox="0 0 11 14"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path
        d="M7 13H4C2.34315 13 1 11.6569 1 10V4C1 2.34315 2.34315 1 4 1H7"
        stroke="white"
      />
      <path
        d="M7.64258 4.42969L10.214 7.00112L7.64258 9.57254"
        stroke="white"
      />
      <path d="M10.2139 7H5.07101" stroke="white" />
    </svg>
  );
};

export { LogoutIcon };
