From becc456bdf54b9654c8f605731b5f626a77d00a4 Mon Sep 17 00:00:00 2001 From: Danilo Barros Date: Mon, 1 May 2017 15:00:22 -0300 Subject: [PATCH] feat(NavLink): extending props from anchor element --- types/reactstrap/lib/NavLink.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/reactstrap/lib/NavLink.d.ts b/types/reactstrap/lib/NavLink.d.ts index 35da161a1e..f0117c387c 100644 --- a/types/reactstrap/lib/NavLink.d.ts +++ b/types/reactstrap/lib/NavLink.d.ts @@ -1,4 +1,4 @@ -interface Props { +interface Props extends React.HTMLProps { tag?: React.ReactType; disabled?: boolean; active?: boolean; @@ -8,4 +8,4 @@ interface Props { } declare var NavLink: React.StatelessComponent; -export default NavLink; \ No newline at end of file +export default NavLink;