reactbridge-sdk 0.2.15 → 0.2.16
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.
package/dist/index.js
CHANGED
|
@@ -2407,8 +2407,9 @@ const AnalyticsDrawer = ({ isOpen, onClose, configs, isLoading, theme, onDirecti
|
|
|
2407
2407
|
};
|
|
2408
2408
|
|
|
2409
2409
|
// Analytics Icon SVG
|
|
2410
|
-
const ANALYTICS_ICON_SVG = (React.createElement(
|
|
2411
|
-
React.createElement("
|
|
2410
|
+
const ANALYTICS_ICON_SVG = (React.createElement(React.Fragment, null,
|
|
2411
|
+
React.createElement("svg", { width: "36", height: "36", viewBox: "0 0 40 40", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg" },
|
|
2412
|
+
React.createElement("path", { d: "M10 10 L 35 20 L 10 30 L 15 20 Z", fill: "currentColor" }))));
|
|
2412
2413
|
const AnalyticsWidget = ({ position = "bottom-right", theme: customTheme, onDirectiveAction, }) => {
|
|
2413
2414
|
const { theme: contextTheme } = useReactBridgeContext();
|
|
2414
2415
|
const theme = customTheme || contextTheme;
|