diff options
author | rohan09-raj <[email protected]> | 2022-07-19 23:00:40 +0530 |
---|---|---|
committer | rohan09-raj <[email protected]> | 2022-07-19 23:00:40 +0530 |
commit | 7e69bd83d62859a80a9baf44beb005a7980525cf (patch) | |
tree | 6cb42f09a584ef478eeb3a78a6f402375068d527 /src/components/SubmitButton/SubmitButton.jsx | |
parent | a574ddfda9d7ce7c5266d1f99acf351546f8857e (diff) |
Submit button add and radio select addd
Diffstat (limited to 'src/components/SubmitButton/SubmitButton.jsx')
-rw-r--r-- | src/components/SubmitButton/SubmitButton.jsx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/components/SubmitButton/SubmitButton.jsx b/src/components/SubmitButton/SubmitButton.jsx new file mode 100644 index 0000000..567d923 --- /dev/null +++ b/src/components/SubmitButton/SubmitButton.jsx @@ -0,0 +1,18 @@ +import React from 'react' +import styles from './SubmitButton.module.css' + +const SubmitButton = ({ onClick }) => { + return ( + <> + <button onClick={onClick} className={styles.submit}> + <img + className={styles.submit__image} + src={`${process.env.PUBLIC_URL}/assets/images/white-check.svg`} + alt="" + /> + </button> + </> + ) +} + +export default SubmitButton |