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 ( +