// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates // SPDX-License-Identifier: MIT import { Tooltip as ShadcnTooltip, TooltipContent, TooltipTrigger, } from "~/components/ui/tooltip"; import { cn } from "~/lib/utils"; export function Tooltip({ className, children, title, open, side, sideOffset, }: { className?: string; children: React.ReactNode; title?: React.ReactNode; open?: boolean; side?: "left" | "right" | "top" | "bottom"; sideOffset?: number; }) { return ( {children} {title} ); }