Skip to content

Commit 1eda639

Browse files
Fixed double plus button on slider
1 parent eb6bcf4 commit 1eda639

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/SliderInput.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Plus, Undo2 } from "lucide-preact";
1+
import { Minus, Plus, Undo2 } from "lucide-preact";
22
import { type FC, useEffect, useRef } from "preact/compat";
33

44
interface SliderInputProps {
@@ -66,7 +66,7 @@ const SliderInput: FC<SliderInputProps> = ({
6666
}
6767
disabled={value <= min}
6868
>
69-
<Plus />
69+
<Minus />
7070
</button>
7171
)}
7272

0 commit comments

Comments
 (0)