Skip to content

Commit c5b0843

Browse files
authored
Barcode Class and Style (#310)
1 parent 24aea42 commit c5b0843

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

CodeBeam.MudBlazor.Extensions/Components/Barcode/MudBarcode.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
var viewBoxWidth = @content.ModuleSizeX * content.Columns;
1111
var viewBoxHeight = @content.ModuleSizeY * content.Rows;
1212

13-
<svg width="@Width" height="@Height" style="background-color:@BackgroundColor" viewBox="0 0 @viewBoxWidth @viewBoxHeight">
13+
<svg width="@Width" height="@Height" class="@Class" style="background-color:@BackgroundColor; @Style" viewBox="0 0 @viewBoxWidth @viewBoxHeight">
1414
@for (int y = 0; y < content.Rows; y++)
1515
{
1616
@for (int x = 0; x < content.Columns; x++)

0 commit comments

Comments
 (0)