We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb6bcf4 commit 1eda639Copy full SHA for 1eda639
src/components/SliderInput.tsx
@@ -1,4 +1,4 @@
1
-import { Plus, Undo2 } from "lucide-preact";
+import { Minus, Plus, Undo2 } from "lucide-preact";
2
import { type FC, useEffect, useRef } from "preact/compat";
3
4
interface SliderInputProps {
@@ -66,7 +66,7 @@ const SliderInput: FC<SliderInputProps> = ({
66
}
67
disabled={value <= min}
68
>
69
- <Plus />
+ <Minus />
70
</button>
71
)}
72
0 commit comments