Skip to content

Commit

Permalink
fix: use ArrowRightStartOnRectangleIcon instead of ArrowRightOnRectan…
Browse files Browse the repository at this point in the history
…gleIcon
  • Loading branch information
bigint committed Dec 21, 2023
1 parent 5e447b4 commit 62afbc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/components/Shared/Navbar/NavItems/Logout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { FC } from 'react';

import { ArrowRightOnRectangleIcon } from '@heroicons/react/24/outline';
import { ArrowRightStartOnRectangleIcon } from '@heroicons/react/24/outline';
import { PROFILE } from '@hey/data/tracking';
import { useRevokeAuthenticationMutation } from '@hey/lens';
import cn from '@hey/ui/cn';
Expand Down Expand Up @@ -66,7 +66,7 @@ const Logout: FC<LogoutProps> = ({ className = '', onClick }) => {
}}
type="button"
>
<ArrowRightOnRectangleIcon className="size-4" />
<ArrowRightStartOnRectangleIcon className="size-4" />
<div>Logout</div>
</button>
);
Expand Down

0 comments on commit 62afbc4

Please sign in to comment.