import clsx from "clsx"; import type { ComponentProps } from "react"; import { OverlayArrow, Tooltip as TooltipImpl } from "react-aria-components"; type Props = Omit, "children"> & { children: React.ReactNode; }; export const Tooltip = ({ children, className, offset, ...props }: Props) => ( {children} );