import { ComponentPropsWithoutRef, forwardRef } from "react"; import { Button as BaseButton } from "react-daisyui"; import { Link } from "react-router-dom"; type ButtonProps = ComponentPropsWithoutRef & { href?: string; target?: "_blank" | "_self" | "_parent" | "_top"; }; const Button = forwardRef( ({ href, ...props }, ref) => { return ( ); } ); export default Button;