import { Tooltip } from "@nextui-org/react"; import React, { ReactNode } from "react"; import { cn } from "#/utils/utils"; interface TooltipButtonProps { children: ReactNode; tooltip: string; onClick?: () => void; href?: string; ariaLabel: string; testId?: string; className?: React.HTMLAttributes["className"]; } export function TooltipButton({ children, tooltip, onClick, href, ariaLabel, testId, className, }: TooltipButtonProps) { const buttonContent = ( ); const content = href ? ( {children} ) : ( buttonContent ); return ( {content} ); }