import React from "react"; const CustomButton = React.forwardRef< HTMLButtonElement, React.ButtonHTMLAttributes >(({ className, children, ...props }, ref) => { return ( ); }); CustomButton.displayName = "CustomButton"; export { CustomButton };