From 6838c40d666c7787eec4878d7dae1e25c91d1352 Mon Sep 17 00:00:00 2001 From: John Doe Date: Sat, 9 Sep 2023 17:26:58 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Refactor=20ButtonThird=20compone?= =?UTF-8?q?nt=20=F0=9F=91=B7=E2=80=8D=E2=99=82=EF=B8=8F=20Improved=20code?= =?UTF-8?q?=20structure=20=F0=9F=8E=A8=20Updated=20class=20names=20for=20s?= =?UTF-8?q?tyling=20=F0=9F=90=9B=20Fixed=20potential=20styling=20issues=20?= =?UTF-8?q?=F0=9F=9A=80=20Ready=20for=20further=20integration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/shared/ButtonThird.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/shared/ButtonThird.tsx diff --git a/src/shared/ButtonThird.tsx b/src/shared/ButtonThird.tsx new file mode 100644 index 0000000..9bc4503 --- /dev/null +++ b/src/shared/ButtonThird.tsx @@ -0,0 +1,13 @@ +import Button, { ButtonProps } from "./Button"; +import React from "react"; + +export interface ButtonThirdProps extends ButtonProps {} + +const ButtonThird: React.FC = ({ + className = "text-neutral-700 border border-neutral-200 dark:text-neutral-200 dark:border-neutral-700", + ...args +}) => { + return