"use client"; import { useIdentityData } from "./IdentityProvider"; import { Popover } from "./Popover"; import LoginForm from "app/login/LoginForm"; import { ButtonPrimary } from "./Buttons"; import { ActionButton } from "./ActionBar/ActionButton"; import { AccountSmall } from "./Icons/AccountSmall"; export function LoginButton() { let identityData = useIdentityData(); if (identityData.identity) return null; return ( Log In! } > ); } export function LoginActionButton() { let identityData = useIdentityData(); if (identityData.identity) return null; return ( } label="Sign In" /> } > ); }