From c1bcc024d7823974bf5e3066a37d25d9f2cf2c0e Mon Sep 17 00:00:00 2001 From: Danilo Barros Date: Mon, 1 May 2017 15:04:04 -0300 Subject: [PATCH] fix(FormGroup): fix className prop type from boolean to string --- types/reactstrap/lib/FormGroup.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/reactstrap/lib/FormGroup.d.ts b/types/reactstrap/lib/FormGroup.d.ts index fd2390cdfa..c9293626cd 100644 --- a/types/reactstrap/lib/FormGroup.d.ts +++ b/types/reactstrap/lib/FormGroup.d.ts @@ -4,8 +4,8 @@ interface Props { disabled?: boolean; tag?: React.ReactType; color?: string; - className?: boolean; + className?: string; } declare var FormGroup: React.StatelessComponent; -export default FormGroup; \ No newline at end of file +export default FormGroup;