From 9bab3c124dda39791fb327a0ba6bcc5ee8a26df6 Mon Sep 17 00:00:00 2001 From: cynecx Date: Fri, 2 Mar 2018 22:35:11 +0100 Subject: [PATCH] Add missing valid prop to FormFeedback --- types/reactstrap/lib/FormFeedback.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/reactstrap/lib/FormFeedback.d.ts b/types/reactstrap/lib/FormFeedback.d.ts index b5c8f04eae..946aab01d8 100644 --- a/types/reactstrap/lib/FormFeedback.d.ts +++ b/types/reactstrap/lib/FormFeedback.d.ts @@ -4,6 +4,7 @@ export interface FormFeedbackProps extends React.HTMLAttributes { tag?: string; className?: string; cssModule?: CSSModule; + valid?: boolean; } declare const FormFeedback: React.StatelessComponent;