@openfin/ui-library 0.19.2-alpha.1687812940 → 0.19.2-alpha.1687871109
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.
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { FC, ReactNode } from 'react';
|
|
2
|
+
export type ClickableNavigationButtonProps = {
|
|
3
|
+
onClick?: () => void;
|
|
4
|
+
children?: ReactNode;
|
|
5
|
+
};
|
|
6
|
+
export type ClickableNavigationLinkProps = {
|
|
7
|
+
to?: string;
|
|
8
|
+
children?: ReactNode;
|
|
9
|
+
};
|
|
10
|
+
export declare const ClickableNavigationLink: FC<ClickableNavigationLinkProps>;
|
|
11
|
+
export declare const ClickableNavigationButton: FC<ClickableNavigationButtonProps>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './clickableNavigation';
|
package/package.json
CHANGED