-
+
props.setDescription()}>
+ {props.showDescription ? :
+
+
-
-
step {props.stepNumber}
-
{props.roundName}
+
+
step {props.stepNumber}
+
{props.roundName}
+
-
+
+ }
);
}
diff --git a/src/pages/interviewRounds/StepsDescreption.module.scss b/src/pages/interviewRounds/StepsDescreption.module.scss
index e69de29..15f0c83 100644
--- a/src/pages/interviewRounds/StepsDescreption.module.scss
+++ b/src/pages/interviewRounds/StepsDescreption.module.scss
@@ -0,0 +1,56 @@
+.stepDescription {
+ height: 74vh;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: space-between;
+ width: 100vw;
+ background-color: white;
+ transition-delay: 20s;
+ transition-property: height;
+
+ .header {
+ display: flex;
+ align-items: center;
+ height: 12vh;
+ width: 86.6%;
+ .stepName {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ flex-direction: column;
+ width: 18rem;
+ margin-left: 5.3rem;
+ .step {
+ color: #A3A3A3;
+ font-size: 1.4rem;
+ font-weight: 600;
+ }
+ .heading {
+ margin: 0;
+ color: #363636;
+ font-size: 2.4rem;
+ font-weight: 300;
+ }
+ }
+ }
+
+ .descreption {
+ color: #868686;
+ font-size: 1.4rem;
+ width: 80%;
+ line-height: 2.8rem;
+ }
+}
+
+ion-icon {
+ color: var(--primary-button-color);
+ width: 1.5rem;
+ height: 1.5rem;
+}
+
+ion-button {
+ width: 32.8rem;
+ height: 4rem;
+ font-weight: 400;
+}
\ No newline at end of file
diff --git a/src/pages/interviewRounds/StepsDescreption.tsx b/src/pages/interviewRounds/StepsDescreption.tsx
index faeb89b..188f555 100644
--- a/src/pages/interviewRounds/StepsDescreption.tsx
+++ b/src/pages/interviewRounds/StepsDescreption.tsx
@@ -1,8 +1,35 @@
-import styles from './StepsDescription.module.scss';
+import styles from './StepsDescreption.module.scss';
+import img from '../../assets/icons/skill_Information.svg';
-const StepsDescription: React.FC = () => {
+import { IonButton, IonIcon } from '@ionic/react';
+import { lockOpen, lockClosed } from 'ionicons/icons'
+
+interface Props {
+ stepNumber: number;
+ roundName: string;
+ isUnlocked: boolean;
+ buttonText: string;
+ descriptionImage: string;
+}
+
+const StepsDescription: React.FC
= (props) => {
return (
-
+
+
+
+
+
+
step {props.stepNumber}
+
{props.roundName}
+
+
+
+

+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+
+
{props.buttonText}
);