l-min-components 1.0.601 → 1.0.604

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "l-min-components",
3
- "version": "1.0.601",
3
+ "version": "1.0.604",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src/assets",
@@ -0,0 +1,30 @@
1
+ import React from "react";
2
+
3
+ export const BackArrowIcon = () => {
4
+ return (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ width="24"
8
+ height="25"
9
+ viewBox="0 0 24 25"
10
+ fill="none"
11
+ >
12
+ <g clipPath="url(#clip0_3085_48537)">
13
+ <path
14
+ d="M20 11.5H7.83L13.42 5.91L12 4.5L4 12.5L12 20.5L13.41 19.09L7.83 13.5H20V11.5Z"
15
+ fill="#323232"
16
+ />
17
+ </g>
18
+ <defs>
19
+ <clipPath id="clip0_3085_48537">
20
+ <rect
21
+ width="24"
22
+ height="24"
23
+ fill="white"
24
+ transform="translate(0 0.5)"
25
+ />
26
+ </clipPath>
27
+ </defs>
28
+ </svg>
29
+ );
30
+ };
@@ -0,0 +1,88 @@
1
+ import React, { useState } from "react";
2
+ import { AdminsContainer } from "./index.styled";
3
+ import ButtonComponent from "../../button";
4
+ import { adminList } from "./data";
5
+ import Checkbox from "../../checkBoxes/checkbox/index2";
6
+ import avatar from "../assets/images/avatar.png";
7
+ import { IoFilterSharp } from "react-icons/io5";
8
+ import SearchBar from "../../searchBar";
9
+
10
+ const Admins = () => {
11
+ const [open, setOpen] = useState(false);
12
+ const handleChange = (newValue) => {
13
+ setChecked(newValue);
14
+ };
15
+
16
+ return (
17
+ <AdminsContainer>
18
+ <div className="ad_header">
19
+ <p className="ad_title">Admins</p>
20
+ <ButtonComponent
21
+ text={"Save & Add"}
22
+ styles={{ width: "120px", padding: 10, height: 40 }}
23
+ onClick={(e) => {
24
+ e.preventDefault();
25
+ }}
26
+ />
27
+ </div>
28
+
29
+ <div className="ad_filter_row">
30
+ <SearchBar
31
+ placeholder="Search Admins"
32
+ outlineColor="transparent"
33
+ heightSize="44px"
34
+ widthSize="100%"
35
+ border="1px solid #ADB2B2"
36
+ // onSubmit={setSearch}
37
+ />
38
+
39
+ <div className="ad_drop_filter">
40
+ <div className="ad_filter_box" onClick={() => setOpen(!open)}>
41
+ <IoFilterSharp />
42
+ All
43
+ </div>
44
+
45
+ {open && (
46
+ <div className="ad_filter_body">
47
+ <p className="afb_item"> Manager</p>
48
+ <p className="afb_item"> IT</p>
49
+ <p className="afb_item"> Security </p>
50
+ <p className="afb_item"> CMS </p>
51
+ <p className="afb_item"> Unassigned </p>
52
+ <p className="afb_item"> Undefined</p>
53
+ </div>
54
+ )}
55
+ </div>
56
+ </div>
57
+
58
+ <div className="ad_body">
59
+ {adminList?.map((item, idx) => (
60
+ <div className="ad_list_row" key={idx}>
61
+ <div className="adl_box">
62
+ <Checkbox
63
+ label=""
64
+ color="#ff9900"
65
+ defaultValue={item.selection}
66
+ onChange={handleChange}
67
+ className="adm_check"
68
+ />
69
+ </div>
70
+
71
+ <div className="adl_wrapper">
72
+ <div className="adl_img">
73
+ <img src={item?.image} alt="" />
74
+ </div>
75
+
76
+ <div>
77
+ <p className="adl_title">{item?.name}</p>
78
+ <span className="adl_stat"> {item?.status}</span>
79
+ </div>
80
+ </div>
81
+ </div>
82
+ ))}
83
+ </div>
84
+ </AdminsContainer>
85
+ );
86
+ };
87
+
88
+ export default Admins;
@@ -0,0 +1,129 @@
1
+ import avatar from "../assets/images/avatar.png"
2
+
3
+ export const permissionsData = [
4
+ {
5
+ title: "Skill Test",
6
+ },
7
+ {
8
+ title: "Lesson",
9
+ },
10
+ {
11
+ title: "Manage Content",
12
+ },
13
+ {
14
+ title: "Flagged Content",
15
+ },
16
+ {
17
+ title: "Jet Fuel",
18
+ },
19
+ {
20
+ title: "Settings",
21
+ },
22
+ ];
23
+
24
+ export const roleList = [
25
+ {
26
+ name: "Statistics",
27
+ level: 3
28
+ },
29
+ {
30
+ name: "CMS",
31
+ level: 3
32
+ },
33
+ {
34
+ name: "Support",
35
+ level: 3
36
+ },
37
+ {
38
+ name: "Admin",
39
+ level: 3
40
+ },
41
+ {
42
+ name: "Statistics",
43
+ level: 3
44
+ },
45
+ {
46
+ name: "Statistics",
47
+ level: 3
48
+ },
49
+ {
50
+ name: "Statistics",
51
+ level: 3
52
+ },
53
+ ]
54
+
55
+
56
+ export const adminList = [
57
+ {
58
+ name: "Acme Co.",
59
+ status: "Unassigned",
60
+ image: avatar,
61
+ selection: false,
62
+ },
63
+ {
64
+ name: "Acme Co.",
65
+ status: "Unassigned",
66
+ image: avatar,
67
+ selection: false,
68
+ },
69
+ {
70
+ name: "Acme Co.",
71
+ status: "Unassigned",
72
+ image: avatar,
73
+ selection: false,
74
+ },
75
+ {
76
+ name: "Acme Co.",
77
+ status: "Unassigned",
78
+ image: avatar,
79
+ selection: false,
80
+ },
81
+ {
82
+ name: "Acme Co.",
83
+ status: "Unassigned",
84
+ image: avatar,
85
+ selection: false,
86
+ },
87
+ {
88
+ name: "Acme Co.",
89
+ status: "Unassigned",
90
+ image: avatar,
91
+ selection: false,
92
+ },
93
+ {
94
+ name: "Acme Co.",
95
+ status: "Unassigned",
96
+ image: avatar,
97
+ selection: false,
98
+ },
99
+ {
100
+ name: "Acme Co.",
101
+ status: "Unassigned",
102
+ image: avatar,
103
+ selection: false,
104
+ },
105
+ {
106
+ name: "Acme Co.",
107
+ status: "Unassigned",
108
+ image: avatar,
109
+ selection: false,
110
+ },
111
+ {
112
+ name: "Acme Co.",
113
+ status: "Unassigned",
114
+ image: avatar,
115
+ selection: false,
116
+ },
117
+ {
118
+ name: "Acme Co.",
119
+ status: "Unassigned",
120
+ image: avatar,
121
+ selection: false,
122
+ },
123
+ {
124
+ name: "Acme Co.",
125
+ status: "Unassigned",
126
+ image: avatar,
127
+ selection: false,
128
+ },
129
+ ]
@@ -0,0 +1,42 @@
1
+ import React, { useState } from "react";
2
+ import { AdminRolesCreateContainer } from "./index.styled";
3
+ import { BackArrowIcon } from "../assets/svg/backArrow";
4
+ import RoleName from "./role-name";
5
+ import Permissions from "./permissions";
6
+ import Admins from "./admins";
7
+
8
+ const AdminRolesCreate = () => {
9
+ const [type, setType] = useState("permissions");
10
+
11
+ return (
12
+ <AdminRolesCreateContainer>
13
+ <div className="arp_header">
14
+ <p className="arp_title">
15
+ <span onClick={() => navigate(-1)}>
16
+ <BackArrowIcon />
17
+ </span>
18
+ Create New Role{" "}
19
+ </p>
20
+ <p className="arp_ref">
21
+ Settings <span className="slash">/</span> Roles&permissions{" "}
22
+ <span className="slash">/</span> <span>Create New</span>
23
+ </p>
24
+ </div>
25
+
26
+ <div className="arp_create_row">
27
+ <div className="arp_detail_one">
28
+ <RoleName />
29
+ </div>
30
+
31
+ <div className="hr_line"></div>
32
+
33
+ <div className="arp_role_list">
34
+ {type === "permissions" && <Admins />}
35
+ {type === "permissions" && <Permissions />}
36
+ </div>
37
+ </div>
38
+ </AdminRolesCreateContainer>
39
+ );
40
+ };
41
+
42
+ export default AdminRolesCreate;
@@ -0,0 +1,346 @@
1
+ import styled from "styled-components";
2
+
3
+ export const AdminRolesCreateContainer = styled.div`
4
+ .hr_line {
5
+ border-radius: 31px;
6
+ background: #d9d9d9;
7
+ height: 100vh;
8
+ width: 1px;
9
+ }
10
+
11
+ .arp_header {
12
+ display: flex;
13
+ align-items: center;
14
+ justify-content: space-between;
15
+ margin-bottom: 20px;
16
+
17
+ .arp_title {
18
+ color: #1c2434;
19
+ font-size: 18px;
20
+ font-weight: 700;
21
+ display: flex;
22
+ align-items: center;
23
+ gap: 10px;
24
+ span {
25
+ display: flex;
26
+ align-items: center;
27
+ }
28
+ }
29
+
30
+ .arp_ref {
31
+ color: #64748b;
32
+ font-size: 16px;
33
+ font-weight: 600;
34
+ line-height: normal;
35
+ display: flex;
36
+ align-items: center;
37
+ gap: 8px;
38
+
39
+ span {
40
+ color: #3c50e0;
41
+ }
42
+
43
+ .slash {
44
+ color: #64748b;
45
+ }
46
+ }
47
+ }
48
+
49
+ .arp_create_row {
50
+ display: flex;
51
+ width: 100%;
52
+
53
+ .arp_detail_one {
54
+ width: 40%;
55
+ }
56
+
57
+ .arp_role_list {
58
+ width: 58%;
59
+ }
60
+ }
61
+ `;
62
+
63
+ export const RoleNameContainer = styled.div`
64
+ padding-right: 31px;
65
+
66
+ .rl_title {
67
+ color: #c6cccc;
68
+ font-size: 40px;
69
+ font-weight: 700;
70
+ margin-bottom: 20px;
71
+ }
72
+
73
+ .rl_perm_txt {
74
+ color: #4a4d4d;
75
+ font-size: 20px;
76
+ font-weight: 600;
77
+ letter-spacing: 0.4px;
78
+ margin-bottom: 6px;
79
+ }
80
+ .rl_perm_subtxt {
81
+ color: #adb2b2;
82
+ font-size: 16px;
83
+ font-weight: 400;
84
+ letter-spacing: 0.32px;
85
+ margin-bottom: 16px;
86
+ }
87
+ .role_list_row {
88
+ display: flex;
89
+ align-items: center;
90
+ gap: 10px;
91
+ margin-bottom: 16px;
92
+
93
+ .rlr_col {
94
+ padding: 8px;
95
+ height: 28px;
96
+ border-radius: 44px;
97
+ border: 1px solid #099;
98
+ background: rgba(0, 194, 194, 0.1);
99
+ display: flex;
100
+ gap: 10px;
101
+ align-items: center;
102
+ color: #099;
103
+ font-size: 12px;
104
+ font-weight: 500;
105
+ letter-spacing: 0.24px;
106
+
107
+ span {
108
+ border-radius: 100%;
109
+ background: #00c2c2;
110
+ width: 16px;
111
+ height: 16px;
112
+ display: flex;
113
+ align-items: center;
114
+ justify-content: center;
115
+ color: #fff;
116
+ font-size: 12px;
117
+ font-weight: 500;
118
+ letter-spacing: 0.24px;
119
+ }
120
+ }
121
+
122
+ .rlr_others {
123
+ margin-left: 6px;
124
+ color: #099;
125
+ font-size: 15px;
126
+ font-weight: 700;
127
+ display: flex;
128
+ align-items: center;
129
+ }
130
+ }
131
+
132
+ .admins_row {
133
+ display: flex;
134
+ align-items: center;
135
+ gap: 6px;
136
+ margin-bottom: 16px;
137
+
138
+ .adm_others {
139
+ margin-left: 6px;
140
+ color: #00c2c2;
141
+ font-size: 16px;
142
+ font-weight: 600;
143
+ display: flex;
144
+ align-items: center;
145
+ }
146
+
147
+ .adm_img_group {
148
+ position: relative;
149
+ display: flex;
150
+ align-items: center;
151
+ max-width: 90px;
152
+ width: 100%;
153
+
154
+ .adr_img {
155
+ width: 38px;
156
+ height: 38px;
157
+ border-radius: 100%;
158
+ border: 1px solid #c6cccc;
159
+ background: #c6cccc;
160
+
161
+ &:nth-child(2) {
162
+ position: absolute;
163
+ left: 26px;
164
+ }
165
+ &:nth-child(3) {
166
+ position: absolute;
167
+ left: 53px;
168
+ }
169
+ img {
170
+ width: 100%;
171
+ border-radius: 100%;
172
+ }
173
+ }
174
+ }
175
+ }
176
+ `;
177
+
178
+ export const PermissionsContainer = styled.div`
179
+ padding-left: 25px;
180
+
181
+ .pm_header {
182
+ display: flex;
183
+ align-items: center;
184
+ justify-content: space-between;
185
+ gap: 24px;
186
+ margin-bottom: 26px;
187
+
188
+ .pm_title {
189
+ color: #4a4d4d;
190
+ font-size: 24px;
191
+ font-weight: 700;
192
+ line-height: normal;
193
+ }
194
+ }
195
+ `;
196
+
197
+ export const PermissionsAccordion = styled.div`
198
+ border-radius: 12px;
199
+ background: #f5f7f7;
200
+ padding: 12px;
201
+ margin-bottom: 20px;
202
+ transition: 0.3 all;
203
+
204
+ .rc-accordion-toggle {
205
+ position: relative;
206
+ display: flex;
207
+ justify-content: space-between;
208
+ color: #636666;
209
+ align-items: center;
210
+ font-size: 16px;
211
+ font-weight: 700;
212
+
213
+ span {
214
+ display: flex;
215
+ align-items: center;
216
+ justify-content: center;
217
+ }
218
+ }
219
+
220
+ .rc-collapse {
221
+ position: relative;
222
+ height: 0;
223
+ overflow: hidden;
224
+ transition: height 0.35s ease;
225
+ }
226
+ .rc-collapse.show {
227
+ height: auto;
228
+ }
229
+
230
+ .rc-accordion-toggle.active .rc-accordion-icon {
231
+ transform: rotate(180deg);
232
+ }
233
+ `;
234
+
235
+ export const AdminsContainer = styled.div`
236
+ padding-left: 25px;
237
+
238
+ .ad_header {
239
+ display: flex;
240
+ align-items: center;
241
+ justify-content: space-between;
242
+ gap: 24px;
243
+ margin-bottom: 26px;
244
+
245
+ .ad_title {
246
+ color: #4a4d4d;
247
+ font-size: 24px;
248
+ font-weight: 700;
249
+ line-height: normal;
250
+ }
251
+ }
252
+
253
+ .ad_filter_row {
254
+ display: flex;
255
+ align-items: center;
256
+ gap: 11px;
257
+ width: 100%;
258
+ justify-content: space-between;
259
+
260
+ .ad_drop_filter {
261
+ position: relative;
262
+ }
263
+
264
+ .ad_filter_box {
265
+ border-radius: 12px;
266
+ border: 1px solid #c6cccc;
267
+ background: #fff;
268
+ min-width: 170px;
269
+ height: 44px;
270
+ padding: 10px 20px;
271
+ display: flex;
272
+ gap: 10px;
273
+ align-items: center;
274
+ color: #636666;
275
+ font-size: 14px;
276
+ font-weight: 600;
277
+ }
278
+
279
+ .ad_filter_body {
280
+ position: absolute;
281
+ top: 50px;
282
+ left: 0;
283
+ min-width: 170px;
284
+ border-radius: 8px;
285
+ background: #fff;
286
+ box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
287
+ height: 236px;
288
+ padding: 8px;
289
+ .afb_item {
290
+ padding: 8px;
291
+ color: #1c1c1c;
292
+ font-family: "Inter";
293
+ font-size: 14px;
294
+ font-weight: 400;
295
+ }
296
+ }
297
+ }
298
+
299
+ .ad_body {
300
+ .ad_list_row {
301
+ display: flex;
302
+ padding: 14px 0;
303
+ align-items: center;
304
+ border-bottom: 1px solid #dfe5e5;
305
+
306
+ .adl_box {
307
+ margin-right: 16px;
308
+ .adm_check > span {
309
+ border-radius: 8px;
310
+ }
311
+ }
312
+
313
+ .adl_wrapper {
314
+ display: flex;
315
+ gap: 8px;
316
+ align-items: center;
317
+ .adl_img {
318
+ width: 38px;
319
+ height: 38px;
320
+ background: #c6cccc;
321
+ border-radius: 100%;
322
+ img {
323
+ width: 100%;
324
+ border-radius: 100%;
325
+ }
326
+ }
327
+
328
+ .adl_title {
329
+ color: #03091d;
330
+ font-size: 16px;
331
+ font-weight: 600;
332
+ margin-bottom: 2px;
333
+ }
334
+
335
+ .adl_stat {
336
+ padding: 1px 6px;
337
+ border-radius: 37px;
338
+ background: #f5f7f7;
339
+ color: #949999;
340
+ font-size: 12px;
341
+ font-weight: 600;
342
+ }
343
+ }
344
+ }
345
+ }
346
+ `;
@@ -0,0 +1,59 @@
1
+ import React, { useState, useRef } from "react";
2
+ import { PermissionsAccordion, PermissionsContainer } from "./index.styled";
3
+ import ButtonComponent from "../../button";
4
+ import { permissionsData } from "./data";
5
+ import { IoChevronDown } from "react-icons/io5";
6
+
7
+ const Permissions = () => {
8
+ const contentEl = useRef();
9
+ const [active, setActive] = useState(null);
10
+
11
+ const handleToggle = (index) => {
12
+ if (active === index) {
13
+ setActive(null);
14
+ } else {
15
+ setActive(index);
16
+ }
17
+ };
18
+ return (
19
+ <PermissionsContainer>
20
+ <div className="pm_header">
21
+ <p className="pm_title">Permissions</p>
22
+ <ButtonComponent
23
+ text={"Save & Add"}
24
+ styles={{ width: "120px", padding: 10, height: 40 }}
25
+ onClick={(e) => {
26
+ e.preventDefault();
27
+ }}
28
+ />
29
+ </div>
30
+
31
+ <div className="pm_body">
32
+ {permissionsData?.map((item, idx) => (
33
+ <PermissionsAccordion key={idx}>
34
+ <div
35
+ className={`rc-accordion-toggle ${
36
+ active === idx ? "active" : ""
37
+ }`}
38
+ onClick={() => handleToggle(idx)}
39
+ >
40
+ {item?.title}
41
+
42
+ <span className="rc-accordion-icon">
43
+ <IoChevronDown />
44
+ </span>
45
+ </div>
46
+
47
+ <div
48
+ ref={contentEl}
49
+ className={`rc-collapse ${active === idx ? "show" : ""}`}
50
+ style={active === idx ? { height: "auto" } : { height: "0px" }}
51
+ ></div>
52
+ </PermissionsAccordion>
53
+ ))}
54
+ </div>
55
+ </PermissionsContainer>
56
+ );
57
+ };
58
+
59
+ export default Permissions;
@@ -0,0 +1,92 @@
1
+ import React from "react";
2
+ import { RoleNameContainer } from "./index.styled";
3
+ import ButtonComponent from "../../button";
4
+ import { roleList } from "./data";
5
+ import avatar from "../assets/images/avatar.png"
6
+
7
+ const RoleName = () => {
8
+ return (
9
+ <RoleNameContainer>
10
+ <p className="rl_title">Enter role name</p>
11
+
12
+ <p className="rl_perm_txt">Permissions</p>
13
+ <p className="rl_perm_subtxt">
14
+ Permissions allow admins to access specific functions and perform
15
+ actions.
16
+ </p>
17
+ <div className="role_list_row">
18
+ {roleList?.slice(0, 4)?.map((item, idx) => (
19
+ <div className="rlr_col" key={idx}>
20
+ {item?.name} <span>{item?.level}</span>
21
+ </div>
22
+ ))}
23
+ {roleList?.slice(0, 4)?.length > 0 && (
24
+ <p className="rlr_others">
25
+ {`+ ${roleList?.slice(0, 4)?.length} Others`}
26
+ </p>
27
+ )}
28
+ </div>
29
+ <ButtonComponent
30
+ text={"Add Permissions(s)"}
31
+ type="secondary"
32
+ styles={{
33
+ width: "260px",
34
+ padding: 10,
35
+ height: 40,
36
+ backgroundColor: "transparent",
37
+ marginBottom: "24px",
38
+ }}
39
+ icon={{ left: true }}
40
+ onClick={(e) => {
41
+ e.preventDefault();
42
+ }}
43
+ />
44
+ <p className="rl_perm_txt">Admins</p>
45
+ <p className="rl_perm_subtxt">
46
+ Add admins to this role and have them access specific permissions.{" "}
47
+ </p>
48
+
49
+ <div className="admins_row">
50
+ <div className="adm_img_group">
51
+ <div className="adr_img">
52
+ <img src={avatar} alt="" />
53
+ </div>
54
+ <div className="adr_img">
55
+ <img src={avatar} alt="" />
56
+ </div>
57
+ <div className="adr_img">
58
+ <img src={avatar} alt="" />
59
+ </div>
60
+ </div>
61
+
62
+ <div className="adm_others">+24 Others</div>
63
+ </div>
64
+ <ButtonComponent
65
+ text={"Add Admins"}
66
+ type="secondary"
67
+ styles={{
68
+ width: "260px",
69
+ padding: 10,
70
+ height: 40,
71
+ backgroundColor: "transparent",
72
+ marginBottom: "24px",
73
+ }}
74
+ icon={{ left: true }}
75
+ onClick={(e) => {
76
+ e.preventDefault();
77
+ }}
78
+ />
79
+
80
+ <ButtonComponent
81
+ text={"Create Role"}
82
+ styles={{ width: "100%", padding: 10, height: 40, marginTop: "60px" }}
83
+ icon={{ left: true }}
84
+ onClick={(e) => {
85
+ e.preventDefault();
86
+ }}
87
+ />
88
+ </RoleNameContainer>
89
+ );
90
+ };
91
+
92
+ export default RoleName;
@@ -0,0 +1,44 @@
1
+ import React, { useState } from "react";
2
+ import { AdminRolesAndPermissionContainer } from "./index.styled";
3
+ import { useNavigate } from "react-router-dom";
4
+ import ButtonComponent from "../button";
5
+ import photo from "./assets/images/roles_img.png";
6
+
7
+ const AdminRolesAndPermission = () => {
8
+ const navigate = useNavigate();
9
+
10
+ return (
11
+ <AdminRolesAndPermissionContainer>
12
+ <div className="arp_header">
13
+ <p className="arp_title"> Roles & Permissions </p>
14
+ <p className="arp_ref">
15
+ Settings <span className="slash">/</span> <span>Profile</span>
16
+ </p>
17
+ </div>
18
+
19
+ <div className="arp_main">
20
+ <div className="arp_img">
21
+ <img src={photo} alt="" />
22
+ </div>
23
+
24
+ <div className="arp_title">No roles filled yet.</div>
25
+
26
+ <div className="arp_subtitle">
27
+ Here's where you can manage all the roles you create. <br />
28
+ You can start by creating a new role.
29
+ </div>
30
+
31
+ <ButtonComponent
32
+ text={"Create New Role"}
33
+ styles={{ width: "203px", padding: 10, height: 43, margin: "0 auto" }}
34
+ icon={{ left: true }}
35
+ onClick={(e) => {
36
+ e.preventDefault();
37
+ }}
38
+ />
39
+ </div>
40
+ </AdminRolesAndPermissionContainer>
41
+ );
42
+ };
43
+
44
+ export default AdminRolesAndPermission;
@@ -0,0 +1,76 @@
1
+ import styled from "styled-components";
2
+
3
+ export const AdminRolesAndPermissionContainer = styled.div`
4
+ .arp_header {
5
+ display: flex;
6
+ align-items: center;
7
+ justify-content: space-between;
8
+ margin-bottom: 20px;
9
+
10
+ .arp_title {
11
+ color: #1c2434;
12
+ font-size: 18px;
13
+ font-weight: 700;
14
+ display: flex;
15
+ align-items: center;
16
+ gap: 10px;
17
+ span {
18
+ display: flex;
19
+ align-items: center;
20
+ }
21
+ }
22
+
23
+ .arp_ref {
24
+ color: #64748b;
25
+ font-size: 16px;
26
+ font-weight: 600;
27
+ line-height: normal;
28
+ display: flex;
29
+ align-items: center;
30
+ gap: 8px;
31
+
32
+ span {
33
+ color: #3c50e0;
34
+ }
35
+
36
+ .slash {
37
+ color: #64748b;
38
+ }
39
+ }
40
+ }
41
+
42
+ .arp_main {
43
+ max-width: 500px;
44
+ width: 100%;
45
+ margin: 40px auto 100px;
46
+
47
+ .arp_img {
48
+ max-width: 250px;
49
+ width: 100%;
50
+ margin: 0 auto 30px;
51
+
52
+ img {
53
+ width: 100%;
54
+ }
55
+ }
56
+
57
+ .arp_title {
58
+ margin-bottom: 10px;
59
+ color: #3ac2c2;
60
+ text-align: center;
61
+ font-size: 32px;
62
+ font-weight: 700;
63
+ line-height: normal;
64
+ }
65
+
66
+ .arp_subtitle {
67
+ margin-bottom: 40px;
68
+ color: #7c8080;
69
+ text-align: center;
70
+ font-size: 16px;
71
+ font-weight: 500;
72
+ line-height: normal;
73
+ letter-spacing: 0.32px;
74
+ }
75
+ }
76
+ `;
@@ -0,0 +1,11 @@
1
+ import React from 'react'
2
+
3
+ const AdminRolesMain = () => {
4
+ return (
5
+ <div>
6
+
7
+ </div>
8
+ )
9
+ }
10
+
11
+ export default AdminRolesMain