We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 307dd5f commit 4b05018Copy full SHA for 4b05018
samples/KristofferStrube.Blazor.SVGEditor.WasmExample/Pages/IconMaker.razor
@@ -1,7 +1,9 @@
1
@page "/IconMaker"
2
@inject IJSRuntime JSRuntime
3
4
-<button class="btn btn-primary" @onclick=Copy>Copy SVG to clipboard</button>
+<button class="btn btn-primary" @onclick=Copy>Copy SVG to clipboard</button><br />
5
+<input type="number" @bind-value:event="oninput" @bind-value=@width style="width:80px;" min="8" max="128" />
6
+<input type="range" @bind-value:event="oninput" @bind-value=@width min="8" max="128" step="1" />
7
<div style="display:flex;flex-direction:row;width:100%;">
8
<textarea @bind="Input" @bind:event="oninput" style="width:100%;" />
9
<div style="height:80vh;aspect-ratio:1">
0 commit comments