From 1bce73577c7f2932c0a0f23b83035ae9b7852d90 Mon Sep 17 00:00:00 2001 From: Hunter Thornsberry Date: Sat, 8 Jun 2024 17:27:40 -0400 Subject: [PATCH] class cleanup --- src/components/Form/FormInput.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/Form/FormInput.tsx b/src/components/Form/FormInput.tsx index 74cea240..0dd7f711 100644 --- a/src/components/Form/FormInput.tsx +++ b/src/components/Form/FormInput.tsx @@ -12,6 +12,8 @@ export interface InputFieldProps extends BaseFormBuilderProps { prefix?: string; suffix?: string; step?: number; + min?: number; + max?: number; action?: { icon: LucideIcon; onClick: () => void;