min
The min
validator checks that a numeric value is at least the minimum value provided.
If the value being validated is null
, false
, an empty string, or another falsy value other than 0
, then the result will be valid. This respects the rule of thumb described in the notes for the required validator.
Named Props
min
: The minimum value compared against
Parameters
The min
validator supports three parameter signatures:
min(value)
where the value is used as themin
named propmin(propsObject)
where the props object contains amin
named propmin(propsFunction)
where the props function returns a props object with amin
named prop
Usage
Last updated
Was this helpful?