build(react): build26 from 45504a2b

This commit is contained in:
publish
2026-08-05 18:57:47 +02:00
commit 784a38389b
1955 changed files with 60543 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
"use client";
import { useTooltipContext } from "./context.js";
import { createContextPart } from "../create-context-part.js";
//#region src/ui/tooltip/tooltip-arrow.tsx
/** Decorative arrow pointing from the tooltip toward the trigger. Hidden from assistive technology. */
const TooltipArrow = createContextPart({
displayName: "TooltipArrow",
tag: "div",
useContext: useTooltipContext,
staticProps: { "aria-hidden": "true" }
});
//#endregion
export { TooltipArrow };
//# sourceMappingURL=tooltip-arrow.js.map