Want RadzenProfileMenuItem to execute a form post method

I have a logout button from my blazor template that I want to replicate with <RadzenProfileMenuItem> but can't seem to figure out how.

<form action="Account/Logout" method="post">
    <AntiforgeryToken />
    <input type="hidden" name="ReturnUrl" value="@NavigationManager.ToBaseRelativePath(NavigationManager.Uri)" />
    <button type="submit" class="nav-link">
        <span class="bi bi-arrow-bar-left-nav-menu" aria-hidden="true"></span> Logout
    </button>
</form>

You can check this thread: ProfileMenu logout - #3 by esaitch