l-min-components 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (137) hide show
  1. package/package.json +38 -0
  2. package/src/assets/Icon.svg +3 -0
  3. package/src/assets/friendrequest.png +0 -0
  4. package/src/assets/images/User-avatar.svg.png +0 -0
  5. package/src/assets/images/Vector19.png +0 -0
  6. package/src/assets/images/android.png +0 -0
  7. package/src/assets/images/avatar.png +0 -0
  8. package/src/assets/images/banner.png +0 -0
  9. package/src/assets/images/dashboardImage.png +0 -0
  10. package/src/assets/images/figma.png +0 -0
  11. package/src/assets/images/linkedin.png +0 -0
  12. package/src/assets/images/logo.png +0 -0
  13. package/src/assets/images/onboarding.png +0 -0
  14. package/src/assets/images/sign_up.png +0 -0
  15. package/src/assets/react.svg +1 -0
  16. package/src/assets/svg/Frame 4534413.svg +7 -0
  17. package/src/assets/svg/Property 44.svg +5 -0
  18. package/src/assets/svg/Property 55.svg +10 -0
  19. package/src/assets/svg/add.jsx +14 -0
  20. package/src/assets/svg/arrow-down.jsx +14 -0
  21. package/src/assets/svg/arrow-right.svg +4 -0
  22. package/src/assets/svg/book.jsx +34 -0
  23. package/src/assets/svg/calendar.jsx +64 -0
  24. package/src/assets/svg/close.jsx +15 -0
  25. package/src/assets/svg/coolicon.svg +3 -0
  26. package/src/assets/svg/download.jsx +32 -0
  27. package/src/assets/svg/eos-icons_machine-learning-outlined.svg +6 -0
  28. package/src/assets/svg/learning.jsx +21 -0
  29. package/src/assets/svg/logout.svg +5 -0
  30. package/src/assets/svg/material-symbols_spatial-audio-outline-rounded.svg +3 -0
  31. package/src/assets/svg/message.jsx +39 -0
  32. package/src/assets/svg/notification.jsx +32 -0
  33. package/src/assets/svg/people.jsx +17 -0
  34. package/src/assets/svg/search.jsx +24 -0
  35. package/src/assets/svg/setting.jsx +14 -0
  36. package/src/components/ApiProgress/ApiConsumption/assets/Vector.jsx +8 -0
  37. package/src/components/ApiProgress/ApiConsumption/index.jsx +60 -0
  38. package/src/components/ApiProgress/ApiConsumption/styles/index.jsx +61 -0
  39. package/src/components/ApiProgress/ApiProgressBar/index.jsx +99 -0
  40. package/src/components/ApiProgress/ApiProgressBar/styles/index.jsx +122 -0
  41. package/src/components/ApiProgress/toggle/index.jsx +34 -0
  42. package/src/components/ApiProgress/toggle/styles/index.jsx +72 -0
  43. package/src/components/AppMainLayout/index.jsx +50 -0
  44. package/src/components/AppMainLayout/index.styled.js +37 -0
  45. package/src/components/Arrow.jsx +24 -0
  46. package/src/components/apiBar/bar.jsx +46 -0
  47. package/src/components/apiBar/index.jsx +55 -0
  48. package/src/components/authentication/assets/images/sign_up.png +0 -0
  49. package/src/components/authentication/index.styled.js +32 -0
  50. package/src/components/authentication/mainLayout.jsx +14 -0
  51. package/src/components/banner/assets/Vector19.png +0 -0
  52. package/src/components/banner/assets/banner.png +0 -0
  53. package/src/components/banner/index.jsx +41 -0
  54. package/src/components/banner/styles/index.jsx +81 -0
  55. package/src/components/bar/styles.css +19 -0
  56. package/src/components/button/index.jsx +329 -0
  57. package/src/components/button/socialBtn.jsx +38 -0
  58. package/src/components/calender/input.jsx +202 -0
  59. package/src/components/calender/styles/input.jsx +127 -0
  60. package/src/components/checkBoxes/checkbox/doc.md +36 -0
  61. package/src/components/checkBoxes/checkbox/index.jsx +53 -0
  62. package/src/components/checkBoxes/checkbox/styles/index.jsx +64 -0
  63. package/src/components/checkBoxes/checkboxGroup/doc.md +55 -0
  64. package/src/components/checkBoxes/checkboxGroup/index.jsx +47 -0
  65. package/src/components/checkBoxes/checkboxGroup/styles/index.jsx +7 -0
  66. package/src/components/course/courseList/index.jsx +32 -0
  67. package/src/components/course/courseList/styles/index.jsx +10 -0
  68. package/src/components/course/coursecard/index.jsx +56 -0
  69. package/src/components/course/coursecard/styles/index.jsx +70 -0
  70. package/src/components/developerAPIdocs/assets/icons.jsx +46 -0
  71. package/src/components/developerAPIdocs/assets/learngual_developer_api_doc.png +0 -0
  72. package/src/components/developerAPIdocs/index.jsx +154 -0
  73. package/src/components/developerAPIdocs/index.styled.js +137 -0
  74. package/src/components/dropdown component/index.jsx +139 -0
  75. package/src/components/dropdown component/styles.js +82 -0
  76. package/src/components/friendRequest/friendRequestCard/doc.md +49 -0
  77. package/src/components/friendRequest/friendRequestCard/index.jsx +82 -0
  78. package/src/components/friendRequest/friendRequestCard/styles/index.jsx +109 -0
  79. package/src/components/friendRequest/friendRequestList/doc.md +61 -0
  80. package/src/components/friendRequest/friendRequestList/index.jsx +58 -0
  81. package/src/components/friendRequest/friendRequestList/styles/index.jsx +34 -0
  82. package/src/components/graph/graphData.jsx +119 -0
  83. package/src/components/graph/index.jsx +111 -0
  84. package/src/components/graph/index.styled.js +261 -0
  85. package/src/components/header/account-dropdown.jsx +86 -0
  86. package/src/components/header/assets/images/User-avatar.svg.png +0 -0
  87. package/src/components/header/assets/images/android.png +0 -0
  88. package/src/components/header/assets/images/avatar.png +0 -0
  89. package/src/components/header/assets/images/figma.png +0 -0
  90. package/src/components/header/assets/images/linkedin.png +0 -0
  91. package/src/components/header/assets/images/logo.png +0 -0
  92. package/src/components/header/assets/images/sign_up.png +0 -0
  93. package/src/components/header/assets/svg/add.jsx +14 -0
  94. package/src/components/header/assets/svg/arrow-down.jsx +14 -0
  95. package/src/components/header/assets/svg/book.jsx +34 -0
  96. package/src/components/header/assets/svg/close.jsx +15 -0
  97. package/src/components/header/assets/svg/coolicon.svg +3 -0
  98. package/src/components/header/assets/svg/message.jsx +39 -0
  99. package/src/components/header/assets/svg/notification.jsx +32 -0
  100. package/src/components/header/assets/svg/people.jsx +17 -0
  101. package/src/components/header/assets/svg/search.jsx +24 -0
  102. package/src/components/header/assets/svg/setting.jsx +14 -0
  103. package/src/components/header/index.jsx +134 -0
  104. package/src/components/header/index.styled.js +486 -0
  105. package/src/components/header/login-header.jsx +71 -0
  106. package/src/components/input/index.jsx +68 -0
  107. package/src/components/input/index.styled.js +45 -0
  108. package/src/components/loader/index.jsx +70 -0
  109. package/src/components/notificationProgressBar/index.jsx +187 -0
  110. package/src/components/notificationProgressBar/styles/index.jsx +122 -0
  111. package/src/components/notificationThreshold/index.jsx +111 -0
  112. package/src/components/notificationThreshold/index.styled.js +129 -0
  113. package/src/components/notificationThreshold/slider.jsx +46 -0
  114. package/src/components/progressBar/index.jsx +32 -0
  115. package/src/components/progressBar/styles/index.jsx +44 -0
  116. package/src/components/radio/doc.md +41 -0
  117. package/src/components/radio/index.jsx +70 -0
  118. package/src/components/radio/styles/index.jsx +56 -0
  119. package/src/components/searchBar/doc.md +68 -0
  120. package/src/components/searchBar/index.jsx +108 -0
  121. package/src/components/searchBar/styles/index.jsx +89 -0
  122. package/src/components/select/doc.md +0 -0
  123. package/src/components/select/index.jsx +122 -0
  124. package/src/components/select/styles/index.jsx +98 -0
  125. package/src/components/sideBar/sideMenu/index.jsx +95 -0
  126. package/src/components/sideBar/sideMenu/styles/index.jsx +135 -0
  127. package/src/components/sideBar/userCard/index.jsx +32 -0
  128. package/src/components/sideBar/userCard/styles/index.jsx +37 -0
  129. package/src/components/sideNav/index.jsx +28 -0
  130. package/src/components/sideNav/styles/index.jsx +159 -0
  131. package/src/components/subscriptionPreview/index.jsx +55 -0
  132. package/src/components/subscriptionPreview/style/style.js +85 -0
  133. package/src/components/successCard/assets/PartyingFace.png +0 -0
  134. package/src/components/successCard/index.jsx +29 -0
  135. package/src/components/successCard/index.styled.js +33 -0
  136. package/src/components/toggle button/index.jsx +43 -0
  137. package/src/components/toggle button/styles.js +26 -0
@@ -0,0 +1,261 @@
1
+ import styled from "styled-components";
2
+
3
+ export const GraphCard = styled.div`
4
+ background-color: rgba(255, 255, 255, 1);
5
+ padding: 25px 23px;
6
+ font-family: "Nunito";
7
+ width: 100%;
8
+ /* max-width: 720px; */
9
+ border-radius: 30px;
10
+ border: 1px solid #C6CCCC;
11
+ border-radius: 34px;
12
+ `;
13
+
14
+ export const GraphCardHeader = styled.div`
15
+ width: 100%;
16
+ display: flex;
17
+ justify-content: space-between;
18
+
19
+ .time-calc-wrapper {
20
+ max-width: 300px;
21
+ width: 100%;
22
+ display: flex;
23
+ background-color: rgba(0, 194, 194, 0.1);
24
+ border: 0.5px solid #c6cccc;
25
+ border-radius: 12px;
26
+
27
+ .total-time {
28
+ width: 48%;
29
+ padding: 10px 15px;
30
+ border-right: 0.5px solid #c6cccc;
31
+ text-align: center;
32
+ h6 {
33
+ font-size: 10px;
34
+ font-weight: 700;
35
+ color: #313333;
36
+ }
37
+
38
+ h3 {
39
+ font-size: 20px;
40
+ font-weight: 700;
41
+ color: #00c2c2;
42
+ }
43
+ }
44
+
45
+ .projected-time {
46
+ width: 47%;
47
+ padding: 10px 15px;
48
+ text-align: center;
49
+
50
+ h6 {
51
+ font-size: 10px;
52
+ font-weight: 700;
53
+ color: #313333;
54
+ }
55
+
56
+ h3 {
57
+ font-size: 20px;
58
+ font-weight: 700;
59
+ color: #fecf4c;
60
+ }
61
+ }
62
+ }
63
+
64
+ .date-wrapper {
65
+ display: flex;
66
+ align-items: center;
67
+
68
+ span {
69
+ font-size: 10px;
70
+ margin: 0 10px;
71
+ }
72
+
73
+ .download__wrapper {
74
+ padding: 7px 9px;
75
+ border-radius: 6px;
76
+ background-color: rgba(176, 220, 220, 0.42);
77
+ border: 0.5px solid #00c2c2;
78
+ margin-left: 20px;
79
+ display: flex;
80
+ align-items: center;
81
+ justify-content: center;
82
+ }
83
+
84
+ .datepicker__wrapper {
85
+ display: flex;
86
+ align-items: center;
87
+ width: 120px;
88
+ border-radius: 10px;
89
+ padding: 7px 12px;
90
+ border: 0.5px solid #e0e0e0;
91
+
92
+
93
+ .react-datepicker{
94
+ background: #FFFFFF;
95
+ border: none;
96
+ border-radius: 12px;
97
+ z-index: 1;
98
+ // padding: 5px;
99
+
100
+ }
101
+
102
+ .react-datepicker__header{
103
+ background: #FFFFFF;
104
+ border: none;
105
+
106
+ }
107
+ .react-datepicker__current-month{
108
+ display: flex;
109
+ justify-content: space-between;
110
+ padding: 5px 20px;
111
+ padding-top: 20px;
112
+ padding-bottom: 20px;
113
+ font-weight: 600;
114
+ font-size: 16px;
115
+ }
116
+
117
+ .react-datepicker__navigation {
118
+ background: #F7F7F7;
119
+ border: 0.458333px solid #E0E0E0;
120
+ border-radius: 1.83333px;
121
+ padding: 15px;
122
+ margin-top: 15px;
123
+ // margin-right: 10px;
124
+
125
+ }
126
+ .react-datepicker__navigation--next {
127
+ margin-right: 22px;
128
+ font-size: 10px;
129
+ }
130
+
131
+ .react-datepicker__day--keyboard-selected{
132
+ background: #00C2C2;
133
+ }
134
+
135
+ .react-datepicker__navigation--previous {
136
+ margin-left: 275px;
137
+ font-size: 10px;
138
+ }
139
+
140
+ .react-datepicker__navigation-icon--next {
141
+ width: 10px;
142
+ height: 20px;
143
+ font-size: 20px;
144
+ margin-right: 10px;
145
+ }
146
+
147
+ .react-datepicker__navigation-icon--previous{
148
+ width: 10px;
149
+ height: 20px;
150
+ font-size: 20px;
151
+ margin-left: 10px;
152
+ }
153
+
154
+ .react-datepicker__navigation-icon--next{
155
+
156
+ }
157
+
158
+ .react-datepicker__day-names {
159
+ display: flex;
160
+ justify-content: space-around;
161
+ font-weight: 600;
162
+ font-size: 15px;
163
+ padding: 5px 5px;
164
+
165
+ }
166
+
167
+ .datepicker_style{
168
+ background: #FFFFFF;
169
+ border-radius: 12px;
170
+ .react-datepicker__day{
171
+ width: 46px;
172
+ height: 33px;
173
+ padding: 4px;
174
+ font-size: 14px;
175
+ &:focus {
176
+ border: 2px solid rgba(59, 59, 59, 0.282);
177
+ }
178
+ color: #444444;
179
+ &:hover {
180
+ color: #0094BA;
181
+ background: rgba(0, 148, 186, 0.04);
182
+ }
183
+ }
184
+
185
+ .react-datepicker__day--selected{
186
+ background: #00C2C2;
187
+ color: #EEEEEE;
188
+ border-radius: 10px;
189
+
190
+ &:hover {
191
+ color: #0094BA;
192
+ background: rgba(0, 148, 186, 0.04);
193
+ }
194
+ }
195
+ }
196
+
197
+ svg {
198
+ width: 45px;
199
+ }
200
+ .react-datepicker-wrapper {
201
+ width: auto !important;
202
+
203
+ .react-datepicker__input-container input {
204
+ border: none;
205
+ font-size: 12px;
206
+ width: 100%;
207
+ outline: none;
208
+ }
209
+ }
210
+
211
+ .react-datepicker__day--selected,
212
+ .react-datepicker__day--keyboard-selected,
213
+ .react-datepicker__day--in-selecting-range,
214
+ .react-datepicker__day--in-range {
215
+ border-radius: 1.3rem;
216
+ background-color: rgba(176, 220, 220, 0.42);
217
+ color: #313333;
218
+ }
219
+ .datepicker-container {
220
+ display: flex;
221
+ align-items: center;
222
+ position: relative;
223
+ color: rgba(176, 220, 220, 0.42);
224
+ // width: 215px;
225
+ padding: 8px 16px;
226
+ border-radius: 12px;
227
+ font-size: 13px;
228
+ margin-left: auto;
229
+ }
230
+ }
231
+ }
232
+ `;
233
+
234
+ export const GraphCardBody = styled.div`
235
+ width: 100%;
236
+ display: flex;
237
+ margin-top: 20px;
238
+ margin-bottom: 10px;
239
+ `;
240
+
241
+ export const GraphCardFooter = styled.div`
242
+ width: 100%;
243
+ display: flex;
244
+
245
+ span {
246
+ background-color: #f3f3f3;
247
+ border: 0.5px solid #d9d9d9;
248
+ font-weight: 500;
249
+ font-size: 12px;
250
+ color: #000000;
251
+ border-radius: 10px;
252
+ margin-right: 10px;
253
+ padding: 12px 16px;
254
+ cursor: pointer;
255
+
256
+ &.active {
257
+ background-color: #00c2c2;
258
+ color: #ffffff;
259
+ }
260
+ }
261
+ `;
@@ -0,0 +1,86 @@
1
+ import { useState, useEffect } from "react";
2
+ import { CloseIcon } from "./assets/svg/close";
3
+ import { AddIcon } from "./assets/svg/add";
4
+ import {
5
+ AccountDropdownLayout,
6
+ AccountDropdownHeader,
7
+ AccountDropdownBody,
8
+ AccountDropdownFooter,
9
+ } from "./index.styled";
10
+ /**
11
+ * @param {{
12
+ * type: string,
13
+ * text: string,
14
+ * onClick: Function,
15
+ * style: CSSProperties,
16
+ * }} props - properties of Header Component
17
+ *
18
+ */
19
+ const AccountDropdown = (props) => {
20
+ return (
21
+ <>
22
+ <AccountDropdownLayout>
23
+ <AccountDropdownHeader>
24
+ <div>
25
+ <img src={props.avatar} alt="account photo" />
26
+ </div>
27
+ <div>
28
+ <h1> {props.activeAccountName}</h1>
29
+ <h2>{props.activeAccountType} </h2>
30
+ </div>
31
+ <CloseIcon onClick={(e) => props.setIsOpen(!props.isOpen)} />
32
+ </AccountDropdownHeader>
33
+ <AccountDropdownBody>
34
+ {/* {props.apiAccountType === `${props.accountType}` && ( */}
35
+ <div>
36
+ <h3>{props.accountType} </h3>
37
+ <div className="account-info">
38
+ <div className="avatar-container">
39
+ <img src={props.avatar} alt="account photo" />
40
+ </div>
41
+ <div className="account-details">
42
+ <h1> {props.accountName}</h1>
43
+ <span>{props.notificationCount} </span>
44
+ </div>
45
+ </div>
46
+ </div>
47
+
48
+ <div>
49
+ <h3>{props.accountType} </h3>
50
+ <div className="account-info">
51
+ <div className="avatar-container">
52
+ <img src={props.avatar} alt="account photo" />
53
+ </div>
54
+ <div className="account-details">
55
+ <h1> {props.accountName}</h1>
56
+ <span>{props.notificationCount} </span>
57
+ </div>
58
+ </div>
59
+ </div>
60
+
61
+ <div>
62
+ <h3>{props.accountType} </h3>
63
+ <div className="account-info">
64
+ <div className="avatar-container">
65
+ <img src={props.avatar} alt="account photo" />
66
+ </div>
67
+ <div className="account-details">
68
+ <h1> {props.accountName}</h1>
69
+ <span>{props.notificationCount} </span>
70
+ </div>
71
+ </div>
72
+ </div>
73
+ {/* // )} */}
74
+ </AccountDropdownBody>
75
+
76
+ <AccountDropdownFooter>
77
+ <button>
78
+ <AddIcon /> Add Account
79
+ </button>
80
+ </AccountDropdownFooter>
81
+ </AccountDropdownLayout>
82
+ </>
83
+ );
84
+ };
85
+
86
+ export default AccountDropdown;
@@ -0,0 +1,14 @@
1
+ export const AddIcon = ({ width, height, fill }) => (
2
+ <svg
3
+ width={width || "21"}
4
+ height={height || "20"}
5
+ viewBox="0 0 21 20"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M11.5 5H9.5V9H5.5V11H9.5V15H11.5V11H15.5V9H11.5V5ZM10.5 0C4.98 0 0.5 4.48 0.5 10C0.5 15.52 4.98 20 10.5 20C16.02 20 20.5 15.52 20.5 10C20.5 4.48 16.02 0 10.5 0ZM10.5 18C6.09 18 2.5 14.41 2.5 10C2.5 5.59 6.09 2 10.5 2C14.91 2 18.5 5.59 18.5 10C18.5 14.41 14.91 18 10.5 18Z"
11
+ fill="#FEBF10"
12
+ />
13
+ </svg>
14
+ );
@@ -0,0 +1,14 @@
1
+ export const ArrowDownIcon = ({ width, height, fill }) => (
2
+ <svg
3
+ width={width || "10"}
4
+ height={height || "7"}
5
+ viewBox="0 0 10 7"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M0.046875 1.13489L4.99646 6.08447L9.94604 1.13489L9.12121 0.309473L4.99646 4.43481L0.871708 0.309473L0.046875 1.13489Z"
11
+ fill="#323232"
12
+ />
13
+ </svg>
14
+ );
@@ -0,0 +1,34 @@
1
+ export const BookIcon = ({ width, height, fill }) => (
2
+ <svg
3
+ width={width || "23"}
4
+ height={height || "24"}
5
+ viewBox="0 0 23 24"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M21.0807 16.1404V4.57336C21.0807 3.42336 20.1416 2.57044 19.0011 2.66627H18.9436C16.9311 2.83877 13.8741 3.86419 12.1682 4.93752L12.0053 5.04294C11.7274 5.21544 11.2674 5.21544 10.9895 5.04294L10.7499 4.89919C9.04406 3.83544 5.99656 2.81961 3.98406 2.65669C2.84365 2.56086 1.91406 3.42336 1.91406 4.56377V16.1404C1.91406 17.0604 2.66156 17.9229 3.58156 18.0379L3.85948 18.0763C5.93906 18.3542 9.14948 19.4084 10.9895 20.4146L11.0278 20.4338C11.2866 20.5775 11.6986 20.5775 11.9478 20.4338C13.7878 19.4179 17.0078 18.3542 19.097 18.0763L19.4132 18.0379C20.3332 17.9229 21.0807 17.0604 21.0807 16.1404Z"
11
+ stroke="#00C2C2"
12
+ stroke-linecap="round"
13
+ stroke-linejoin="round"
14
+ />
15
+ <path
16
+ d="M11.5 5.35938V19.7344"
17
+ stroke="#00C2C2"
18
+ stroke-linecap="round"
19
+ stroke-linejoin="round"
20
+ />
21
+ <path
22
+ d="M7.42969 8.23438H5.27344"
23
+ stroke="#00C2C2"
24
+ stroke-linecap="round"
25
+ stroke-linejoin="round"
26
+ />
27
+ <path
28
+ d="M8.14844 11.1094H5.27344"
29
+ stroke="#00C2C2"
30
+ stroke-linecap="round"
31
+ stroke-linejoin="round"
32
+ />
33
+ </svg>
34
+ );
@@ -0,0 +1,15 @@
1
+ export const CloseIcon = ({ width, height, fill, onClick }) => (
2
+ <svg
3
+ onClick={onClick}
4
+ width={width || "12"}
5
+ height={height || "12"}
6
+ viewBox="0 0 12 12"
7
+ fill="none"
8
+ xmlns="http://www.w3.org/2000/svg"
9
+ >
10
+ <path
11
+ d="M11.8307 1.3415L10.6557 0.166504L5.9974 4.82484L1.33906 0.166504L0.164062 1.3415L4.8224 5.99984L0.164062 10.6582L1.33906 11.8332L5.9974 7.17484L10.6557 11.8332L11.8307 10.6582L7.1724 5.99984L11.8307 1.3415Z"
12
+ fill="#323232"
13
+ />
14
+ </svg>
15
+ );
@@ -0,0 +1,3 @@
1
+ <svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0.046875 1.13489L4.99646 6.08447L9.94604 1.13489L9.12121 0.309473L4.99646 4.43481L0.871708 0.309473L0.046875 1.13489Z" fill="#323232"/>
3
+ </svg>
@@ -0,0 +1,39 @@
1
+ export const MessageIcon = ({ width, height, fill }) => (
2
+ <svg
3
+ width={width || "22"}
4
+ height={width || "22"}
5
+ viewBox="0 0 22 22"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M7.96601 16.9366H7.52031C3.95469 16.9366 2.17188 16.0452 2.17188 11.5882V7.13115C2.17188 3.56553 3.95469 1.78271 7.52031 1.78271H14.6516C18.2172 1.78271 20 3.56553 20 7.13115V11.5882C20 15.1538 18.2172 16.9366 14.6516 16.9366H14.2059C13.9295 16.9366 13.6621 17.0703 13.4927 17.2932L12.1556 19.076C11.5673 19.8604 10.6046 19.8604 10.0162 19.076L8.67914 17.2932C8.53651 17.0971 8.20669 16.9366 7.96601 16.9366Z"
11
+ stroke="#4A4D4D"
12
+ stroke-width="1.5"
13
+ stroke-miterlimit="10"
14
+ stroke-linecap="round"
15
+ stroke-linejoin="round"
16
+ />
17
+ <path
18
+ d="M14.6517 9.80557H14.6598"
19
+ stroke="#4A4D4D"
20
+ stroke-width="2"
21
+ stroke-linecap="round"
22
+ stroke-linejoin="round"
23
+ />
24
+ <path
25
+ d="M11.0814 9.80557H11.0894"
26
+ stroke="#7C8080"
27
+ stroke-width="2"
28
+ stroke-linecap="round"
29
+ stroke-linejoin="round"
30
+ />
31
+ <path
32
+ d="M7.51893 9.80557H7.52694"
33
+ stroke="#7C8080"
34
+ stroke-width="2"
35
+ stroke-linecap="round"
36
+ stroke-linejoin="round"
37
+ />
38
+ </svg>
39
+ );
@@ -0,0 +1,32 @@
1
+ export const NotificationIcon = ({ width, height, fill }) => (
2
+ <svg
3
+ width={width || "23"}
4
+ height={height || "23"}
5
+ viewBox="0 0 23 23"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M10.891 3.59375C7.94042 3.59375 5.54254 5.99163 5.54254 8.94218V11.5183C5.54254 12.0621 5.31077 12.8911 5.03444 13.3546L4.00932 15.0572C3.37642 16.1091 3.81321 17.2768 4.97204 17.669C8.814 18.9527 12.959 18.9527 16.801 17.669C17.8796 17.3125 18.352 16.0378 17.7637 15.0572L16.7386 13.3546C16.4712 12.8911 16.2394 12.0621 16.2394 11.5183V8.94218C16.2394 6.00055 13.8326 3.59375 10.891 3.59375Z"
11
+ stroke="#4A4D4D"
12
+ stroke-width="1.5"
13
+ stroke-miterlimit="10"
14
+ stroke-linecap="round"
15
+ />
16
+ <path
17
+ d="M12.5404 3.85266C12.2641 3.77244 11.9788 3.71004 11.6846 3.67438C10.8289 3.56741 10.0088 3.62981 9.24219 3.85266C9.5007 3.19302 10.1425 2.72949 10.8913 2.72949C11.6401 2.72949 12.2819 3.19302 12.5404 3.85266Z"
18
+ stroke="#4A4D4D"
19
+ stroke-width="1.5"
20
+ stroke-miterlimit="10"
21
+ stroke-linecap="round"
22
+ stroke-linejoin="round"
23
+ />
24
+ <path
25
+ d="M13.5672 17.9902C13.5672 19.4611 12.3638 20.6645 10.893 20.6645C10.162 20.6645 9.48455 20.3614 9.00319 19.88C8.52183 19.3987 8.21875 18.7212 8.21875 17.9902"
26
+ stroke="#4A4D4D"
27
+ stroke-width="1.5"
28
+ stroke-miterlimit="10"
29
+ />
30
+ <circle cx="17.1797" cy="5" r="4.5" fill="#F39B33" stroke="white" />
31
+ </svg>
32
+ );
@@ -0,0 +1,17 @@
1
+ export const PeopleIcon = ({ width, height, fill }) => (
2
+ <svg
3
+ width={width || "19"}
4
+ height={height || "19"}
5
+ viewBox="0 0 19 19"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M9.69453 2.88144C10.3479 2.14119 11.3038 1.67432 12.3687 1.67432C14.338 1.67432 15.9344 3.2707 15.9344 5.23994C15.9344 7.20918 14.338 8.80556 12.3687 8.80556C11.3038 8.80556 10.3479 8.33868 9.69453 7.59844M12.3687 17.7196H1.67188V16.8282C1.67188 13.8744 4.06645 11.4798 7.02031 11.4798C9.97417 11.4798 12.3687 13.8744 12.3687 16.8282V17.7196ZM12.3687 17.7196H17.7172V16.8282C17.7172 13.8744 15.3226 11.4798 12.3687 11.4798C11.3946 11.4798 10.4812 11.7402 9.69453 12.1953M10.5859 5.23994C10.5859 7.20918 8.98955 8.80556 7.02031 8.80556C5.05107 8.80556 3.45469 7.20918 3.45469 5.23994C3.45469 3.2707 5.05107 1.67432 7.02031 1.67432C8.98955 1.67432 10.5859 3.2707 10.5859 5.23994Z"
11
+ stroke="#313333"
12
+ stroke-width="1.5"
13
+ stroke-linecap="round"
14
+ stroke-linejoin="round"
15
+ />
16
+ </svg>
17
+ );
@@ -0,0 +1,24 @@
1
+ export const SearchIcon = ({ width, height, fill }) => (
2
+ <svg
3
+ width={width || "22"}
4
+ height={height || "22"}
5
+ viewBox="0 0 22 22"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M10.2496 19.2194C14.9265 19.2194 18.718 15.428 18.718 10.7511C18.718 6.07413 14.9265 2.28271 10.2496 2.28271C5.57266 2.28271 1.78125 6.07413 1.78125 10.7511C1.78125 15.428 5.57266 19.2194 10.2496 19.2194Z"
11
+ stroke="#4A4D4D"
12
+ stroke-width="1.33711"
13
+ stroke-linecap="round"
14
+ stroke-linejoin="round"
15
+ />
16
+ <path
17
+ d="M19.6109 20.1109L17.8281 18.3281"
18
+ stroke="#4A4D4D"
19
+ stroke-width="1.33711"
20
+ stroke-linecap="round"
21
+ stroke-linejoin="round"
22
+ />
23
+ </svg>
24
+ );
@@ -0,0 +1,14 @@
1
+ export const SettingIcon = ({ width, height, fill }) => (
2
+ <svg
3
+ width={width || "17"}
4
+ height={width || "21"}
5
+ viewBox="0 0 17 21"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M8.48398 20.5025L0.015625 15.5998V5.79433L8.48398 0.891602L16.9523 5.79433V15.5998L8.48398 20.5025ZM8.48398 2.95253L1.79844 6.82212V14.572L8.48398 18.4425L15.1695 14.572V6.82212L8.48398 2.95164V2.95253ZM8.48398 14.2627C7.53863 14.26 6.63248 13.8846 5.96219 13.218C4.94264 12.1981 4.63778 10.6645 5.18977 9.33225C5.74176 7.99999 7.04189 7.13144 8.48398 7.13144C9.4291 7.13398 10.335 7.50942 11.0049 8.17617C12.3968 9.56855 12.3968 11.8256 11.0049 13.218C10.3349 13.8845 9.42904 14.2599 8.48398 14.2627ZM8.48398 8.91425C7.63344 8.91407 6.90121 9.51474 6.73511 10.3489C6.56901 11.1831 7.01531 12.0184 7.80105 12.344C8.58679 12.6697 9.49313 12.3949 9.96579 11.6878C10.4384 10.9807 10.3458 10.0381 9.74443 9.43662C9.41083 9.10125 8.95701 8.91317 8.48398 8.91425Z"
11
+ fill="#4A4D4D"
12
+ />
13
+ </svg>
14
+ );