From 69f0093cb7d1c8b9438b656f13acff0166247860 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Tue, 14 Nov 2023 09:43:42 +0100 Subject: [PATCH] Integrated the button type into the Button.jsx --- src/common/components/Button/Button.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/components/Button/Button.jsx b/src/common/components/Button/Button.jsx index af4d152..dade368 100644 --- a/src/common/components/Button/Button.jsx +++ b/src/common/components/Button/Button.jsx @@ -1,8 +1,8 @@ import "./styles.sass"; -export const Button = ({children, onClick, size = "normal"}) => { +export const Button = ({children, onClick, size = "normal", type = "primary"}) => { return ( - );