UNPKG

@chayns-components/core

Version:

A set of beautiful React components for developing your own applications with chayns.

14 lines 263 B
export const checkForValidAmount = ({ amount, maxAmount, minAmount }) => { if (maxAmount && amount > maxAmount) { return maxAmount; } if (amount < minAmount) { return minAmount; } return amount; }; //# sourceMappingURL=amountControl.js.map