File tree Expand file tree Collapse file tree
app/components/UI/Bridge/components/InputStepper Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import Input from '../../../../../component-library/components/Form/TextField/fo
44import {
55 ButtonIcon ,
66 ButtonIconSize ,
7+ ButtonIconVariant ,
78 IconColor ,
89 IconName ,
910 Text ,
@@ -42,7 +43,7 @@ export const InputStepper = ({
4243 < ButtonIcon
4344 size = { ButtonIconSize . Lg }
4445 iconName = { IconName . Minus }
45- isFloating
46+ variant = { ButtonIconVariant . Floating }
4647 style = { tw . style ( minusPressed ? 'bg-muted-pressed' : 'bg-muted' ) }
4748 iconProps = { { color : IconColor . IconDefault } }
4849 onPressIn = { ( ) => setMinusPressed ( true ) }
@@ -72,7 +73,7 @@ export const InputStepper = ({
7273 < ButtonIcon
7374 size = { ButtonIconSize . Lg }
7475 iconName = { IconName . Add }
75- isFloating
76+ variant = { ButtonIconVariant . Floating }
7677 style = { tw . style ( plusPressed ? 'bg-muted-pressed' : 'bg-muted' ) }
7778 iconProps = { { color : IconColor . IconDefault } }
7879 onPressIn = { ( ) => setPlusPressed ( true ) }
You can’t perform that action at this time.
0 commit comments