summaryrefslogtreecommitdiff
path: root/Pages/Component/ErrorIcon.razor
blob: 251148d2607a5fdfa001dc247cd56fc98ec9a0d3 (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">
	<ellipse cx="50" cy="50" rx="50" ry="50"/>
	<path
		d="M 75 25 L 25 75 M 25 25 L 75 75"
		stroke="#fff"
		stroke-width="10"
		stroke-linecap="round"/>
</svg>

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