supermemory/apps/web/app/(dash)/header/signOutButton.tsx
2024-07-25 17:35:15 -05:00

22 lines
366 B
TypeScript

import { signOut } from "@/server/auth";
import { Button } from "@repo/ui/shadcn/button";
export default function SignOutButton() {
return (
<form
action={async () => {
"use server";
await signOut();
}}
>
<Button
variant="ghost"
size="sm"
type="submit"
className="text-[#7D8994]"
>
Sign Out
</Button>
</form>
);
}