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 b53c919 commit 8ebb59cCopy full SHA for 8ebb59c
1 file changed
apps/webapp/app/components/primitives/InputNumberStepper.tsx
@@ -2,7 +2,7 @@ import { MinusIcon, PlusIcon } from "@heroicons/react/20/solid";
2
import { type ChangeEvent, useRef } from "react";
3
import { cn } from "~/utils/cn";
4
5
-type InputNumberStepperProps = JSX.IntrinsicElements["input"] & {
+type InputNumberStepperProps = Omit<JSX.IntrinsicElements["input"], "min" | "max" | "step"> & {
6
step?: number;
7
min?: number;
8
max?: number;
0 commit comments