import React, { ButtonHTMLAttributes, ReactNode } from "react";
type ButtonProps = {
accentColor: string;
children: ReactNode;
className?: string;
disabled?: boolean;
} & ButtonHTMLAttributes;
export const Button: React.FC = ({
accentColor,
children,
className,
disabled,
...allProps
}) => {
return (
);
};