@rufous/ui 0.1.56 → 0.1.58

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/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # @rufous/ui
2
2
 
3
- A modern and reusable UI component library for React.
4
- Includes buttons, floating inputs, checkboxes, theme support, and icons.
3
+ A lightweight React UI component library with theming, buttons, inputs, dialogs, progress and a rich icon set.
5
4
 
6
5
  ---
7
6
 
@@ -9,58 +8,120 @@ Includes buttons, floating inputs, checkboxes, theme support, and icons.
9
8
 
10
9
  ```bash
11
10
  npm install @rufous/ui
12
- ```
13
-
14
- or
15
-
16
- ```bash
11
+ # or
17
12
  yarn add @rufous/ui
18
13
  ```
19
14
 
20
15
  ---
21
16
 
22
- ## 🎯 Usage
17
+ ## 🔧 Setup
23
18
 
24
- Before using any components, **import the global styles**:
19
+ Import the global styles once in your app entry (e.g. `src/main.tsx`, `pages/_app.tsx`).
25
20
 
26
21
  ```javascript
27
22
  import "@rufous/ui/style.css";
28
23
  ```
29
24
 
30
- ---
25
+ Optional but recommended: wrap your app with the theme provider to enable theme utilities.
31
26
 
32
- ## 🧩 Components Showcase
27
+ ```tsx
28
+ import React from "react";
29
+ import ReactDOM from "react-dom/client";
30
+ import { RufousThemeProvider } from "@rufous/ui";
31
+ import "@rufous/ui/style.css";
33
32
 
34
- Below are usage examples of all the components available in the showcase.
33
+ ReactDOM.createRoot(document.getElementById("root")!).render(
34
+ <RufousThemeProvider>
35
+ <App />
36
+ </RufousThemeProvider>
37
+ );
38
+ ```
35
39
 
36
40
  ---
37
41
 
38
- ### 🧱 Button
42
+ ## 🎨 Theming
39
43
 
40
- ```jsx
41
- import React from "react";
42
- import { Button } from "@rufous/ui";
43
- import "@rufous/ui/style.css";
44
+ `RufousThemeProvider` exposes `useRufousTheme` and `APP_THEMES`.
44
45
 
45
- export default function Example() {
46
+ ```tsx
47
+ import { useRufousTheme, APP_THEMES, Button } from "@rufous/ui";
48
+
49
+ export function ThemeToggle() {
50
+ const { previewTheme } = useRufousTheme();
46
51
  return (
47
- <Button onClick={() => alert("Rufous Button clicked!")}>Click Me</Button>
52
+ <div style={{ display: "flex", gap: 12 }}>
53
+ <Button
54
+ onClick={() => previewTheme(APP_THEMES.default.name.toLowerCase())}
55
+ >
56
+ Light
57
+ </Button>
58
+ <Button
59
+ onClick={() => previewTheme(APP_THEMES.rufous.name.toLowerCase())}
60
+ >
61
+ Dark
62
+ </Button>
63
+ </div>
48
64
  );
49
65
  }
50
66
  ```
51
67
 
52
68
  ---
53
69
 
54
- ### ✍️ Floating Input
70
+ ## 🧩 Components
55
71
 
56
- ```jsx
57
- import React, { useState } from "react";
58
- import { FloatingInput } from "@rufous/ui";
59
- import "@rufous/ui/style.css";
72
+ Below are the primary components exported by the library with usage patterns and key props.
60
73
 
61
- export default function Example() {
62
- const [name, setName] = useState("");
74
+ ### Buttons
63
75
 
76
+ All buttons accept native button props via `...rest`.
77
+
78
+ - **StandardButton**: Base neutral button
79
+ - **AddButton**: Prefixed with `+`
80
+ - **SubmitButton**: Submit/async actions with built-in loading and double-click handling
81
+ - **CancelButton**: Secondary/cancel action
82
+
83
+ ```tsx
84
+ import {
85
+ StandardButton,
86
+ AddButton,
87
+ SubmitButton,
88
+ CancelButton,
89
+ } from "@rufous/ui";
90
+
91
+ export function ButtonsDemo() {
92
+ return (
93
+ <div style={{ display: "flex", gap: 12 }}>
94
+ <StandardButton onClick={() => alert("Standard")}>
95
+ Standard
96
+ </StandardButton>
97
+ <AddButton onClick={() => alert("Added")}>Add Item</AddButton>
98
+ <SubmitButton
99
+ onClick={async () => await new Promise((r) => setTimeout(r, 800))}
100
+ >
101
+ Save
102
+ </SubmitButton>
103
+ <CancelButton onClick={() => alert("Cancelled")}>Cancel</CancelButton>
104
+ </div>
105
+ );
106
+ }
107
+ ```
108
+
109
+ - **SubmitButton props**
110
+ - `type`: "button" | "submit" | "reset" (auto-managed when `onClick` provided)
111
+ - `onClick(e)`: supports async; shows loader until resolved
112
+ - `onDoubleClick(e)`: optional alternate handler; debounced vs single click
113
+ - `isLoading`: boolean external control of loader
114
+ - `bgGradiant`: boolean gradient background
115
+
116
+ ### Text Inputs
117
+
118
+ - **FloatingInput**: Floating label text input
119
+
120
+ ```tsx
121
+ import { FloatingInput } from "@rufous/ui";
122
+
123
+ export function NameField() {
124
+ const [name, setName] = React.useState("");
64
125
  return (
65
126
  <FloatingInput
66
127
  label="Your Name"
@@ -73,167 +134,167 @@ export default function Example() {
73
134
  }
74
135
  ```
75
136
 
76
- ---
137
+ - **FloatingInput props**
138
+ - `label`: string (required)
139
+ - `name`: string (required)
140
+ - `id`: string (defaults to `name`)
141
+ - `type`: string = "text"
142
+ - `value`: string
143
+ - `onChange(e)`: (required for controlled usage)
144
+ - `required`: boolean = false
145
+ - `placeholder`: string
146
+ - `className`: string
147
+ - `...divProps` applied to the wrapper
77
148
 
78
- ### 🎨 Theme Provider
149
+ ### Checkboxes
79
150
 
80
- ```jsx
81
- import React from "react";
82
- import { Button, useRufousTheme, APP_THEMES } from "@rufous/ui";
83
- import "@rufous/ui/style.css";
151
+ - **Checkbox**: Controlled checkbox with label
84
152
 
85
- export default function Example() {
86
- const { previewTheme } = useRufousTheme();
153
+ ```tsx
154
+ import { Checkbox } from "@rufous/ui";
87
155
 
156
+ export function Terms() {
157
+ const [checked, setChecked] = React.useState(false);
88
158
  return (
89
- <>
90
- <Button
91
- onClick={() => previewTheme(APP_THEMES.default.name.toLowerCase())}
92
- >
93
- Light
94
- </Button>
95
- <Button
96
- onClick={() => previewTheme(APP_THEMES.rufous.name.toLowerCase())}
97
- >
98
- Dark
99
- </Button>
100
- </>
159
+ <Checkbox
160
+ id="terms"
161
+ label="I agree to the terms"
162
+ checked={checked}
163
+ onChange={setChecked}
164
+ />
101
165
  );
102
166
  }
103
167
  ```
104
168
 
105
- ---
169
+ - **Checkbox props**
170
+ - `id`: string
171
+ - `label`: string
172
+ - `checked`: boolean
173
+ - `onChange(nextChecked: boolean)`: required
174
+ - `disabled`: boolean = false
175
+ - `className`: string
176
+ - `style`: React.CSSProperties
106
177
 
107
- ### ☑️ Checkbox
178
+ ### Dialogs
108
179
 
109
- ```jsx
110
- import React from "react";
111
- import { Checkbox } from "@rufous/ui";
112
- import "@rufous/ui/style.css";
180
+ - **BaseDialog**: Unopinionated modal container with header, close button, footer actions
181
+
182
+ ```tsx
183
+ import { BaseDialog, SubmitButton } from "@rufous/ui";
113
184
 
114
- export default function Example() {
185
+ export function ConfirmDialog({ open, onClose, onConfirm }) {
115
186
  return (
116
- <>
117
- <Checkbox label="Unchecked" />
118
- <Checkbox checked={true} label="Checked" />
119
- </>
187
+ <BaseDialog
188
+ open={open}
189
+ title="Confirm delete"
190
+ onClose={onClose}
191
+ onCancel={onClose}
192
+ onConfirm={onConfirm}
193
+ buttonAlign="flex-end"
194
+ showCancelButton
195
+ fullWidth
196
+ >
197
+ <p>Are you sure you want to delete this item?</p>
198
+ </BaseDialog>
120
199
  );
121
200
  }
122
201
  ```
123
202
 
124
- ---
203
+ - **BaseDialog props (key)**
204
+ - `open`: boolean (required to show)
205
+ - `title`: string
206
+ - `onClose()`: close handler
207
+ - `onCancel()`: cancel handler
208
+ - `onConfirm()`: sync/async confirm; built-in loading toggle
209
+ - `cancelText`, `confirmText`, `submitText`: strings
210
+ - `isLoading`, `loading`, `disableConfirmBtn`: booleans
211
+ - `minWidth`, `minHeight`, `fullWidth`, `fullScreen`: sizing controls
212
+ - `buttonAlign`: "flex-start" | "center" | "flex-end"
213
+ - `showCloseButton`, `showCancelButton`, `formatTitle`
214
+ - `className`, `dialogBodyStyle`
125
215
 
126
- ### 🖼 Icons (Extra Example)
216
+ ### Progress
127
217
 
128
- ```jsx
129
- import React from "react";
130
- import { CopyIcon, EditIcon } from "@rufous/ui";
131
- import "@rufous/ui/style.css";
218
+ - **CircularProgress**: Stroke-based loader
132
219
 
133
- export default function Example() {
134
- return (
135
- <div style={{ display: "flex", gap: "10px" }}>
136
- <CopyIcon onClick={() => alert("Copied!")} />
137
- <EditIcon onClick={() => alert("Edit clicked!")} />
138
- </div>
139
- );
220
+ ```tsx
221
+ import { CircularProgess } from "@rufous/ui"; // exported via SubmitButton internally as well
222
+
223
+ export function LoadingExample() {
224
+ return <CircularProgess size={36} color="#a81c08" />;
140
225
  }
141
226
  ```
142
227
 
143
- ---
228
+ - **CircularProgess props**
229
+ - `size`: number = 50
230
+ - `color`: string = "#a81c08"
231
+ - `...divProps`
144
232
 
145
- ## 📋 Props Reference
233
+ ### Icons
146
234
 
147
- ### **Button**
235
+ All icons are React components that accept standard `svg`/`div`-style props depending on implementation; at minimum `className`, event handlers, and often `color` when applicable.
148
236
 
149
- | Prop | Type | Default | Description |
150
- | ------- | -------- | ------- | --------------------- |
151
- | variant | string | primary | Sets the button style |
152
- | size | string | medium | Sets the button size |
153
- | onClick | function | - | Click event handler |
237
+ Usage pattern:
154
238
 
155
- ---
239
+ ```tsx
240
+ import { CopyIcon, EditIcon, DownloadIcon } from "@rufous/ui";
156
241
 
157
- ### **FloatingInput**
242
+ export function IconRow() {
243
+ return (
244
+ <div style={{ display: "flex", gap: 10 }}>
245
+ <CopyIcon onClick={() => alert("Copied!")} />
246
+ <EditIcon />
247
+ <DownloadIcon />
248
+ </div>
249
+ );
250
+ }
251
+ ```
158
252
 
159
- | Prop | Type | Default | Description |
160
- | -------- | -------- | ------- | ---------------------- |
161
- | label | string | - | Floating label text |
162
- | name | string | - | Input name attribute |
163
- | value | string | - | Input value |
164
- | onChange | function | - | Change event handler |
165
- | required | boolean | false | Mark field as required |
253
+ Available icons include (non-exhaustive): `ActivateUserIcon`, `ArchivedIcon`, `AssignGroupIcon`, `CloseIcon`, `CopyIcon`, `DifficultyAllIcon`, `DifficultyEasyIcon`, `DifficultyMediumIcon`, `DifficultyHardIcon`, `DollarIcon`, `DownloadIcon`, `DownloadPdfIcon`, `EditChatIcon`, `EditIcon`, `EngagementIcon`, `FunctionIcon`, `HelpOutlinedIcon`, `HierarchyIcon`, `InactiveGroupIcon`, `IndustryIcon`, `InvoiceIcon`, `LocationPinIcon`, `LogsIcon`, `MinExperienceIcon`, `NineDotMenuIcon`, `NotificationIcon`, `ProjectIcon`, `QuestionStatusAllIcon`, `QuestionStatusPrivateIcon`, `QuestionStatusPublicIcon`, `QuestionTypeAllIcon`, `QuestionTypeCodingIcon`, `QuestionTypeDescriptiveIcon`, `QuestionTypeMultipleIcon`, `QuestionTypeSingleIcon`, `RefreshIcon`, `ResendInviteIcon`, `RolesIcon`, `RufousAiIcon`, `RufousBirdIcon`, `RufousLauncherIcon`, `SidebarIcon`, `SubscribeIcon`, `SuspendUserIcon`, `TickIcon`, `TimerIcon`, `TrashIcon`, `UnArchivedIcon`, `UnsubscribeIcon`, `UploadIcon`, `UserAssignIcon`, `ViewIcon`, `WorkItemIcon`, `SoftSkillsIcon`, `TechnicalSkillsIcon`, `QualificationsIcon`.
166
254
 
167
255
  ---
168
256
 
169
- ### **Checkbox**
257
+ ## 🧾 Exports
170
258
 
171
- | Prop | Type | Default | Description |
172
- | -------- | -------- | ------- | -------------------- |
173
- | label | string | - | Checkbox label |
174
- | checked | boolean | false | Checked state |
175
- | onChange | function | - | Change event handler |
259
+ The package main re-exports everything you need from a single entry point:
176
260
 
177
- ---
178
-
179
- ## 📌 Quick Start Example
261
+ ```ts
262
+ // main entry exports
263
+ export { APP_THEMES } from "./utils/constants";
264
+ export * from "./icons"; // all icons
265
+ export * from "./Buttons"; // AddButton, SubmitButton, CancelButton, StandardButton
266
+ export * from "./Dialogs"; // BaseDialog
267
+ export {
268
+ RufousThemeProvider,
269
+ useRufousTheme,
270
+ } from "./Contexts/rufousThemeProvider";
271
+ ```
180
272
 
181
- Here’s a **full example** using multiple components:
273
+ Import from `@rufous/ui` directly:
182
274
 
183
- ```jsx
184
- import React, { useState } from "react";
275
+ ```tsx
185
276
  import {
186
- Button,
187
- FloatingInput,
188
- Checkbox,
189
- CopyIcon,
190
- EditIcon,
277
+ SubmitButton,
278
+ BaseDialog,
279
+ RufousThemeProvider,
191
280
  useRufousTheme,
192
281
  APP_THEMES,
193
282
  } from "@rufous/ui";
194
- import "@rufous/ui/style.css";
283
+ ```
195
284
 
196
- export default function App() {
197
- const [name, setName] = useState("");
198
- const { previewTheme } = useRufousTheme();
285
+ ---
199
286
 
200
- return (
201
- <div style={{ padding: "20px" }}>
202
- <h1>Rufous UI Demo</h1>
203
-
204
- <Button onClick={() => alert("Hello!")}>Click Me</Button>
205
-
206
- <FloatingInput
207
- label="Your Name"
208
- name="name"
209
- value={name}
210
- onChange={(e) => setName(e.target.value)}
211
- required
212
- />
213
-
214
- <Checkbox label="Accept Terms" />
215
-
216
- <div style={{ marginTop: "10px" }}>
217
- <Button
218
- onClick={() => previewTheme(APP_THEMES.default.name.toLowerCase())}
219
- >
220
- Light Theme
221
- </Button>
222
- <Button
223
- onClick={() => previewTheme(APP_THEMES.rufous.name.toLowerCase())}
224
- >
225
- Dark Theme
226
- </Button>
227
- </div>
228
-
229
- <div style={{ display: "flex", gap: "10px", marginTop: "10px" }}>
230
- <CopyIcon onClick={() => alert("Copied!")} />
231
- <EditIcon onClick={() => alert("Edit clicked!")} />
232
- </div>
233
- </div>
234
- );
235
- }
236
- ```
287
+ ## 🧠 Notes
288
+
289
+ - Always import `@rufous/ui/style.css` once to get base styles.
290
+ - `SubmitButton` manages `type` automatically when `onClick` is provided.
291
+ - Dialog confirm button disables while running async `onConfirm` to prevent repeats.
292
+
293
+ ---
294
+
295
+ ## 🐛 Issues / Feedback
296
+
297
+ Please open an issue or PR in your repository to report bugs, request components, or propose improvements.
237
298
 
238
299
  ---
239
300
 
@@ -1,20 +1,24 @@
1
1
  import {
2
2
  BaseDialog_default
3
3
  } from "../chunk-CPLUOEPG.js";
4
- import "../chunk-IR7ZKMED.js";
4
+ import "../chunk-E5RTHYCU.js";
5
+ import "../chunk-WWAHNTUH.js";
6
+ import "../chunk-6KIFTMUN.js";
7
+ import "../chunk-ZJAV3FEQ.js";
5
8
  import "../chunk-NMMC4ATV.js";
6
9
  import "../chunk-DXJ745NZ.js";
7
10
  import "../chunk-BH53P2UM.js";
8
11
  import "../chunk-XPRBPIS5.js";
9
12
  import "../chunk-QJPQC544.js";
13
+ import "../chunk-DMP72IAP.js";
10
14
  import "../chunk-QZFGQ5JM.js";
11
15
  import "../chunk-CSKTBLQQ.js";
16
+ import "../chunk-VIUTE7F5.js";
12
17
  import "../chunk-ZDVP4SUD.js";
13
18
  import "../chunk-5BB3H3YO.js";
19
+ import "../chunk-5JWTJ5PY.js";
14
20
  import "../chunk-ITZTTNM2.js";
15
- import "../chunk-WWAHNTUH.js";
16
- import "../chunk-6KIFTMUN.js";
17
- import "../chunk-ZJAV3FEQ.js";
21
+ import "../chunk-FOUXNPQA.js";
18
22
  import "../chunk-C7B23GTE.js";
19
23
  import "../chunk-XCLXQOLP.js";
20
24
  import "../chunk-ZJYLZ6I6.js";
@@ -22,15 +26,14 @@ import "../chunk-RNA4TTYR.js";
22
26
  import "../chunk-WG3Q6GZN.js";
23
27
  import "../chunk-RJ43D3XB.js";
24
28
  import "../chunk-DE73YGRW.js";
25
- import "../chunk-DMP72IAP.js";
26
29
  import "../chunk-GESVGIAP.js";
27
30
  import "../chunk-QIEQRNBE.js";
28
31
  import "../chunk-BYJP2WNC.js";
32
+ import "../chunk-KNUNHFXS.js";
29
33
  import "../chunk-GYLL3HRD.js";
30
34
  import "../chunk-WZTZFC36.js";
31
35
  import "../chunk-QA2AYT4A.js";
32
36
  import "../chunk-WHGVO3HV.js";
33
- import "../chunk-FOUXNPQA.js";
34
37
  import "../chunk-WZAU77G7.js";
35
38
  import "../chunk-7WNPZ4B7.js";
36
39
  import "../chunk-NSW6ZGZF.js";
@@ -43,8 +46,8 @@ import "../chunk-IOEQAR2M.js";
43
46
  import "../chunk-N26C33E6.js";
44
47
  import "../chunk-QONKYAQ5.js";
45
48
  import "../chunk-H372BAXA.js";
46
- import "../chunk-FSRABKKC.js";
47
- import "../chunk-ZAYWFYP4.js";
49
+ import "../chunk-EFIJYBYX.js";
50
+ import "../chunk-OJV6F5JC.js";
48
51
  import "../chunk-5UEJAVFK.js";
49
52
  import "../chunk-3IBCGGN3.js";
50
53
  import "../chunk-MNPAE2ZF.js";
@@ -1,20 +1,24 @@
1
1
  import {
2
2
  BaseDialog_default
3
3
  } from "../chunk-CPLUOEPG.js";
4
- import "../chunk-IR7ZKMED.js";
4
+ import "../chunk-E5RTHYCU.js";
5
+ import "../chunk-WWAHNTUH.js";
6
+ import "../chunk-6KIFTMUN.js";
7
+ import "../chunk-ZJAV3FEQ.js";
5
8
  import "../chunk-NMMC4ATV.js";
6
9
  import "../chunk-DXJ745NZ.js";
7
10
  import "../chunk-BH53P2UM.js";
8
11
  import "../chunk-XPRBPIS5.js";
9
12
  import "../chunk-QJPQC544.js";
13
+ import "../chunk-DMP72IAP.js";
10
14
  import "../chunk-QZFGQ5JM.js";
11
15
  import "../chunk-CSKTBLQQ.js";
16
+ import "../chunk-VIUTE7F5.js";
12
17
  import "../chunk-ZDVP4SUD.js";
13
18
  import "../chunk-5BB3H3YO.js";
19
+ import "../chunk-5JWTJ5PY.js";
14
20
  import "../chunk-ITZTTNM2.js";
15
- import "../chunk-WWAHNTUH.js";
16
- import "../chunk-6KIFTMUN.js";
17
- import "../chunk-ZJAV3FEQ.js";
21
+ import "../chunk-FOUXNPQA.js";
18
22
  import "../chunk-C7B23GTE.js";
19
23
  import "../chunk-XCLXQOLP.js";
20
24
  import "../chunk-ZJYLZ6I6.js";
@@ -22,15 +26,14 @@ import "../chunk-RNA4TTYR.js";
22
26
  import "../chunk-WG3Q6GZN.js";
23
27
  import "../chunk-RJ43D3XB.js";
24
28
  import "../chunk-DE73YGRW.js";
25
- import "../chunk-DMP72IAP.js";
26
29
  import "../chunk-GESVGIAP.js";
27
30
  import "../chunk-QIEQRNBE.js";
28
31
  import "../chunk-BYJP2WNC.js";
32
+ import "../chunk-KNUNHFXS.js";
29
33
  import "../chunk-GYLL3HRD.js";
30
34
  import "../chunk-WZTZFC36.js";
31
35
  import "../chunk-QA2AYT4A.js";
32
36
  import "../chunk-WHGVO3HV.js";
33
- import "../chunk-FOUXNPQA.js";
34
37
  import "../chunk-WZAU77G7.js";
35
38
  import "../chunk-7WNPZ4B7.js";
36
39
  import "../chunk-NSW6ZGZF.js";
@@ -43,8 +46,8 @@ import "../chunk-IOEQAR2M.js";
43
46
  import "../chunk-N26C33E6.js";
44
47
  import "../chunk-QONKYAQ5.js";
45
48
  import "../chunk-H372BAXA.js";
46
- import "../chunk-FSRABKKC.js";
47
- import "../chunk-ZAYWFYP4.js";
49
+ import "../chunk-EFIJYBYX.js";
50
+ import "../chunk-OJV6F5JC.js";
48
51
  import "../chunk-5UEJAVFK.js";
49
52
  import "../chunk-3IBCGGN3.js";
50
53
  import "../chunk-MNPAE2ZF.js";
@@ -0,0 +1,8 @@
1
+ // lib/icons/technicalSkillsIcon.tsx
2
+ import * as React from "react";
3
+ var TechnicalSkillsIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React.createElement("svg", { width: "22", height: "20", viewBox: "0 0 22 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M14.369 1.36303C14.3953 1.27767 14.4045 1.18797 14.3961 1.09906C14.3877 1.01015 14.3618 0.923761 14.32 0.844831C14.2783 0.765901 14.2213 0.695975 14.1525 0.639044C14.0837 0.582114 14.0044 0.539294 13.919 0.51303C13.8336 0.486765 13.7439 0.477571 13.655 0.485971C13.5661 0.494372 13.4797 0.520202 13.4008 0.561988C13.3219 0.603775 13.2519 0.660698 13.195 0.729509C13.1381 0.79832 13.0953 0.87767 13.069 0.96303L7.631 18.638C7.60474 18.7234 7.59554 18.8131 7.60394 18.902C7.61234 18.9909 7.63817 19.0773 7.67996 19.1562C7.72175 19.2352 7.77867 19.3051 7.84748 19.362C7.91629 19.4189 7.99564 19.4618 8.081 19.488C8.16636 19.5143 8.25606 19.5235 8.34497 19.5151C8.43388 19.5067 8.52027 19.4809 8.5992 19.4391C8.67813 19.3973 8.74806 19.3404 8.80499 19.2715C8.86192 19.2027 8.90474 19.1234 8.931 19.038L14.369 1.36403V1.36303ZM6.723 4.76303C6.78635 4.8262 6.8366 4.90124 6.87089 4.98387C6.90519 5.06649 6.92284 5.15507 6.92284 5.24453C6.92284 5.33399 6.90519 5.42257 6.87089 5.50519C6.8366 5.58781 6.78635 5.66286 6.723 5.72603L2.444 10L6.722 14.277C6.84701 14.4053 6.91645 14.5776 6.9153 14.7567C6.91415 14.9358 6.8425 15.1072 6.71586 15.2339C6.58922 15.3605 6.41778 15.4322 6.23869 15.4333C6.0596 15.4345 5.88726 15.365 5.759 15.24L1.002 10.486C0.938658 10.4229 0.8884 10.3478 0.854109 10.2652C0.819817 10.1826 0.802166 10.094 0.802166 10.0045C0.802166 9.91507 0.819817 9.82649 0.854109 9.74387C0.8884 9.66124 0.938658 9.5862 1.002 9.52303L5.76 4.76503C5.82317 4.70168 5.89822 4.65143 5.98084 4.61714C6.06347 4.58285 6.15204 4.56519 6.2415 4.56519C6.33096 4.56519 6.41954 4.58285 6.50216 4.61714C6.58479 4.65143 6.65983 4.70168 6.723 4.76503V4.76303ZM15.277 4.76303C15.2137 4.8262 15.1634 4.90124 15.1291 4.98387C15.0948 5.06649 15.0772 5.15507 15.0772 5.24453C15.0772 5.33399 15.0948 5.42257 15.1291 5.50519C15.1634 5.58781 15.2137 5.66286 15.277 5.72603L19.555 10.003L15.277 14.28C15.152 14.4083 15.0826 14.5806 15.0837 14.7597C15.0849 14.9388 15.1565 15.1102 15.2831 15.2369C15.4098 15.3635 15.5812 15.4352 15.7603 15.4363C15.9394 15.4375 16.1117 15.368 16.24 15.243L20.998 10.486C21.0613 10.4229 21.1116 10.3478 21.1459 10.2652C21.1802 10.1826 21.1978 10.094 21.1978 10.0045C21.1978 9.91507 21.1802 9.82649 21.1459 9.74387C21.1116 9.66124 21.0613 9.5862 20.998 9.52303L16.24 4.76503C16.1768 4.70168 16.1018 4.65143 16.0192 4.61714C15.9365 4.58285 15.848 4.56519 15.7585 4.56519C15.669 4.56519 15.5805 4.58285 15.4978 4.61714C15.4152 4.65143 15.3402 4.70168 15.277 4.76503V4.76303Z", fill: color }));
4
+ var technicalSkillsIcon_default = TechnicalSkillsIcon;
5
+
6
+ export {
7
+ technicalSkillsIcon_default
8
+ };
@@ -0,0 +1,8 @@
1
+ // lib/icons/engagementIcon.tsx
2
+ import * as React from "react";
3
+ var EngagementIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React.createElement("svg", { width: "22", height: "22", viewBox: "0 0 22 22", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M14.4391 12.237C14.4713 12.2661 14.5091 12.2883 14.5501 12.3022C14.5912 12.3161 14.6347 12.3214 14.6779 12.3179C14.7211 12.3143 14.7631 12.3019 14.8013 12.2815C14.8396 12.261 14.8732 12.233 14.9001 12.199C14.956 12.1312 14.9835 12.0444 14.9768 11.9567C14.9701 11.8691 14.9297 11.7875 14.8641 11.729C14.2376 11.1794 13.5316 10.7277 12.7701 10.389C13.3457 9.88171 13.8062 9.25734 14.121 8.55767C14.4357 7.85801 14.5974 7.09919 14.5951 6.33199C14.6139 4.93817 14.0788 3.59386 13.1075 2.59404C12.1362 1.59423 10.8079 1.02059 9.41414 0.998993C8.02071 1.02137 6.69304 1.5955 5.72234 2.59544C4.75164 3.59539 4.21716 4.93951 4.23614 6.33299C4.23383 7.09938 4.39508 7.85743 4.7091 8.55653C5.02313 9.25563 5.48271 9.87968 6.05714 10.387C4.53991 11.0856 3.25607 12.2066 2.35924 13.6158C1.46241 15.0249 0.99056 16.6627 1.00014 18.333V20.666C0.999074 20.7531 1.03258 20.837 1.09332 20.8995C1.15405 20.9619 1.23706 20.9977 1.32414 20.999C1.41123 20.9977 1.49424 20.9619 1.55497 20.8995C1.61571 20.837 1.64921 20.7531 1.64814 20.666V18.333C1.63752 16.7252 2.11129 15.1515 3.00775 13.8168C3.9042 12.4821 5.1818 11.4483 6.67414 10.85C7.48858 11.3825 8.44057 11.6661 9.41364 11.6661C10.3867 11.6661 11.3387 11.3825 12.1531 10.85C12.9907 11.1745 13.7645 11.644 14.4391 12.237ZM4.88314 6.33699C4.86577 5.11734 5.33299 3.94062 6.18228 3.06509C7.03157 2.18955 8.19353 1.68674 9.41314 1.66699C10.6322 1.68674 11.7937 2.18914 12.6429 3.06402C13.4921 3.93891 13.9597 5.11486 13.9431 6.33399C13.9592 7.55278 13.4914 8.72822 12.6422 9.60267C11.7931 10.4771 10.6319 10.9792 9.41314 10.999C8.19423 10.9792 7.03288 10.477 6.18371 9.60232C5.33454 8.72765 4.86683 7.55196 4.88314 6.33299V6.33699Z", fill: color, stroke: color, "stroke-width": "0.5" }), /* @__PURE__ */ React.createElement("path", { d: "M20.971 15.204C20.9361 15.0935 20.8706 14.9953 20.7821 14.9206C20.6936 14.8459 20.5857 14.7978 20.471 14.782L17.754 14.4L16.54 12.021C16.4874 11.9197 16.4081 11.8348 16.3106 11.7755C16.213 11.7162 16.1011 11.6849 15.987 11.6849C15.8729 11.6849 15.761 11.7162 15.6634 11.7755C15.5659 11.8348 15.4866 11.9197 15.434 12.021L14.22 14.4L11.503 14.782C11.3883 14.7978 11.2804 14.8459 11.1919 14.9206C11.1034 14.9953 11.0379 15.0935 11.003 15.204C10.9675 15.313 10.964 15.4299 10.9929 15.5408C11.0218 15.6518 11.0819 15.7521 11.166 15.83L13.124 17.677L12.662 20.282C12.6461 20.3691 12.6497 20.4587 12.6725 20.5443C12.6953 20.6299 12.7368 20.7093 12.794 20.777C12.8859 20.8832 13.0105 20.956 13.1482 20.9839C13.2859 21.0117 13.429 20.9931 13.555 20.931L15.99 19.693L18.425 20.931C18.5508 20.9954 18.6947 21.0151 18.8332 20.987C18.9716 20.9588 19.0964 20.8844 19.187 20.776C19.2442 20.7083 19.2857 20.6289 19.3085 20.5433C19.3313 20.4577 19.3349 20.3681 19.319 20.281L18.857 17.676L20.816 15.829C20.8986 15.7503 20.957 15.6497 20.9845 15.539C21.0119 15.4283 21.0072 15.3121 20.971 15.204ZM18.316 17.195C18.2424 17.2639 18.1871 17.3501 18.1551 17.4458C18.1232 17.5415 18.1156 17.6436 18.133 17.743L18.57 20.205L16.27 19.034C16.1819 18.9903 16.0849 18.9675 15.9865 18.9675C15.8881 18.9675 15.7911 18.9903 15.703 19.034L13.403 20.205L13.84 17.742C13.8575 17.6426 13.8498 17.5405 13.8179 17.4448C13.7859 17.3491 13.7306 17.2629 13.657 17.194L11.819 15.46L14.372 15.101C14.4705 15.0874 14.5642 15.0504 14.6453 14.9929C14.7265 14.9355 14.7925 14.8594 14.838 14.771L15.99 12.512L17.143 14.771C17.1885 14.8594 17.2546 14.9355 17.3357 14.9929C17.4168 15.0504 17.5105 15.0874 17.609 15.101L20.162 15.46L18.316 17.195Z", fill: color, stroke: color, "stroke-width": "0.5" }));
4
+ var engagementIcon_default = EngagementIcon;
5
+
6
+ export {
7
+ engagementIcon_default
8
+ };
@@ -0,0 +1,8 @@
1
+ // lib/icons/qualificationsIcon.tsx
2
+ import * as React from "react";
3
+ var QualificationsIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React.createElement("svg", { width: "24", height: "17", viewBox: "0 0 24 17", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props }, /* @__PURE__ */ React.createElement("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.096 0.920005L1.422 5.25601C1.29964 5.31928 1.18771 5.40089 1.09003 5.49801C0.982986 5.61801 0.923828 5.7732 0.923828 5.934C0.923828 6.09481 0.982986 6.25 1.09003 6.37001C1.18134 6.47434 1.29472 6.55701 1.422 6.61201L5.35498 8.29801V12.829C5.35246 12.8915 5.36648 12.9535 5.39563 13.0088C5.42478 13.0641 5.46804 13.1108 5.521 13.144L11.909 16.23C11.9351 16.2419 11.9634 16.248 11.992 16.248C12.0206 16.248 12.049 16.2419 12.075 16.23L18.482 13.144C18.5377 13.1137 18.5831 13.0677 18.6127 13.0116C18.6422 12.9556 18.6545 12.892 18.648 12.829V8.29901L21.842 7.04001C21.6965 8.80938 21.6882 10.5874 21.817 12.358C21.817 12.843 22.217 12.843 22.217 12.358C22.4317 10.5206 22.4729 8.66711 22.34 6.82201C22.5425 6.68685 22.7337 6.5357 22.912 6.37001C23.019 6.25 23.0782 6.09481 23.0782 5.934C23.0782 5.7732 23.019 5.61801 22.912 5.49801C22.8142 5.40101 22.7023 5.31941 22.58 5.25601L12.905 0.919005C12.3228 0.692932 11.6771 0.692932 11.095 0.919005L11.096 0.920005ZM12.696 1.86701L21.785 5.94101C21.837 5.96401 21.837 5.98601 21.872 6.00901C21.838 6.03201 21.838 6.05501 21.785 6.07701L17.485 8.01201C17.451 8.01201 17.398 8.01201 17.385 8.05701L12.702 10.151C12.253 10.3102 11.763 10.3102 11.314 10.151L6.62201 8.03401C6.58701 8.03401 6.56998 8.01101 6.55298 8.01101L2.22198 6.07601C2.16898 6.05301 2.16901 6.03101 2.13501 6.00801C2.16901 5.98501 2.16898 5.962 2.22198 5.962L11.31 1.86201C11.5331 1.78448 11.7678 1.74624 12.004 1.74901C12.239 1.7475 12.4725 1.78709 12.694 1.866L12.696 1.86701ZM17.665 8.657V12.482L12.002 15.272L6.33899 12.728V8.90301L11.156 10.926C11.4239 11.0384 11.7115 11.0963 12.002 11.0963C12.2925 11.0963 12.5801 11.0384 12.848 10.926L17.248 8.95501L17.665 8.657Z", fill: color, stroke: color, "stroke-width": "0.2" }));
4
+ var qualificationsIcon_default = QualificationsIcon;
5
+
6
+ export {
7
+ qualificationsIcon_default
8
+ };
@@ -0,0 +1,8 @@
1
+ // lib/icons/functionIcon.tsx
2
+ import * as React from "react";
3
+ var FunctionIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "18.367", height: "18.367", viewBox: "0 0 18.367 18.367", ...props }, /* @__PURE__ */ React.createElement("g", { id: "settings-line", transform: "translate(-10.66 -10.66)" }, /* @__PURE__ */ React.createElement("path", { id: "Path_60913", "data-name": "Path 60913", d: "M63.181,58.63A4.018,4.018,0,1,0,67.2,62.648,3.993,3.993,0,0,0,63.181,58.63Zm0,6.888a2.87,2.87,0,1,1,2.87-2.87A2.842,2.842,0,0,1,63.181,65.518Z", transform: "translate(-43.28 -42.804)", fill: color }), /* @__PURE__ */ React.createElement("path", { id: "Path_60914", "data-name": "Path 60914", d: "M28.338,17.949l-1.607-.517-.344-.861.8-1.492a.965.965,0,0,0-.172-1.091L25.64,12.611a.965.965,0,0,0-1.091-.172l-1.492.8L22.2,12.9l-.517-1.607a.933.933,0,0,0-.861-.631H18.868a.8.8,0,0,0-.8.689l-.517,1.607a2.536,2.536,0,0,0-.918.344l-1.492-.8a.965.965,0,0,0-1.091.172l-1.378,1.378a.965.965,0,0,0-.172,1.091l.746,1.435c-.115.287-.23.631-.344.918l-1.607.517a.933.933,0,0,0-.631.861v1.951a.914.914,0,0,0,.689.861l1.607.517.344.861-.8,1.492a.965.965,0,0,0,.172,1.091l1.378,1.378a.965.965,0,0,0,1.091.172l1.492-.8.861.344.517,1.664a.933.933,0,0,0,.861.631h1.951a.933.933,0,0,0,.861-.631l.517-1.664.861-.344,1.492.8a.965.965,0,0,0,1.091-.172l1.378-1.378a.965.965,0,0,0,.172-1.091l-.8-1.492.344-.861L28.4,21.68a.933.933,0,0,0,.631-.861V18.868A.982.982,0,0,0,28.338,17.949Zm-.459,2.7-2.066.631-.057.287-.517,1.205-.172.287L26.1,24.952,24.952,26.1l-1.894-1.033-.287.172a5.449,5.449,0,0,1-1.205.517l-.287.057-.631,2.066H19.04l-.631-2.066-.287-.057-1.205-.517-.287-.172L14.735,26.1l-1.148-1.148,1.033-1.894-.172-.287a5.449,5.449,0,0,1-.517-1.205l-.057-.287-2.066-.631V19.04l1.951-.574.115-.287a4.872,4.872,0,0,1,.517-1.263l.172-.287-.976-1.894,1.148-1.148,1.837,1.033.287-.172a4.872,4.872,0,0,1,1.263-.517l.287-.115.631-2.009h1.607l.631,2.009.287.115a5.449,5.449,0,0,1,1.205.517l.287.172,1.894-1.033L26.1,14.735l-1.033,1.894.172.287a5.449,5.449,0,0,1,.517,1.205l.057.287,2.066.631Z", fill: color })));
4
+ var functionIcon_default = FunctionIcon;
5
+
6
+ export {
7
+ functionIcon_default
8
+ };
@@ -0,0 +1,8 @@
1
+ // lib/icons/softSkillsIcon.tsx
2
+ import * as React from "react";
3
+ var SoftSkillsIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React.createElement("svg", { width: "20", height: "22", viewBox: "0 0 20 22", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M10.345 3.075C10.4367 3.07474 10.5245 3.0382 10.5893 2.97337C10.6542 2.90854 10.6907 2.82068 10.691 2.729V1.346C10.691 1.25424 10.6545 1.16623 10.5896 1.10134C10.5247 1.03645 10.4367 1 10.345 1C10.2532 1 10.1652 1.03645 10.1003 1.10134C10.0354 1.16623 9.99898 1.25424 9.99898 1.346V2.73C9.9995 2.82151 10.0362 2.90911 10.101 2.97372C10.1658 3.03834 10.2535 3.07474 10.345 3.075Z", fill: color, stroke: color, "stroke-width": "0.3" }), /* @__PURE__ */ React.createElement("path", { d: "M14.73 5.44299C14.0619 4.84013 13.2771 4.38088 12.4242 4.0937C11.5713 3.80651 10.6686 3.69752 9.77191 3.77346C8.87521 3.84941 8.00366 4.10867 7.21125 4.53519C6.41884 4.96172 5.72245 5.54641 5.16523 6.25305C4.60802 6.95969 4.20184 7.77323 3.97186 8.64325C3.74188 9.51328 3.69301 10.4213 3.82827 11.3109C3.96353 12.2006 4.28003 13.0531 4.75818 13.8154C5.23633 14.5778 5.86593 15.2339 6.60798 15.743C6.79896 15.8735 6.95541 16.0485 7.06392 16.2528C7.17243 16.4571 7.22976 16.6847 7.23098 16.916V17.992C7.23187 18.2981 7.33424 18.5953 7.52207 18.8371C7.70989 19.0788 7.97256 19.2515 8.26898 19.328V19.376C8.26898 20.141 8.88798 21.76 9.65298 21.76H11.037C11.802 21.76 12.421 20.141 12.421 19.376V19.328C12.7162 19.2511 12.9777 19.0788 13.1649 18.8379C13.352 18.597 13.4544 18.301 13.456 17.996V16.92C13.4572 16.6887 13.5145 16.4611 13.623 16.2568C13.7315 16.0525 13.888 15.8775 14.079 15.747C14.8965 15.1825 15.5754 14.4398 16.0644 13.575C16.5534 12.7101 16.8398 11.7456 16.9021 10.754C16.9644 9.76243 16.8009 8.76965 16.424 7.8504C16.047 6.93115 15.4665 6.10939 14.726 5.44699L14.73 5.44299ZM11.037 21.072H9.65598C9.27498 21.072 8.96398 19.761 8.96398 19.38H11.733C11.729 19.761 11.418 21.072 11.037 21.072ZM12.767 17.996C12.7664 18.1794 12.6934 18.3551 12.5637 18.4847C12.434 18.6144 12.2583 18.6875 12.075 18.688H8.61398C8.43061 18.6875 8.2549 18.6144 8.12524 18.4847C7.99558 18.3551 7.9225 18.1794 7.92198 17.996V17.266H12.767V17.996ZM13.688 15.179C13.4533 15.3399 13.2534 15.5463 13.1 15.7859C12.9466 16.0255 12.8429 16.2935 12.795 16.574H7.89498C7.84729 16.2928 7.74369 16.024 7.59031 15.7835C7.43692 15.5431 7.23687 15.3358 7.00198 15.174C5.96978 14.4612 5.19245 13.4371 4.78346 12.2512C4.37447 11.0654 4.35523 9.77985 4.72855 8.58229C5.10187 7.38472 5.84821 6.33784 6.85861 5.59446C7.86901 4.85108 9.09057 4.45012 10.345 4.45012C11.5994 4.45012 12.8209 4.85108 13.8313 5.59446C14.8417 6.33784 15.5881 7.38472 15.9614 8.58229C16.3347 9.77985 16.3155 11.0654 15.9065 12.2512C15.4975 13.4371 14.7202 14.4612 13.688 15.174V15.179Z", fill: color, stroke: color, "stroke-width": "0.3" }), /* @__PURE__ */ React.createElement("path", { d: "M19.342 9.998H17.958C17.8662 9.998 17.7782 10.0345 17.7133 10.0993C17.6484 10.1642 17.612 10.2522 17.612 10.344C17.612 10.4358 17.6484 10.5238 17.7133 10.5887C17.7782 10.6535 17.8662 10.69 17.958 10.69H19.342C19.4337 10.69 19.5217 10.6535 19.5866 10.5887C19.6515 10.5238 19.688 10.4358 19.688 10.344C19.688 10.2522 19.6515 10.1642 19.5866 10.0993C19.5217 10.0345 19.4337 9.998 19.342 9.998Z", fill: color, stroke: color, "stroke-width": "0.3" }), /* @__PURE__ */ React.createElement("path", { d: "M2.73098 9.998H1.34698C1.25521 9.998 1.1672 10.0345 1.10232 10.0993C1.03743 10.1642 1.00098 10.2522 1.00098 10.344C1.00098 10.4358 1.03743 10.5238 1.10232 10.5887C1.1672 10.6535 1.25521 10.69 1.34698 10.69H2.73098C2.82274 10.69 2.91075 10.6535 2.97564 10.5887C3.04052 10.5238 3.07698 10.4358 3.07698 10.344C3.07698 10.2522 3.04052 10.1642 2.97564 10.0993C2.91075 10.0345 2.82274 9.998 2.73098 9.998Z", fill: color, stroke: color, "stroke-width": "0.3" }), /* @__PURE__ */ React.createElement("path", { d: "M16.463 3.73699L15.484 4.71599C15.4519 4.74803 15.4265 4.78607 15.4092 4.82794C15.3918 4.8698 15.3829 4.91468 15.3829 4.95999C15.3829 5.00531 15.3918 5.05018 15.4092 5.09205C15.4265 5.13392 15.4519 5.17195 15.484 5.20399C15.5162 5.23631 15.5545 5.26182 15.5968 5.279C15.6391 5.29618 15.6844 5.30468 15.73 5.30399C15.8218 5.30384 15.9101 5.26798 15.976 5.20399L16.955 4.22499C17.0197 4.16028 17.056 4.07251 17.056 3.98099C17.056 3.88948 17.0197 3.80171 16.955 3.73699C16.8903 3.67228 16.8025 3.63593 16.711 3.63593C16.6195 3.63593 16.5317 3.67228 16.467 3.73699H16.463Z", fill: color, stroke: color, "stroke-width": "0.3" }), /* @__PURE__ */ React.createElement("path", { d: "M4.72198 15.483L3.74298 16.462C3.71092 16.494 3.6855 16.5321 3.66815 16.5739C3.65081 16.6158 3.64188 16.6607 3.64188 16.706C3.64188 16.7513 3.65081 16.7962 3.66815 16.8381C3.6855 16.8799 3.71092 16.918 3.74298 16.95C3.77517 16.9823 3.81355 17.0078 3.85581 17.025C3.89807 17.0422 3.94336 17.0507 3.98898 17.05C4.08082 17.0497 4.169 17.0139 4.23498 16.95L5.21398 15.971C5.24602 15.939 5.27144 15.9009 5.28878 15.859C5.30612 15.8172 5.31504 15.7723 5.31504 15.727C5.31504 15.6817 5.30612 15.6368 5.28878 15.5949C5.27144 15.5531 5.24602 15.515 5.21398 15.483C5.18193 15.451 5.14389 15.4255 5.10203 15.4082C5.06016 15.3909 5.01529 15.3819 4.96998 15.3819C4.92466 15.3819 4.87979 15.3909 4.83792 15.4082C4.79606 15.4255 4.75802 15.451 4.72598 15.483H4.72198Z", fill: color, stroke: color, "stroke-width": "0.3" }), /* @__PURE__ */ React.createElement("path", { d: "M15.971 15.483C15.9389 15.451 15.9009 15.4255 15.859 15.4082C15.8172 15.3909 15.7723 15.3819 15.727 15.3819C15.6817 15.3819 15.6368 15.3909 15.5949 15.4082C15.5531 15.4255 15.515 15.451 15.483 15.483C15.4509 15.515 15.4255 15.5531 15.4082 15.5949C15.3908 15.6368 15.3819 15.6817 15.3819 15.727C15.3819 15.7723 15.3908 15.8172 15.4082 15.859C15.4255 15.9009 15.4509 15.939 15.483 15.971L16.462 16.95C16.4942 16.9823 16.5325 17.0078 16.5748 17.025C16.6171 17.0422 16.6624 17.0507 16.708 17.05C16.7998 17.0497 16.888 17.0139 16.954 16.95C16.986 16.918 17.0115 16.8799 17.0288 16.8381C17.0461 16.7962 17.0551 16.7513 17.0551 16.706C17.0551 16.6607 17.0461 16.6158 17.0288 16.5739C17.0115 16.5321 16.986 16.494 16.954 16.462L15.975 15.483H15.971Z", fill: color, stroke: color, "stroke-width": "0.3" }), /* @__PURE__ */ React.createElement("path", { d: "M4.71698 5.209C4.74917 5.24132 4.78755 5.26683 4.82981 5.28401C4.87207 5.30119 4.91736 5.30969 4.96298 5.309C5.05483 5.30874 5.143 5.2729 5.20897 5.209C5.24103 5.17696 5.26645 5.13892 5.2838 5.09706C5.30114 5.05519 5.31007 5.01032 5.31007 4.965C5.31007 4.91968 5.30114 4.87481 5.2838 4.83294C5.26645 4.79107 5.24103 4.75304 5.20897 4.721L4.22997 3.742C4.19793 3.70996 4.15989 3.68454 4.11803 3.6672C4.07616 3.64986 4.03129 3.64093 3.98598 3.64093C3.94066 3.64093 3.89579 3.64986 3.85392 3.6672C3.81206 3.68454 3.77402 3.70996 3.74198 3.742C3.70993 3.77404 3.68451 3.81208 3.66717 3.85395C3.64983 3.89581 3.64091 3.94068 3.64091 3.986C3.64091 4.03131 3.64983 4.07618 3.66717 4.11805C3.68451 4.15992 3.70993 4.19796 3.74198 4.23L4.72098 5.209H4.71698Z", fill: color, stroke: color, "stroke-width": "0.3" }));
4
+ var softSkillsIcon_default = SoftSkillsIcon;
5
+
6
+ export {
7
+ softSkillsIcon_default
8
+ };
@@ -33,15 +33,5 @@ __export(engagementIcon_exports, {
33
33
  });
34
34
  module.exports = __toCommonJS(engagementIcon_exports);
35
35
  var React = __toESM(require("react"), 1);
36
- var EngagementIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React.createElement(
37
- "svg",
38
- {
39
- xmlns: "http://www.w3.org/2000/svg",
40
- width: "11.519",
41
- height: "14.886",
42
- viewBox: "0 0 11.519 14.886",
43
- ...props
44
- },
45
- /* @__PURE__ */ React.createElement("path", { id: "Path_60771", "data-name": "Path 60771", d: "M15161.869-432l-9.47,6.608,9.47,6.47", transform: "translate(-15151.256 432.905)", fill: "none", stroke: color, "stroke-linecap": "round", "stroke-width": "1.3" })
46
- );
36
+ var EngagementIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React.createElement("svg", { width: "22", height: "22", viewBox: "0 0 22 22", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M14.4391 12.237C14.4713 12.2661 14.5091 12.2883 14.5501 12.3022C14.5912 12.3161 14.6347 12.3214 14.6779 12.3179C14.7211 12.3143 14.7631 12.3019 14.8013 12.2815C14.8396 12.261 14.8732 12.233 14.9001 12.199C14.956 12.1312 14.9835 12.0444 14.9768 11.9567C14.9701 11.8691 14.9297 11.7875 14.8641 11.729C14.2376 11.1794 13.5316 10.7277 12.7701 10.389C13.3457 9.88171 13.8062 9.25734 14.121 8.55767C14.4357 7.85801 14.5974 7.09919 14.5951 6.33199C14.6139 4.93817 14.0788 3.59386 13.1075 2.59404C12.1362 1.59423 10.8079 1.02059 9.41414 0.998993C8.02071 1.02137 6.69304 1.5955 5.72234 2.59544C4.75164 3.59539 4.21716 4.93951 4.23614 6.33299C4.23383 7.09938 4.39508 7.85743 4.7091 8.55653C5.02313 9.25563 5.48271 9.87968 6.05714 10.387C4.53991 11.0856 3.25607 12.2066 2.35924 13.6158C1.46241 15.0249 0.99056 16.6627 1.00014 18.333V20.666C0.999074 20.7531 1.03258 20.837 1.09332 20.8995C1.15405 20.9619 1.23706 20.9977 1.32414 20.999C1.41123 20.9977 1.49424 20.9619 1.55497 20.8995C1.61571 20.837 1.64921 20.7531 1.64814 20.666V18.333C1.63752 16.7252 2.11129 15.1515 3.00775 13.8168C3.9042 12.4821 5.1818 11.4483 6.67414 10.85C7.48858 11.3825 8.44057 11.6661 9.41364 11.6661C10.3867 11.6661 11.3387 11.3825 12.1531 10.85C12.9907 11.1745 13.7645 11.644 14.4391 12.237ZM4.88314 6.33699C4.86577 5.11734 5.33299 3.94062 6.18228 3.06509C7.03157 2.18955 8.19353 1.68674 9.41314 1.66699C10.6322 1.68674 11.7937 2.18914 12.6429 3.06402C13.4921 3.93891 13.9597 5.11486 13.9431 6.33399C13.9592 7.55278 13.4914 8.72822 12.6422 9.60267C11.7931 10.4771 10.6319 10.9792 9.41314 10.999C8.19423 10.9792 7.03288 10.477 6.18371 9.60232C5.33454 8.72765 4.86683 7.55196 4.88314 6.33299V6.33699Z", fill: color, stroke: color, "stroke-width": "0.5" }), /* @__PURE__ */ React.createElement("path", { d: "M20.971 15.204C20.9361 15.0935 20.8706 14.9953 20.7821 14.9206C20.6936 14.8459 20.5857 14.7978 20.471 14.782L17.754 14.4L16.54 12.021C16.4874 11.9197 16.4081 11.8348 16.3106 11.7755C16.213 11.7162 16.1011 11.6849 15.987 11.6849C15.8729 11.6849 15.761 11.7162 15.6634 11.7755C15.5659 11.8348 15.4866 11.9197 15.434 12.021L14.22 14.4L11.503 14.782C11.3883 14.7978 11.2804 14.8459 11.1919 14.9206C11.1034 14.9953 11.0379 15.0935 11.003 15.204C10.9675 15.313 10.964 15.4299 10.9929 15.5408C11.0218 15.6518 11.0819 15.7521 11.166 15.83L13.124 17.677L12.662 20.282C12.6461 20.3691 12.6497 20.4587 12.6725 20.5443C12.6953 20.6299 12.7368 20.7093 12.794 20.777C12.8859 20.8832 13.0105 20.956 13.1482 20.9839C13.2859 21.0117 13.429 20.9931 13.555 20.931L15.99 19.693L18.425 20.931C18.5508 20.9954 18.6947 21.0151 18.8332 20.987C18.9716 20.9588 19.0964 20.8844 19.187 20.776C19.2442 20.7083 19.2857 20.6289 19.3085 20.5433C19.3313 20.4577 19.3349 20.3681 19.319 20.281L18.857 17.676L20.816 15.829C20.8986 15.7503 20.957 15.6497 20.9845 15.539C21.0119 15.4283 21.0072 15.3121 20.971 15.204ZM18.316 17.195C18.2424 17.2639 18.1871 17.3501 18.1551 17.4458C18.1232 17.5415 18.1156 17.6436 18.133 17.743L18.57 20.205L16.27 19.034C16.1819 18.9903 16.0849 18.9675 15.9865 18.9675C15.8881 18.9675 15.7911 18.9903 15.703 19.034L13.403 20.205L13.84 17.742C13.8575 17.6426 13.8498 17.5405 13.8179 17.4448C13.7859 17.3491 13.7306 17.2629 13.657 17.194L11.819 15.46L14.372 15.101C14.4705 15.0874 14.5642 15.0504 14.6453 14.9929C14.7265 14.9355 14.7925 14.8594 14.838 14.771L15.99 12.512L17.143 14.771C17.1885 14.8594 17.2546 14.9355 17.3357 14.9929C17.4168 15.0504 17.5105 15.0874 17.609 15.101L20.162 15.46L18.316 17.195Z", fill: color, stroke: color, "stroke-width": "0.5" }));
47
37
  var engagementIcon_default = EngagementIcon;