From 71cffd173bf1eff8237b3229d1685a033eeb9bac Mon Sep 17 00:00:00 2001 From: Giovanni Gonzaga Date: Tue, 3 Apr 2018 13:05:52 +0200 Subject: [PATCH] input error/success should use the correct icons --- src/Input/Input.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Input/Input.tsx b/src/Input/Input.tsx index 3a45c70e4..713237aaa 100644 --- a/src/Input/Input.tsx +++ b/src/Input/Input.tsx @@ -69,8 +69,8 @@ export class Input extends React.PureComponent { const isSuccess = status === 'success'; const isFailure = status === 'failure'; const children = this.props.children || ( - isSuccess ? : - isFailure ? : + isSuccess ? : + isFailure ? : undefined );