From cfc65993ec21096e4000ac03f575876b9fdbbb8f Mon Sep 17 00:00:00 2001
From: Alexander Lesnenko <alxnddr@users.noreply.github.com>
Date: Tue, 7 Dec 2021 19:17:00 +0300
Subject: [PATCH] fix link types (#19239)

---
 frontend/src/metabase/components/Link.tsx | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/frontend/src/metabase/components/Link.tsx b/frontend/src/metabase/components/Link.tsx
index c775485039d..dc968bb55c0 100644
--- a/frontend/src/metabase/components/Link.tsx
+++ b/frontend/src/metabase/components/Link.tsx
@@ -1,17 +1,20 @@
 import cx from "classnames";
-import React, { ReactNode } from "react";
-import { Link as ReactRouterLink, LinkProps } from "react-router";
+import React, { CSSProperties, HTMLProps, ReactNode } from "react";
+import { Link as ReactRouterLink } from "react-router";
 import styled from "styled-components";
 import { color, display, hover, space } from "styled-system";
 import Tooltip from "metabase/components/Tooltip";
 import { stripLayoutProps } from "metabase/lib/utils";
 
-interface Props extends LinkProps {
+interface Props extends HTMLProps<HTMLAnchorElement> {
   to: string;
   disabled?: boolean;
   className?: string;
   children?: ReactNode;
   tooltip?: string;
+  activeClassName?: string;
+  activeStyle?: CSSProperties;
+  onlyActiveOnIndex?: boolean;
 }
 
 function BaseLink({
-- 
GitLab