From 9ade79fc0200eff745a8e644acc63b4596a02e98 Mon Sep 17 00:00:00 2001 From: Bryan Thomas <49354825+bryanjtc@users.noreply.github.com> Date: Thu, 6 Jun 2024 12:42:20 -0500 Subject: [PATCH] Update styled.tsx --- src/styled.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styled.tsx b/src/styled.tsx index 2bcc015..c48b400 100644 --- a/src/styled.tsx +++ b/src/styled.tsx @@ -10,7 +10,7 @@ export const paraGraphDefaultStyle = { interface ButtonBaseProps extends React.ButtonHTMLAttributes { - type: React.ButtonHTMLAttributes['type']; + type?: React.ButtonHTMLAttributes['type']; } const ButtonBase = ({ type = 'button', ...props }: ButtonBaseProps) => {