* [WEB-5473] fix: source map errors * [WEB-5473] chore: run codemod * fix: build errors in editor --------- Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com>
12 lines
354 B
TypeScript
12 lines
354 B
TypeScript
import Link from "next/link";
|
|
import { PlaneLockup } from "@plane/propel/icons";
|
|
|
|
export function AuthHeader() {
|
|
return (
|
|
<div className="flex items-center justify-between gap-6 w-full flex-shrink-0 sticky top-0">
|
|
<Link href="/">
|
|
<PlaneLockup height={20} width={95} className="text-custom-text-100" />
|
|
</Link>
|
|
</div>
|
|
);
|
|
}
|