Skip to content

Commit

Permalink
fix: switched plus and minus (#1289)
Browse files Browse the repository at this point in the history
  • Loading branch information
RohinBhargava authored Aug 12, 2024
1 parent 86eba53 commit 2149982
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ui/components/src/FernNumericInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export const FernNumericInput = forwardRef<HTMLInputElement, FernNumericInputPro
{onValueChange && (
<FernButton
className="fern-numeric-input-step"
icon={<Plus />}
icon={<Minus />}
variant="minimal"
onClick={decrement}
onMouseDown={handleDecrementMouseDown}
Expand All @@ -121,7 +121,7 @@ export const FernNumericInput = forwardRef<HTMLInputElement, FernNumericInputPro
{onValueChange && (
<FernButton
className="fern-numeric-input-step"
icon={<Minus />}
icon={<Plus />}
variant="minimal"
onClick={increment}
onMouseDown={handleIncrementMouseDown}
Expand Down

0 comments on commit 2149982

Please sign in to comment.