From c19effcc797823d3c72f1f59b5f9731deed14448 Mon Sep 17 00:00:00 2001 From: Will Hunt Date: Mon, 2 Dec 2024 16:00:14 +0000 Subject: [PATCH] missed a change --- src/input/Input.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/input/Input.tsx b/src/input/Input.tsx index cf2902cd..77003e5a 100644 --- a/src/input/Input.tsx +++ b/src/input/Input.tsx @@ -73,6 +73,7 @@ interface InputFieldProps { defaultValue?: string; placeholder?: string; defaultChecked?: boolean; + min?: number; onChange?: (event: ChangeEvent) => void; } @@ -91,6 +92,7 @@ export const InputField = forwardRef< suffix, description, disabled, + min, ...rest }, ref, @@ -127,6 +129,7 @@ export const InputField = forwardRef< checked={checked} disabled={disabled} aria-describedby={descriptionId} + min={min} {...rest} /> )}