We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24aea42 commit c5b0843Copy full SHA for c5b0843
1 file changed
CodeBeam.MudBlazor.Extensions/Components/Barcode/MudBarcode.razor
@@ -10,7 +10,7 @@
10
var viewBoxWidth = @content.ModuleSizeX * content.Columns;
11
var viewBoxHeight = @content.ModuleSizeY * content.Rows;
12
13
- <svg width="@Width" height="@Height" style="background-color:@BackgroundColor" viewBox="0 0 @viewBoxWidth @viewBoxHeight">
+ <svg width="@Width" height="@Height" class="@Class" style="background-color:@BackgroundColor; @Style" viewBox="0 0 @viewBoxWidth @viewBoxHeight">
14
@for (int y = 0; y < content.Rows; y++)
15
{
16
@for (int x = 0; x < content.Columns; x++)
0 commit comments