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