@hexdspace/react 0.1.55 → 0.1.56
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 +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4442,7 +4442,7 @@ import { Tooltip as TooltipPrimitive } from "radix-ui";
|
|
|
4442
4442
|
import * as React10 from "react";
|
|
4443
4443
|
import { jsx as jsx20, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
4444
4444
|
var tooltipContentBase = cn(
|
|
4445
|
-
"panel shadow-none px-4 py-2.5 text-xs z-5000 select-none",
|
|
4445
|
+
"panel border border-surface-1 shadow-none px-4 py-2.5 text-xs z-5000 select-none",
|
|
4446
4446
|
"origin-center",
|
|
4447
4447
|
"[--tooltip-x:0px] [--tooltip-y:4px]",
|
|
4448
4448
|
"data-[side=bottom]:[--tooltip-y:-4px]",
|
|
@@ -4490,7 +4490,7 @@ function Tooltip({
|
|
|
4490
4490
|
},
|
|
4491
4491
|
children: [
|
|
4492
4492
|
content,
|
|
4493
|
-
/* @__PURE__ */ jsx20(TooltipPrimitive.Arrow, {
|
|
4493
|
+
/* @__PURE__ */ jsx20(TooltipPrimitive.Arrow, { className: "fill-(--surface-2) stroke-(--surface-1)", style: { strokeWidth: 1 } })
|
|
4494
4494
|
]
|
|
4495
4495
|
}
|
|
4496
4496
|
) }) }) : null })
|