diff --git a/components/Button.tsx b/components/Button.tsx index a8bbf13..ec00066 100644 --- a/components/Button.tsx +++ b/components/Button.tsx @@ -6,10 +6,11 @@ const Button = ({ className, children, href, + disabled=false, onClick, }: ButtonProps): JSX.Element => { return href ? ( - + ) : onClick ? ( ) : (