From 2a17dd8ac3329036d755ca557d78fce0184bf39d Mon Sep 17 00:00:00 2001 From: Ryan Waldheim Date: Mon, 6 Jan 2025 15:48:15 -0500 Subject: [PATCH] Include 'time' Input Type --- src/components/input/Input.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/input/Input.js b/src/components/input/Input.js index 4df9f2a1..df1c54f7 100644 --- a/src/components/input/Input.js +++ b/src/components/input/Input.js @@ -215,7 +215,7 @@ Input.propTypes = { * The type of control to render */ type: PropTypes.oneOf([ - // Only allowing the input types with wide browser compatability + // Only allowing the input types with wide browser compatibility 'text', 'number', 'password', @@ -224,7 +224,8 @@ Input.propTypes = { 'search', 'tel', 'url', - 'hidden' + 'hidden', + 'time' ]), /**