File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -15,5 +15,6 @@ color="@Color"
1515icon =" @Icon"
1616oval =" @Oval"
1717loading =" @Loading"
18- data-tooltip =" @DataTooltip" >
18+ data-tooltip =" @DataTooltip"
19+ size =" @Size" >
1920</ix-icon-button >
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ public partial class IconButton
2020 [ Parameter ]
2121 public bool ? Oval { get ; set ; }
2222 [ Parameter ]
23+ public IconButtonSize Size { get ; set ; } = IconButtonSize . _24 ;
24+ [ Parameter ]
2325 public bool Selected { get ; set ; } = false ;
2426 [ Parameter ]
2527 public string DataTooltip { get ; set ; } = string . Empty ;
Original file line number Diff line number Diff line change 1+ namespace SiemensIXBlazor . Enums . Button
2+ {
3+ public enum IconButtonSize
4+ {
5+ _12 = 12 ,
6+ _16 = 16 ,
7+ _24 = 24
8+ }
9+ }
You can’t perform that action at this time.
0 commit comments