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