diff --git a/src/components/common/button.tsx b/src/components/common/button.tsx index 8c7880a..d35edc2 100644 --- a/src/components/common/button.tsx +++ b/src/components/common/button.tsx @@ -10,16 +10,16 @@ type Props = { onClick?: () => void } -export const ButtonComponent: FC = ({ title, type = "button", pending = false, theme = "primary" }) => { +export const ButtonComponent: FC = ({ title, type = "button", pending = false, theme = "primary", onClick }) => { return ( -