@inherits BlazorComponentBase
@attribute [HtmlRole("button")]
<a @attribute="@AdditionalAttributes">@ChildContent</a>
@code{
[Parameter]public RenderFragment? ChildContent { get; set; }
}
[HtmlRole("button")]
public class Anchor : BlazorComponentBase, IHasChildContent
{
[Parameter]public RenderFragment? ChildContent { get; set; }
}
<Anchor></Anchor>
<a role="button"></a>