/** * checks that input is a number */ export function isValidAmount(value: string) { if (value === '') { return true; } const regex = /^[0-9]*\.?[0-9]*$/; return regex.test(value); }