import React from "react"; import { ArrowRight } from "lucide-react"; import { cn } from "@/lib/utils"; interface InteractiveHoverButtonProps extends React.ButtonHTMLAttributes {} export const InteractiveHoverButton = React.forwardRef< HTMLButtonElement, InteractiveHoverButtonProps >(({ children, className, ...props }, ref) => { return ( ); }); InteractiveHoverButton.displayName = "InteractiveHoverButton";