about summary refs log tree commit diff
path: root/MatrixRoomUtils.Web/Shared/SimpleComponents/LinkButton.razor
blob: 8c9e73b8a9e323155f421f36ac757441e2b28bdf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<a href="@href" class="btn btn-primary">
    @ChildContent
</a>

@code {
    
    [Parameter]
    public string href { get; set; }
    
    [Parameter]
    public RenderFragment ChildContent { get; set; }
    
}