import type { ButtonHTMLAttributes, PropsWithChildren } from "react";
import { twMerge } from "tailwind-merge";
type ButtonProps = PropsWithChildren>;
export function Button({
children,
className = "",
type = "button",
...props
}: ButtonProps) {
return (
);
}
export default Button;