@equinor/echo-components 0.6.3 → 0.6.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  interface LinkProps {
3
+ className: string;
3
4
  /** The external link. */
4
5
  href: string;
5
6
  /** The link label. */
@@ -7,5 +8,5 @@ interface LinkProps {
7
8
  /** If true, the link is opened in the same window or tab. */
8
9
  preserveTab?: boolean;
9
10
  }
10
- declare const BlackLink: ({ href, linkText, preserveTab }: LinkProps) => JSX.Element;
11
+ declare const BlackLink: ({ className, href, linkText, preserveTab }: LinkProps) => JSX.Element;
11
12
  export { BlackLink };