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;