diff --git a/components/Button.tsx b/components/Button.tsx index b9e53be..b8326d4 100644 --- a/components/Button.tsx +++ b/components/Button.tsx @@ -11,6 +11,11 @@ export enum ButtonType { button = 'button', } +Button.defaultProps = { + loading: false, + type: ButtonType.button, +} + function Button(props: ButtonProps): JSX.Element { return (