"use client"; import cx from "classnames"; import React from "react"; import { Icon } from "../Icon"; import type { TooltipProps } from "./Tooltip"; import { Tooltip } from "./Tooltip"; const CLASS_ROOT = "info-tooltip"; type InfoTooltipProps = Omit & Omit, "onAbort"> & { children?: React.ReactNode; className?: string; }; const InfoTooltip: React.FC = ({ children, className, ...other }) => ( (