copied new version

This commit is contained in:
Mishalabdullah
2024-05-03 11:10:14 +05:30
parent 80e9e7e6cb
commit ff0cd83613
49 changed files with 300 additions and 644 deletions

View File

@@ -0,0 +1,16 @@
import React from "react";
import styles from "./Buttons.module.css";
const PrimaryButton = ({ label = "continue", onClick, disabled = false }) => {
return (
<button
className={styles.primaryButton}
onClick={onClick}
disabled={disabled}
>
{label}
</button>
);
};
export default PrimaryButton;