RadzenSteps Customize Next

Hi everyone,

i use a RadzenSteps-Component like this

<RadzenSteps>
<Steps>
    @foreach (var step in CurrentDocumentSteps)
    {
        <RadzenStepsItem Text="@step.Name">
            @CreateNextFragment(step)
        </RadzenStepsItem>
    }
</Steps>

CurrentDocumentSteps is a List of Type List<TypeInfo>

Since now i used "normal" RadzenButtons to trigger "go to the next step" but at least i want to use the RadzenSteps-Next and Previous-Buttons or if i cant use them i want to set them invisible.

Is there any possibility to customize the "Next" and "Previous"-Buttons of the RadzenSteps-Component?

Thanks for your help!