-
-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathPatreon.razor
More file actions
14 lines (13 loc) · 595 Bytes
/
Copy pathPatreon.razor
File metadata and controls
14 lines (13 loc) · 595 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<a href="https://www.patreon.com/@PatreonName" target="_blank" bind
class="text-decoration-none border border-dark rounded p-2 link bg-danger">
<i class="me-2 text-white">
<svg style="height: 1em; width: 1em;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
<path d="M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z" fill="white"></path>
</svg>
Become a patreon
</i>
</a>
@code {
[Parameter, EditorRequired]
public required string PatreonName { get; set; }
}