From ceb54d4cbdeda25a17a0b775075476a6f20549a3 Mon Sep 17 00:00:00 2001 From: Trevor Kilvington Date: Wed, 31 Oct 2018 11:34:11 +1100 Subject: [PATCH] fix(TextField): Change tertiaryLabel prop type from string to React$Node --- react/TextField/TextField.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/TextField/TextField.js b/react/TextField/TextField.js index f71077b1..092512ed 100644 --- a/react/TextField/TextField.js +++ b/react/TextField/TextField.js @@ -42,7 +42,7 @@ type FieldLabelProps = { label?: string, labelProps?: Object, secondaryLabel?: string, - tertiaryLabel?: string + tertiaryLabel?: React$Node }; type FieldMessageProps = {