summaryrefslogtreecommitdiff
path: root/Pages/Component/LoadingSpinner.razor
blob: 63d98af7146c40fd469671d405eea29217fae2ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<svg width=@Size height=@Size viewBox="0 0 100 100" fill="none">
  <path d="
    M 50 5
    A 45 45 0 0 1 95 50
    M 50 95
    A 45 45 0 0 1 5 50
    " stroke="currentColor" stroke-width="10" stroke-linecap="round"/>
</svg>

@code {
    [Parameter]
    public int Size { get; set; } = 50;
}