import { AnchorHTMLAttributes, ButtonHTMLAttributes, DetailedHTMLProps, RefAttributes } from "react";
import Link, { LinkProps } from 'next/link';
export default function Button({ className, ...props }: DetailedHTMLProps, HTMLButtonElement>) {
return
}
type LinkButtonProps = Omit, keyof LinkProps> & LinkProps & {
children?: React.ReactNode;
} & RefAttributes;
export function LinkButton({ className, children, ...props }: LinkButtonProps) {
return
{children}
}