From 315f760ce20731edf801122350f2972d8a22289b Mon Sep 17 00:00:00 2001 From: Brook Shi Date: Sun, 30 Apr 2017 23:31:45 +0800 Subject: [PATCH] Input component support spellCheck for TypeScript --- components/input/Input.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/components/input/Input.tsx b/components/input/Input.tsx index 1b6934a12f..55b9318385 100644 --- a/components/input/Input.tsx +++ b/components/input/Input.tsx @@ -57,6 +57,7 @@ export interface InputProps { style?: React.CSSProperties; prefix?: React.ReactNode; suffix?: React.ReactNode; + spellCheck?: boolean; } export default class Input extends Component {