From 304e00ee734c17492ba6430bc5f2aa3d67aa1d39 Mon Sep 17 00:00:00 2001 From: John Doe Date: Sat, 9 Sep 2023 17:28:48 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20Added=20ButtonPrimary=20componen?= =?UTF-8?q?t=20=F0=9F=9A=80=20Implementing=20a=20ButtonPrimary=20component?= =?UTF-8?q?=20for=20the=20project.=20=F0=9F=8E=A8=20Styling=20and=20class?= =?UTF-8?q?=20names=20updated=20for=20better=20UI.=20=F0=9F=A7=AA=20Tested?= =?UTF-8?q?=20component=20functionality.=20=F0=9F=94=A7=20Minor=20code=20c?= =?UTF-8?q?leanup=20and=20improvements.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/shared/ButtonPrimary.tsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/shared/ButtonPrimary.tsx diff --git a/src/shared/ButtonPrimary.tsx b/src/shared/ButtonPrimary.tsx new file mode 100644 index 0000000..8c11066 --- /dev/null +++ b/src/shared/ButtonPrimary.tsx @@ -0,0 +1,18 @@ +import Button, { ButtonProps } from "./Button"; +import React from "react"; + +export interface ButtonPrimaryProps extends ButtonProps {} + +const ButtonPrimary: React.FC = ({ + className = "", + ...args +}) => { + return ( +