react-icons/md#MdArrowBack JavaScript Examples

The following examples show how to use react-icons/md#MdArrowBack. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: QuantityField.js    From plataforma-sabia with MIT License 6 votes vote down vote up
QuantityField = ({ defaultValue, labelPlacement, minValue, onChange }) => {
	const [internalQuantity, setInternalQuantity] = useState(defaultValue);

	useEffect(() => {
		onChange(internalQuantity);
		// eslint-disable-next-line react-hooks/exhaustive-deps
	}, [internalQuantity]);

	const handleDecreaseValue = () => {
		if (internalQuantity > minValue) {
			setInternalQuantity((prevValue) => prevValue - 1);
		}
	};

	const handleIncreaseValue = () => {
		setInternalQuantity((prevValue) => prevValue + 1);
	};

	return (
		<InputFieldWrapper labelPlacement={labelPlacement}>
			<InputLabel>Quantidade:</InputLabel>

			<Row>
				<Button
					disabled={internalQuantity <= minValue}
					aria-label="Decrease quantity"
					type="button"
					onClick={handleDecreaseValue}
				>
					<MdArrowBack fontSize={24} />
				</Button>
				<QuantityText>{internalQuantity}</QuantityText>
				<Button aria-label="Increase quantity" type="button" onClick={handleIncreaseValue}>
					<MdArrowForward fontSize={24} />
				</Button>
			</Row>
		</InputFieldWrapper>
	);
}