From 51df42aea7c8c70a060697fbddd0c818aab7d3b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Brostr=C3=B6m?= Date: Mon, 5 Jun 2017 14:10:57 +0200 Subject: [PATCH] =?UTF-8?q?feat(Input):=20=E2=9C=A8=20Add=20support=20for?= =?UTF-8?q?=20autoFocus?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/input/input.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/input/input.jsx b/src/components/input/input.jsx index 902f238f..32491a08 100644 --- a/src/components/input/input.jsx +++ b/src/components/input/input.jsx @@ -20,6 +20,7 @@ function Input(props) { Input.propTypes = { className: PropTypes.string, style: PropTypes.object, + autoFocus: PropTypes.bool, /** Needs to be a valid input type */ type: PropTypes.string, disabled: PropTypes.bool,