summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorrohan09-raj <[email protected]>2022-07-28 17:51:44 +0530
committerrohan09-raj <[email protected]>2022-07-28 17:51:44 +0530
commitffefbc1c2a382597c6d9f90977f8c907e26fbe2e (patch)
tree1ebc8d426c9e561430ce6fcebebb118def4208c2 /src/components
parentff73539048908d8a24e347f2f9699cff95d8200c (diff)
Added components and some refactoring
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Input/Input.jsx22
-rw-r--r--src/components/Input/Input.module.css19
-rw-r--r--src/components/LabelCard/LabelCard.jsx23
-rw-r--r--src/components/LabelCard/LabelCard.module.css19
4 files changed, 83 insertions, 0 deletions
diff --git a/src/components/Input/Input.jsx b/src/components/Input/Input.jsx
new file mode 100644
index 0000000..ee79f3b
--- /dev/null
+++ b/src/components/Input/Input.jsx
@@ -0,0 +1,22 @@
+import React from 'react'
+import styles from './Input.module.css'
+
+const Input = ({ label, id, value, type, name }) => {
+ return (
+ <div className={styles.input}>
+ <div className={styles.input__container}>
+ <label htmlFor={id}>{label}</label>
+ <input
+ className={styles.input__field}
+ type={type}
+ id={id}
+ name={name}
+ value={value}
+ required
+ />
+ </div>
+ </div>
+ )
+}
+
+export default Input
diff --git a/src/components/Input/Input.module.css b/src/components/Input/Input.module.css
new file mode 100644
index 0000000..cafb5f1
--- /dev/null
+++ b/src/components/Input/Input.module.css
@@ -0,0 +1,19 @@
+.input {
+ display: flex;
+ justify-content: center;
+ font-family: 'Barlow';
+ font-size: var(--font-medium-s);
+}
+
+.input__container {
+ display: flex;
+ flex-direction: column;
+}
+
+.input__field {
+ width: 300px;
+ margin: 10px 0px;
+ padding: 20px 10px;
+ border: 3px solid;
+ border-radius: 10px;
+}
diff --git a/src/components/LabelCard/LabelCard.jsx b/src/components/LabelCard/LabelCard.jsx
new file mode 100644
index 0000000..be02f01
--- /dev/null
+++ b/src/components/LabelCard/LabelCard.jsx
@@ -0,0 +1,23 @@
+import React from 'react'
+import styles from './LabelCard.module.css'
+
+const LabelCard = ({ id, name, value, title, image }) => {
+ return (
+ <div className={styles.labelcard}>
+ <label htmlFor={id} className={styles.card}>
+ <img className={styles.card__image} src={image} alt="" />
+ <h4 className={styles.card__title}>{title}</h4>
+ </label>
+ <input
+ className={styles.labelcard__radio}
+ type="radio"
+ id={id}
+ name={name}
+ value={value}
+ required
+ />
+ </div>
+ )
+}
+
+export default LabelCard
diff --git a/src/components/LabelCard/LabelCard.module.css b/src/components/LabelCard/LabelCard.module.css
new file mode 100644
index 0000000..8511596
--- /dev/null
+++ b/src/components/LabelCard/LabelCard.module.css
@@ -0,0 +1,19 @@
+.labelcard {
+ text-align: center;
+}
+
+.card {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ margin: 5px;
+}
+
+.card__image {
+ border: 3px solid var(--color-black);
+ border-radius: 10px;
+}
+
+.card__title {
+ margin: 5px 0px;
+}