import React from "react"; import { Button, buttonVariants } from "@/components/ui/button"; import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, } from "@/components/ui/tooltip"; import { type VariantProps } from "class-variance-authority"; interface ButtonWithTooltipProps extends React.ComponentProps<"button">, VariantProps { tooltipContent: string; children: React.ReactNode; asChild?: boolean; } export function ButtonWithTooltip({ tooltipContent, children, ...buttonProps }: ButtonWithTooltipProps) { return ( {tooltipContent} ); }