@rufous/ui 0.1.16 → 0.1.18
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/dist/chunk-BYJP2WNC.js +18 -0
- package/dist/chunk-FSRABKKC.js +18 -0
- package/dist/chunk-GL43GPEM.js +18 -0
- package/dist/chunk-MKK7M3BH.js +18 -0
- package/dist/chunk-NSW6ZGZF.js +19 -0
- package/dist/chunk-RJ43D3XB.js +18 -0
- package/dist/chunk-RNA4TTYR.js +10 -0
- package/dist/chunk-ZAYWFYP4.js +18 -0
- package/dist/icons/dollarIcon.cjs +47 -0
- package/dist/icons/dollarIcon.d.cts +8 -0
- package/dist/icons/dollarIcon.d.ts +8 -0
- package/dist/icons/dollarIcon.js +6 -0
- package/dist/icons/engagementIcon.cjs +47 -0
- package/dist/icons/engagementIcon.d.cts +8 -0
- package/dist/icons/engagementIcon.d.ts +8 -0
- package/dist/icons/engagementIcon.js +6 -0
- package/dist/icons/functionIcon.cjs +47 -0
- package/dist/icons/functionIcon.d.cts +8 -0
- package/dist/icons/functionIcon.d.ts +8 -0
- package/dist/icons/functionIcon.js +6 -0
- package/dist/icons/index.cjs +129 -0
- package/dist/icons/index.d.cts +8 -0
- package/dist/icons/index.d.ts +8 -0
- package/dist/icons/index.js +54 -22
- package/dist/icons/industryIcon.cjs +48 -0
- package/dist/icons/industryIcon.d.cts +8 -0
- package/dist/icons/industryIcon.d.ts +8 -0
- package/dist/icons/industryIcon.js +6 -0
- package/dist/icons/minExperienceIcon.cjs +47 -0
- package/dist/icons/minExperienceIcon.d.cts +8 -0
- package/dist/icons/minExperienceIcon.d.ts +8 -0
- package/dist/icons/minExperienceIcon.js +6 -0
- package/dist/icons/projectIcon.cjs +47 -0
- package/dist/icons/projectIcon.d.cts +8 -0
- package/dist/icons/projectIcon.d.ts +8 -0
- package/dist/icons/projectIcon.js +6 -0
- package/dist/icons/refreshIcon.cjs +39 -0
- package/dist/icons/refreshIcon.d.cts +8 -0
- package/dist/icons/refreshIcon.d.ts +8 -0
- package/dist/icons/refreshIcon.js +6 -0
- package/dist/icons/rolesIcon.cjs +47 -0
- package/dist/icons/rolesIcon.d.cts +8 -0
- package/dist/icons/rolesIcon.d.ts +8 -0
- package/dist/icons/rolesIcon.js +6 -0
- package/dist/main.cjs +139 -10
- package/dist/main.d.cts +8 -0
- package/dist/main.d.ts +8 -0
- package/dist/main.js +54 -22
- package/package.json +1 -1
- /package/dist/{chunk-WJS22H3F.js → chunk-CC7BNJL3.js} +0 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// lib/icons/projectIcon.tsx
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
var ProjectIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React.createElement(
|
|
4
|
+
"svg",
|
|
5
|
+
{
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
width: "18.571",
|
|
8
|
+
height: "16.1",
|
|
9
|
+
viewBox: "0 0 18.571 16.1",
|
|
10
|
+
...props
|
|
11
|
+
},
|
|
12
|
+
/* @__PURE__ */ React.createElement("g", { id: "Group_26167", "data-name": "Group 26167", transform: "translate(-1125 -644.1)" }, /* @__PURE__ */ React.createElement("g", { id: "Rectangle_19851", "data-name": "Rectangle 19851", transform: "translate(1125 647.231)", fill: "none", stroke: color, "stroke-width": "1" }, /* @__PURE__ */ React.createElement("rect", { width: "18.571", height: "12.969", rx: "1", stroke: "none" }), /* @__PURE__ */ React.createElement("rect", { x: "0.5", y: "0.5", width: "17.571", height: "11.969", rx: "0.5", fill: "none" })), /* @__PURE__ */ React.createElement("g", { id: "Rectangle_19852", "data-name": "Rectangle 19852", transform: "translate(1131.964 644.1)", fill: "#fff", stroke: color, "stroke-width": "1" }, /* @__PURE__ */ React.createElement("path", { d: "M2.321,0h0A2.321,2.321,0,0,1,4.643,2.321V4.062a0,0,0,0,1,0,0H0a0,0,0,0,1,0,0V2.321A2.321,2.321,0,0,1,2.321,0Z", stroke: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M2.321.5h0A1.821,1.821,0,0,1,4.143,2.321V3.467a.1.1,0,0,1-.1.1H.6a.1.1,0,0,1-.1-.1V2.321A1.821,1.821,0,0,1,2.321.5Z", fill: "none" })), /* @__PURE__ */ React.createElement("line", { id: "Line_619", "data-name": "Line 619", y2: "12.311", transform: "translate(1128.482 647.889)", fill: "none", stroke: color, "stroke-width": "1" }), /* @__PURE__ */ React.createElement("line", { id: "Line_620", "data-name": "Line 620", y2: "12.311", transform: "translate(1140.089 647.889)", fill: "none", stroke: color, "stroke-width": "1" }))
|
|
13
|
+
);
|
|
14
|
+
var projectIcon_default = ProjectIcon;
|
|
15
|
+
|
|
16
|
+
export {
|
|
17
|
+
projectIcon_default
|
|
18
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// lib/icons/engagementIcon.tsx
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
var EngagementIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React.createElement(
|
|
4
|
+
"svg",
|
|
5
|
+
{
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
width: "11.519",
|
|
8
|
+
height: "14.886",
|
|
9
|
+
viewBox: "0 0 11.519 14.886",
|
|
10
|
+
...props
|
|
11
|
+
},
|
|
12
|
+
/* @__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" })
|
|
13
|
+
);
|
|
14
|
+
var engagementIcon_default = EngagementIcon;
|
|
15
|
+
|
|
16
|
+
export {
|
|
17
|
+
engagementIcon_default
|
|
18
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// lib/icons/dollarIcon.tsx
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
var DollarIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React.createElement(
|
|
4
|
+
"svg",
|
|
5
|
+
{
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
width: "12.04",
|
|
8
|
+
height: "20.85",
|
|
9
|
+
viewBox: "0 0 12.04 20.85",
|
|
10
|
+
...props
|
|
11
|
+
},
|
|
12
|
+
/* @__PURE__ */ React.createElement("g", { id: "dollar-line", transform: "translate(-21.612 -5.34)" }, /* @__PURE__ */ React.createElement("path", { id: "Path_60770", "data-name": "Path 60770", d: "M33.279,17.817a4.5,4.5,0,0,0-2.854-2.163,16.94,16.94,0,0,0-1.707-.417V9.328a6.548,6.548,0,0,1,3.167,1.225.653.653,0,1,0,.867-.977,7.656,7.656,0,0,0-4.033-1.564V5.992a.652.652,0,1,0-1.3,0V7.946c-2.867.065-4.45,1.492-4.932,2.724a3.623,3.623,0,0,0,1.453,4.444,8.6,8.6,0,0,0,3.479,1.2v5.968A8.014,8.014,0,0,1,22.762,20.5a.652.652,0,1,0-.893.938,9.181,9.181,0,0,0,5.545,2.15v1.955a.652.652,0,0,0,1.3,0V23.584c1.837-.124,3.955-.71,4.756-3.1A3.473,3.473,0,0,0,33.279,17.817Zm-8.607-3.8a2.326,2.326,0,0,1-.971-2.86c.072-.2.8-1.831,3.714-1.909v5.734a6.972,6.972,0,0,1-2.743-.964Zm7.565,6.02c-.469,1.394-1.512,2.065-3.518,2.215V16.566c.417.091.847.2,1.3.332A3.258,3.258,0,0,1,32.1,18.41a2.176,2.176,0,0,1,.137,1.629Z", fill: color }))
|
|
13
|
+
);
|
|
14
|
+
var dollarIcon_default = DollarIcon;
|
|
15
|
+
|
|
16
|
+
export {
|
|
17
|
+
dollarIcon_default
|
|
18
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// lib/icons/minExperienceIcon.tsx
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
var MinExperienceIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React.createElement(
|
|
4
|
+
"svg",
|
|
5
|
+
{
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
width: "25.444",
|
|
8
|
+
height: "20.16",
|
|
9
|
+
viewBox: "0 0 25.444 20.16",
|
|
10
|
+
...props
|
|
11
|
+
},
|
|
12
|
+
/* @__PURE__ */ React.createElement("g", { id: "noun-experience-5679525", transform: "translate(-0.793 -2.387)" }, /* @__PURE__ */ React.createElement("g", { id: "Group_26168", "data-name": "Group 26168", transform: "translate(0.794 2.387)" }, /* @__PURE__ */ React.createElement("path", { id: "Path_60772", "data-name": "Path 60772", d: "M13.514,2.387a3.787,3.787,0,0,0-1.982,7,6.6,6.6,0,0,0-4.449,4.941.438.438,0,0,0,.859.178,5.69,5.69,0,0,1,11.149,0,.438.438,0,1,0,.858-.178A6.6,6.6,0,0,0,15.5,9.385a3.786,3.786,0,0,0-1.983-7Zm0,.877a2.907,2.907,0,1,1-2.885,2.908A2.893,2.893,0,0,1,13.514,3.264Zm0,8.7a.437.437,0,0,0-.392.246l-1.052,2.14L9.721,14.7a.441.441,0,0,0-.242.75l1.7,1.669-.4,2.354a.441.441,0,0,0,.174.429.436.436,0,0,0,.46.034l2.1-1.111,2.1,1.111a.436.436,0,0,0,.46-.034.441.441,0,0,0,.174-.429l-.4-2.354,1.7-1.666a.441.441,0,0,0-.242-.751l-2.351-.344-1.051-2.142a.437.437,0,0,0-.392-.245Zm0,1.433.761,1.55a.438.438,0,0,0,.329.241l1.7.248-1.231,1.206a.441.441,0,0,0-.126.391l.29,1.7-1.521-.805a.435.435,0,0,0-.408,0l-1.522.8.291-1.7a.441.441,0,0,0-.126-.389l-1.23-1.207,1.7-.248a.438.438,0,0,0,.33-.241ZM4.963,14.53a.437.437,0,0,0-.392.246L3.519,16.917l-2.35.343a.441.441,0,0,0-.242.751l1.7,1.668-.4,2.354a.441.441,0,0,0,.174.429.436.436,0,0,0,.46.034l2.1-1.11,2.1,1.111a.436.436,0,0,0,.46-.034.441.441,0,0,0,.174-.43l-.4-2.354L9,18.012a.441.441,0,0,0-.242-.751l-2.351-.344L5.355,14.776a.437.437,0,0,0-.392-.246Zm17.105,0a.437.437,0,0,0-.392.246l-1.052,2.141-2.351.343a.441.441,0,0,0-.242.751l1.7,1.668-.4,2.354a.441.441,0,0,0,.174.429.436.436,0,0,0,.46.034l2.1-1.11,2.1,1.111a.436.436,0,0,0,.46-.034.441.441,0,0,0,.174-.43l-.4-2.354,1.7-1.666a.441.441,0,0,0-.242-.751l-2.351-.344-1.051-2.141a.437.437,0,0,0-.392-.246ZM4.963,15.964l.761,1.55a.438.438,0,0,0,.329.241l1.7.248L6.523,19.21a.441.441,0,0,0-.126.39l.29,1.7-1.521-.8a.435.435,0,0,0-.408,0l-1.522.8.291-1.7A.441.441,0,0,0,3.4,19.21L2.172,18l1.7-.248a.438.438,0,0,0,.33-.242Zm17.106,0,.76,1.55a.438.438,0,0,0,.329.241l1.7.248L23.628,19.21a.441.441,0,0,0-.126.39l.29,1.7-1.521-.8a.435.435,0,0,0-.408,0l-1.522.8.291-1.7a.441.441,0,0,0-.126-.389L19.277,18l1.7-.248a.438.438,0,0,0,.33-.242Z", transform: "translate(-0.794 -2.387)", fill: color, "fill-rule": "evenodd" })))
|
|
13
|
+
);
|
|
14
|
+
var minExperienceIcon_default = MinExperienceIcon;
|
|
15
|
+
|
|
16
|
+
export {
|
|
17
|
+
minExperienceIcon_default
|
|
18
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// lib/icons/industryIcon.tsx
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
var IndustryIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React.createElement(
|
|
4
|
+
"svg",
|
|
5
|
+
{
|
|
6
|
+
id: "graph-up-arrow",
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
width: "18",
|
|
9
|
+
height: "18",
|
|
10
|
+
viewBox: "0 0 18 18",
|
|
11
|
+
...props
|
|
12
|
+
},
|
|
13
|
+
/* @__PURE__ */ React.createElement("g", { id: "Group_26165", "data-name": "Group 26165" }, /* @__PURE__ */ React.createElement("path", { id: "Path_60768", "data-name": "Path 60768", d: "M0,0H1.125V16.875H18V18H0ZM11.25,3.937a.563.563,0,0,1,.563-.563h4.5a.562.562,0,0,1,.563.563v4.5a.563.563,0,0,1-1.125,0V5.513l-4.065,4.969a.562.562,0,0,1-.832.042l-2.91-2.91L3.829,13.268a.563.563,0,0,1-.909-.662l4.5-6.187a.563.563,0,0,1,.853-.067l2.935,2.936L15.126,4.5H11.813A.563.563,0,0,1,11.25,3.937Z", fill: color, "fill-rule": "evenodd" }))
|
|
14
|
+
);
|
|
15
|
+
var industryIcon_default = IndustryIcon;
|
|
16
|
+
|
|
17
|
+
export {
|
|
18
|
+
industryIcon_default
|
|
19
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// lib/icons/rolesIcon.tsx
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
var RolesIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React.createElement(
|
|
4
|
+
"svg",
|
|
5
|
+
{
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
width: "18.947",
|
|
8
|
+
height: "18",
|
|
9
|
+
viewBox: "0 0 18.947 18",
|
|
10
|
+
...props
|
|
11
|
+
},
|
|
12
|
+
/* @__PURE__ */ React.createElement("g", { id: "Polygon_20", "data-name": "Polygon 20", fill: "#fff" }, /* @__PURE__ */ React.createElement("path", { d: "M 14.31851863861084 16.61064720153809 L 9.815674781799316 13.82481002807617 L 9.473684310913086 13.61322975158691 L 9.131693840026855 13.82481002807617 L 4.628849983215332 16.61064720153809 L 5.889554500579834 11.47321033477783 L 5.985584259033203 11.08187007904053 L 5.677794456481934 10.82180023193359 L 1.635604500770569 7.406408309936523 L 6.916284084320068 7.016540050506592 L 7.317644119262695 6.986899852752686 L 7.470024108886719 6.614419937133789 L 9.473684310913086 1.716671586036682 L 11.47734451293945 6.614419937133789 L 11.62972450256348 6.986899852752686 L 12.03108406066895 7.016540050506592 L 17.31176376342773 7.406408309936523 L 13.26957416534424 10.82180023193359 L 12.96178436279297 11.08187007904053 L 13.0578145980835 11.47321033477783 L 14.31851863861084 16.61064720153809 Z", stroke: "none" }), /* @__PURE__ */ React.createElement("path", { d: "M 9.473684310913086 3.433357238769531 L 7.766864776611328 7.605509757995605 L 3.271193504333496 7.937417984008789 L 6.712894439697266 10.84543991088867 L 5.639073371887207 15.22130012512207 L 9.473684310913086 12.84887981414795 L 13.30829429626465 15.22130012512207 L 12.23447418212891 10.84543991088867 L 15.67617416381836 7.937417984008789 L 11.18050384521484 7.605509757995605 L 9.473684310913086 3.433357238769531 M 9.473684310913086 0 L 12.07894420623779 6.368300437927246 L 18.94736480712891 6.87539005279541 L 13.68908500671387 11.31830024719238 L 15.32874488830566 18 L 9.473684310913086 14.37757015228271 L 3.618624687194824 18 L 5.258284568786621 11.31830024719238 L 3.814697265625e-06 6.87539005279541 L 6.868424415588379 6.368300437927246 L 9.473684310913086 0 Z", stroke: "none", fill: color }))
|
|
13
|
+
);
|
|
14
|
+
var rolesIcon_default = RolesIcon;
|
|
15
|
+
|
|
16
|
+
export {
|
|
17
|
+
rolesIcon_default
|
|
18
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
// lib/icons/refreshIcon.tsx
|
|
2
|
+
import React from "react";
|
|
3
|
+
var RefreshIcon = ({ color = "#3a3a3a", ...props }) => {
|
|
4
|
+
return /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", id: "Component_6_6", "data-name": "Component 6 \u2013 6", width: "38", height: "38", viewBox: "0 0 38 38", ...props }, /* @__PURE__ */ React.createElement("circle", { id: "Ellipse_39", "data-name": "Ellipse 39", cx: "19", cy: "19", r: "19", fill: "none" }), /* @__PURE__ */ React.createElement("path", { id: "Union_19", "data-name": "Union 19", d: "M9.068,21.865a12.147,12.147,0,0,1-1.469-1.2L6.382,22.471a.934.934,0,0,1-1.658-.217L2.874,16.908a.936.936,0,0,1,.836-1.242l5.64-.283a.936.936,0,0,1,.822,1.459L8.666,19.078A10.12,10.12,0,1,0,5.774,12c0,.291.013.587.038.877H3.937c-.021-.3-.032-.591-.032-.877A11.976,11.976,0,1,1,15.881,24,11.878,11.878,0,0,1,9.068,21.865Z", transform: "translate(3.661 7)", fill: color }));
|
|
5
|
+
};
|
|
6
|
+
var refreshIcon_default = RefreshIcon;
|
|
7
|
+
|
|
8
|
+
export {
|
|
9
|
+
refreshIcon_default
|
|
10
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// lib/icons/functionIcon.tsx
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
var FunctionIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React.createElement(
|
|
4
|
+
"svg",
|
|
5
|
+
{
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
width: "23.5",
|
|
8
|
+
height: "19.5",
|
|
9
|
+
viewBox: "0 0 23.5 19.5",
|
|
10
|
+
...props
|
|
11
|
+
},
|
|
12
|
+
/* @__PURE__ */ React.createElement("g", { id: "users_curved", transform: "translate(-3.25 -11.25)" }, /* @__PURE__ */ React.createElement("path", { id: "Path_60769", "data-name": "Path 60769", d: "M23.5,30A2.5,2.5,0,0,0,26,27.5c0-2.327-1.952-3.3-4-3.708M18,20a4,4,0,1,0,0-8M6.5,30h11A2.5,2.5,0,0,0,20,27.5c0-4.081-6-4-8-4s-8-.081-8,4A2.5,2.5,0,0,0,6.5,30ZM16,16a4,4,0,1,1-4-4A4,4,0,0,1,16,16Z", fill: "none", stroke: color, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "1.5" }))
|
|
13
|
+
);
|
|
14
|
+
var functionIcon_default = FunctionIcon;
|
|
15
|
+
|
|
16
|
+
export {
|
|
17
|
+
functionIcon_default
|
|
18
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
+
mod
|
|
26
|
+
));
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
|
|
29
|
+
// lib/icons/dollarIcon.tsx
|
|
30
|
+
var dollarIcon_exports = {};
|
|
31
|
+
__export(dollarIcon_exports, {
|
|
32
|
+
default: () => dollarIcon_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(dollarIcon_exports);
|
|
35
|
+
var React = __toESM(require("react"), 1);
|
|
36
|
+
var DollarIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React.createElement(
|
|
37
|
+
"svg",
|
|
38
|
+
{
|
|
39
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
40
|
+
width: "12.04",
|
|
41
|
+
height: "20.85",
|
|
42
|
+
viewBox: "0 0 12.04 20.85",
|
|
43
|
+
...props
|
|
44
|
+
},
|
|
45
|
+
/* @__PURE__ */ React.createElement("g", { id: "dollar-line", transform: "translate(-21.612 -5.34)" }, /* @__PURE__ */ React.createElement("path", { id: "Path_60770", "data-name": "Path 60770", d: "M33.279,17.817a4.5,4.5,0,0,0-2.854-2.163,16.94,16.94,0,0,0-1.707-.417V9.328a6.548,6.548,0,0,1,3.167,1.225.653.653,0,1,0,.867-.977,7.656,7.656,0,0,0-4.033-1.564V5.992a.652.652,0,1,0-1.3,0V7.946c-2.867.065-4.45,1.492-4.932,2.724a3.623,3.623,0,0,0,1.453,4.444,8.6,8.6,0,0,0,3.479,1.2v5.968A8.014,8.014,0,0,1,22.762,20.5a.652.652,0,1,0-.893.938,9.181,9.181,0,0,0,5.545,2.15v1.955a.652.652,0,0,0,1.3,0V23.584c1.837-.124,3.955-.71,4.756-3.1A3.473,3.473,0,0,0,33.279,17.817Zm-8.607-3.8a2.326,2.326,0,0,1-.971-2.86c.072-.2.8-1.831,3.714-1.909v5.734a6.972,6.972,0,0,1-2.743-.964Zm7.565,6.02c-.469,1.394-1.512,2.065-3.518,2.215V16.566c.417.091.847.2,1.3.332A3.258,3.258,0,0,1,32.1,18.41a2.176,2.176,0,0,1,.137,1.629Z", fill: color }))
|
|
46
|
+
);
|
|
47
|
+
var dollarIcon_default = DollarIcon;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
+
mod
|
|
26
|
+
));
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
|
|
29
|
+
// lib/icons/engagementIcon.tsx
|
|
30
|
+
var engagementIcon_exports = {};
|
|
31
|
+
__export(engagementIcon_exports, {
|
|
32
|
+
default: () => engagementIcon_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(engagementIcon_exports);
|
|
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
|
+
);
|
|
47
|
+
var engagementIcon_default = EngagementIcon;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
+
mod
|
|
26
|
+
));
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
|
|
29
|
+
// lib/icons/functionIcon.tsx
|
|
30
|
+
var functionIcon_exports = {};
|
|
31
|
+
__export(functionIcon_exports, {
|
|
32
|
+
default: () => functionIcon_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(functionIcon_exports);
|
|
35
|
+
var React = __toESM(require("react"), 1);
|
|
36
|
+
var FunctionIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React.createElement(
|
|
37
|
+
"svg",
|
|
38
|
+
{
|
|
39
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
40
|
+
width: "23.5",
|
|
41
|
+
height: "19.5",
|
|
42
|
+
viewBox: "0 0 23.5 19.5",
|
|
43
|
+
...props
|
|
44
|
+
},
|
|
45
|
+
/* @__PURE__ */ React.createElement("g", { id: "users_curved", transform: "translate(-3.25 -11.25)" }, /* @__PURE__ */ React.createElement("path", { id: "Path_60769", "data-name": "Path 60769", d: "M23.5,30A2.5,2.5,0,0,0,26,27.5c0-2.327-1.952-3.3-4-3.708M18,20a4,4,0,1,0,0-8M6.5,30h11A2.5,2.5,0,0,0,20,27.5c0-4.081-6-4-8-4s-8-.081-8,4A2.5,2.5,0,0,0,6.5,30ZM16,16a4,4,0,1,1-4-4A4,4,0,0,1,16,16Z", fill: "none", stroke: color, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "1.5" }))
|
|
46
|
+
);
|
|
47
|
+
var functionIcon_default = FunctionIcon;
|
package/dist/icons/index.cjs
CHANGED
|
@@ -37,16 +37,22 @@ __export(icons_exports, {
|
|
|
37
37
|
DifficultyEasyIcon: () => difficultyEasyIcon_default,
|
|
38
38
|
DifficultyHardIcon: () => difficultyHardIcon_default,
|
|
39
39
|
DifficultyMediumIcon: () => difficultyMediumIcon_default,
|
|
40
|
+
DollarIcon: () => dollarIcon_default,
|
|
40
41
|
DownloadIcon: () => downloadIcon_default,
|
|
41
42
|
EditChatIcon: () => editChatIcon_default,
|
|
42
43
|
EditIcon: () => editIcon_default,
|
|
44
|
+
EngagementIcon: () => engagementIcon_default,
|
|
45
|
+
FunctionIcon: () => functionIcon_default,
|
|
43
46
|
HelpOutlinedIcon: () => helpOutlinedIcon_default,
|
|
44
47
|
HierarchyIcon: () => hierarchyIcon_default,
|
|
45
48
|
InactiveGroupIcon: () => inactiveGroupIcon_default,
|
|
49
|
+
IndustryIcon: () => industryIcon_default,
|
|
46
50
|
InvoiceIcon: () => invoiceIcon_default,
|
|
47
51
|
LogsIcon: () => logsIcon_default,
|
|
52
|
+
MinExperienceIcon: () => minExperienceIcon_default,
|
|
48
53
|
NineDotMenuIcon: () => nineDotMenuIcon_default,
|
|
49
54
|
NotificationIcon: () => notificationIcon_default,
|
|
55
|
+
ProjectIcon: () => projectIcon_default,
|
|
50
56
|
QuestionStatusAllIcon: () => questionStatusAllIcon_default,
|
|
51
57
|
QuestionStatusPrivateIcon: () => questionStatusPrivateIcon_default,
|
|
52
58
|
QuestionStatusPublicIcon: () => questionStatusPublicIcon_default,
|
|
@@ -55,7 +61,9 @@ __export(icons_exports, {
|
|
|
55
61
|
QuestionTypeDescriptiveIcon: () => questionTypeDescriptiveIcon_default,
|
|
56
62
|
QuestionTypeMultipleIcon: () => questionTypeMultipleIcon_default,
|
|
57
63
|
QuestionTypeSingleIcon: () => questionTypeSingleIcon_default,
|
|
64
|
+
RefreshIcon: () => refreshIcon_default,
|
|
58
65
|
ResendInviteIcon: () => resendInviteIcon_default,
|
|
66
|
+
RolesIcon: () => rolesIcon_default,
|
|
59
67
|
RufousBirdIcon: () => rufousBirdIcon_default,
|
|
60
68
|
RufousLauncherIcon: () => rufousLauncherBird_default,
|
|
61
69
|
SidebarIcon: () => sidebarIcon_default,
|
|
@@ -1049,6 +1057,119 @@ var NotificationIcon = ({ color = "#3a3a3a", ...props }) => {
|
|
|
1049
1057
|
return /* @__PURE__ */ import_react11.default.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "40", height: "40", viewBox: "0 0 40 40", ...props }, /* @__PURE__ */ import_react11.default.createElement("g", { id: "Group_26345", "data-name": "Group 26345", transform: "translate(-1600 -24)" }, /* @__PURE__ */ import_react11.default.createElement("circle", { id: "Ellipse_32", "data-name": "Ellipse 32", cx: "20", cy: "20", r: "20", transform: "translate(1600 24)", fill: "none" }), /* @__PURE__ */ import_react11.default.createElement("g", { id: "bell", transform: "translate(1594.537 28.951)" }, /* @__PURE__ */ import_react11.default.createElement("g", { id: "Group_26115", "data-name": "Group 26115", transform: "translate(12 -0.011)" }, /* @__PURE__ */ import_react11.default.createElement("path", { id: "Path_60748", "data-name": "Path 60748", d: "M25.124,29.989a3.75,3.75,0,0,0,3.75-3.75h-7.5A3.75,3.75,0,0,0,25.124,29.989Zm0-26.4-1.494.3a7.5,7.5,0,0,0-6.005,7.351,40.688,40.688,0,0,1-.861,7.016,24.253,24.253,0,0,1-1.243,4.234H34.728a24.369,24.369,0,0,1-1.243-4.234,40.687,40.687,0,0,1-.861-7.016,7.5,7.5,0,0,0-6.005-7.35l-1.494-.306Zm11.662,18.9a4.771,4.771,0,0,0,1.462,1.875H12a4.771,4.771,0,0,0,1.462-1.875c1.687-3.375,2.287-9.6,2.287-11.249a9.378,9.378,0,0,1,7.509-9.189,1.875,1.875,0,1,1,3.731,0A9.378,9.378,0,0,1,34.5,11.241C34.5,12.89,35.1,19.115,36.786,22.49Z", transform: "translate(-12 0.011)", fill: color })))));
|
|
1050
1058
|
};
|
|
1051
1059
|
var notificationIcon_default = NotificationIcon;
|
|
1060
|
+
|
|
1061
|
+
// lib/icons/refreshIcon.tsx
|
|
1062
|
+
var import_react12 = __toESM(require("react"), 1);
|
|
1063
|
+
var RefreshIcon = ({ color = "#3a3a3a", ...props }) => {
|
|
1064
|
+
return /* @__PURE__ */ import_react12.default.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", id: "Component_6_6", "data-name": "Component 6 \u2013 6", width: "38", height: "38", viewBox: "0 0 38 38", ...props }, /* @__PURE__ */ import_react12.default.createElement("circle", { id: "Ellipse_39", "data-name": "Ellipse 39", cx: "19", cy: "19", r: "19", fill: "none" }), /* @__PURE__ */ import_react12.default.createElement("path", { id: "Union_19", "data-name": "Union 19", d: "M9.068,21.865a12.147,12.147,0,0,1-1.469-1.2L6.382,22.471a.934.934,0,0,1-1.658-.217L2.874,16.908a.936.936,0,0,1,.836-1.242l5.64-.283a.936.936,0,0,1,.822,1.459L8.666,19.078A10.12,10.12,0,1,0,5.774,12c0,.291.013.587.038.877H3.937c-.021-.3-.032-.591-.032-.877A11.976,11.976,0,1,1,15.881,24,11.878,11.878,0,0,1,9.068,21.865Z", transform: "translate(3.661 7)", fill: color }));
|
|
1065
|
+
};
|
|
1066
|
+
var refreshIcon_default = RefreshIcon;
|
|
1067
|
+
|
|
1068
|
+
// lib/icons/dollarIcon.tsx
|
|
1069
|
+
var React43 = __toESM(require("react"), 1);
|
|
1070
|
+
var DollarIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React43.createElement(
|
|
1071
|
+
"svg",
|
|
1072
|
+
{
|
|
1073
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1074
|
+
width: "12.04",
|
|
1075
|
+
height: "20.85",
|
|
1076
|
+
viewBox: "0 0 12.04 20.85",
|
|
1077
|
+
...props
|
|
1078
|
+
},
|
|
1079
|
+
/* @__PURE__ */ React43.createElement("g", { id: "dollar-line", transform: "translate(-21.612 -5.34)" }, /* @__PURE__ */ React43.createElement("path", { id: "Path_60770", "data-name": "Path 60770", d: "M33.279,17.817a4.5,4.5,0,0,0-2.854-2.163,16.94,16.94,0,0,0-1.707-.417V9.328a6.548,6.548,0,0,1,3.167,1.225.653.653,0,1,0,.867-.977,7.656,7.656,0,0,0-4.033-1.564V5.992a.652.652,0,1,0-1.3,0V7.946c-2.867.065-4.45,1.492-4.932,2.724a3.623,3.623,0,0,0,1.453,4.444,8.6,8.6,0,0,0,3.479,1.2v5.968A8.014,8.014,0,0,1,22.762,20.5a.652.652,0,1,0-.893.938,9.181,9.181,0,0,0,5.545,2.15v1.955a.652.652,0,0,0,1.3,0V23.584c1.837-.124,3.955-.71,4.756-3.1A3.473,3.473,0,0,0,33.279,17.817Zm-8.607-3.8a2.326,2.326,0,0,1-.971-2.86c.072-.2.8-1.831,3.714-1.909v5.734a6.972,6.972,0,0,1-2.743-.964Zm7.565,6.02c-.469,1.394-1.512,2.065-3.518,2.215V16.566c.417.091.847.2,1.3.332A3.258,3.258,0,0,1,32.1,18.41a2.176,2.176,0,0,1,.137,1.629Z", fill: color }))
|
|
1080
|
+
);
|
|
1081
|
+
var dollarIcon_default = DollarIcon;
|
|
1082
|
+
|
|
1083
|
+
// lib/icons/engagementIcon.tsx
|
|
1084
|
+
var React44 = __toESM(require("react"), 1);
|
|
1085
|
+
var EngagementIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React44.createElement(
|
|
1086
|
+
"svg",
|
|
1087
|
+
{
|
|
1088
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1089
|
+
width: "11.519",
|
|
1090
|
+
height: "14.886",
|
|
1091
|
+
viewBox: "0 0 11.519 14.886",
|
|
1092
|
+
...props
|
|
1093
|
+
},
|
|
1094
|
+
/* @__PURE__ */ React44.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" })
|
|
1095
|
+
);
|
|
1096
|
+
var engagementIcon_default = EngagementIcon;
|
|
1097
|
+
|
|
1098
|
+
// lib/icons/functionIcon.tsx
|
|
1099
|
+
var React45 = __toESM(require("react"), 1);
|
|
1100
|
+
var FunctionIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React45.createElement(
|
|
1101
|
+
"svg",
|
|
1102
|
+
{
|
|
1103
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1104
|
+
width: "23.5",
|
|
1105
|
+
height: "19.5",
|
|
1106
|
+
viewBox: "0 0 23.5 19.5",
|
|
1107
|
+
...props
|
|
1108
|
+
},
|
|
1109
|
+
/* @__PURE__ */ React45.createElement("g", { id: "users_curved", transform: "translate(-3.25 -11.25)" }, /* @__PURE__ */ React45.createElement("path", { id: "Path_60769", "data-name": "Path 60769", d: "M23.5,30A2.5,2.5,0,0,0,26,27.5c0-2.327-1.952-3.3-4-3.708M18,20a4,4,0,1,0,0-8M6.5,30h11A2.5,2.5,0,0,0,20,27.5c0-4.081-6-4-8-4s-8-.081-8,4A2.5,2.5,0,0,0,6.5,30ZM16,16a4,4,0,1,1-4-4A4,4,0,0,1,16,16Z", fill: "none", stroke: color, "stroke-linecap": "round", "stroke-linejoin": "round", "stroke-width": "1.5" }))
|
|
1110
|
+
);
|
|
1111
|
+
var functionIcon_default = FunctionIcon;
|
|
1112
|
+
|
|
1113
|
+
// lib/icons/industryIcon.tsx
|
|
1114
|
+
var React46 = __toESM(require("react"), 1);
|
|
1115
|
+
var IndustryIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React46.createElement(
|
|
1116
|
+
"svg",
|
|
1117
|
+
{
|
|
1118
|
+
id: "graph-up-arrow",
|
|
1119
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1120
|
+
width: "18",
|
|
1121
|
+
height: "18",
|
|
1122
|
+
viewBox: "0 0 18 18",
|
|
1123
|
+
...props
|
|
1124
|
+
},
|
|
1125
|
+
/* @__PURE__ */ React46.createElement("g", { id: "Group_26165", "data-name": "Group 26165" }, /* @__PURE__ */ React46.createElement("path", { id: "Path_60768", "data-name": "Path 60768", d: "M0,0H1.125V16.875H18V18H0ZM11.25,3.937a.563.563,0,0,1,.563-.563h4.5a.562.562,0,0,1,.563.563v4.5a.563.563,0,0,1-1.125,0V5.513l-4.065,4.969a.562.562,0,0,1-.832.042l-2.91-2.91L3.829,13.268a.563.563,0,0,1-.909-.662l4.5-6.187a.563.563,0,0,1,.853-.067l2.935,2.936L15.126,4.5H11.813A.563.563,0,0,1,11.25,3.937Z", fill: color, "fill-rule": "evenodd" }))
|
|
1126
|
+
);
|
|
1127
|
+
var industryIcon_default = IndustryIcon;
|
|
1128
|
+
|
|
1129
|
+
// lib/icons/minExperienceIcon.tsx
|
|
1130
|
+
var React47 = __toESM(require("react"), 1);
|
|
1131
|
+
var MinExperienceIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React47.createElement(
|
|
1132
|
+
"svg",
|
|
1133
|
+
{
|
|
1134
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1135
|
+
width: "25.444",
|
|
1136
|
+
height: "20.16",
|
|
1137
|
+
viewBox: "0 0 25.444 20.16",
|
|
1138
|
+
...props
|
|
1139
|
+
},
|
|
1140
|
+
/* @__PURE__ */ React47.createElement("g", { id: "noun-experience-5679525", transform: "translate(-0.793 -2.387)" }, /* @__PURE__ */ React47.createElement("g", { id: "Group_26168", "data-name": "Group 26168", transform: "translate(0.794 2.387)" }, /* @__PURE__ */ React47.createElement("path", { id: "Path_60772", "data-name": "Path 60772", d: "M13.514,2.387a3.787,3.787,0,0,0-1.982,7,6.6,6.6,0,0,0-4.449,4.941.438.438,0,0,0,.859.178,5.69,5.69,0,0,1,11.149,0,.438.438,0,1,0,.858-.178A6.6,6.6,0,0,0,15.5,9.385a3.786,3.786,0,0,0-1.983-7Zm0,.877a2.907,2.907,0,1,1-2.885,2.908A2.893,2.893,0,0,1,13.514,3.264Zm0,8.7a.437.437,0,0,0-.392.246l-1.052,2.14L9.721,14.7a.441.441,0,0,0-.242.75l1.7,1.669-.4,2.354a.441.441,0,0,0,.174.429.436.436,0,0,0,.46.034l2.1-1.111,2.1,1.111a.436.436,0,0,0,.46-.034.441.441,0,0,0,.174-.429l-.4-2.354,1.7-1.666a.441.441,0,0,0-.242-.751l-2.351-.344-1.051-2.142a.437.437,0,0,0-.392-.245Zm0,1.433.761,1.55a.438.438,0,0,0,.329.241l1.7.248-1.231,1.206a.441.441,0,0,0-.126.391l.29,1.7-1.521-.805a.435.435,0,0,0-.408,0l-1.522.8.291-1.7a.441.441,0,0,0-.126-.389l-1.23-1.207,1.7-.248a.438.438,0,0,0,.33-.241ZM4.963,14.53a.437.437,0,0,0-.392.246L3.519,16.917l-2.35.343a.441.441,0,0,0-.242.751l1.7,1.668-.4,2.354a.441.441,0,0,0,.174.429.436.436,0,0,0,.46.034l2.1-1.11,2.1,1.111a.436.436,0,0,0,.46-.034.441.441,0,0,0,.174-.43l-.4-2.354L9,18.012a.441.441,0,0,0-.242-.751l-2.351-.344L5.355,14.776a.437.437,0,0,0-.392-.246Zm17.105,0a.437.437,0,0,0-.392.246l-1.052,2.141-2.351.343a.441.441,0,0,0-.242.751l1.7,1.668-.4,2.354a.441.441,0,0,0,.174.429.436.436,0,0,0,.46.034l2.1-1.11,2.1,1.111a.436.436,0,0,0,.46-.034.441.441,0,0,0,.174-.43l-.4-2.354,1.7-1.666a.441.441,0,0,0-.242-.751l-2.351-.344-1.051-2.141a.437.437,0,0,0-.392-.246ZM4.963,15.964l.761,1.55a.438.438,0,0,0,.329.241l1.7.248L6.523,19.21a.441.441,0,0,0-.126.39l.29,1.7-1.521-.8a.435.435,0,0,0-.408,0l-1.522.8.291-1.7A.441.441,0,0,0,3.4,19.21L2.172,18l1.7-.248a.438.438,0,0,0,.33-.242Zm17.106,0,.76,1.55a.438.438,0,0,0,.329.241l1.7.248L23.628,19.21a.441.441,0,0,0-.126.39l.29,1.7-1.521-.8a.435.435,0,0,0-.408,0l-1.522.8.291-1.7a.441.441,0,0,0-.126-.389L19.277,18l1.7-.248a.438.438,0,0,0,.33-.242Z", transform: "translate(-0.794 -2.387)", fill: color, "fill-rule": "evenodd" })))
|
|
1141
|
+
);
|
|
1142
|
+
var minExperienceIcon_default = MinExperienceIcon;
|
|
1143
|
+
|
|
1144
|
+
// lib/icons/projectIcon.tsx
|
|
1145
|
+
var React48 = __toESM(require("react"), 1);
|
|
1146
|
+
var ProjectIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React48.createElement(
|
|
1147
|
+
"svg",
|
|
1148
|
+
{
|
|
1149
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1150
|
+
width: "18.571",
|
|
1151
|
+
height: "16.1",
|
|
1152
|
+
viewBox: "0 0 18.571 16.1",
|
|
1153
|
+
...props
|
|
1154
|
+
},
|
|
1155
|
+
/* @__PURE__ */ React48.createElement("g", { id: "Group_26167", "data-name": "Group 26167", transform: "translate(-1125 -644.1)" }, /* @__PURE__ */ React48.createElement("g", { id: "Rectangle_19851", "data-name": "Rectangle 19851", transform: "translate(1125 647.231)", fill: "none", stroke: color, "stroke-width": "1" }, /* @__PURE__ */ React48.createElement("rect", { width: "18.571", height: "12.969", rx: "1", stroke: "none" }), /* @__PURE__ */ React48.createElement("rect", { x: "0.5", y: "0.5", width: "17.571", height: "11.969", rx: "0.5", fill: "none" })), /* @__PURE__ */ React48.createElement("g", { id: "Rectangle_19852", "data-name": "Rectangle 19852", transform: "translate(1131.964 644.1)", fill: "#fff", stroke: color, "stroke-width": "1" }, /* @__PURE__ */ React48.createElement("path", { d: "M2.321,0h0A2.321,2.321,0,0,1,4.643,2.321V4.062a0,0,0,0,1,0,0H0a0,0,0,0,1,0,0V2.321A2.321,2.321,0,0,1,2.321,0Z", stroke: "none" }), /* @__PURE__ */ React48.createElement("path", { d: "M2.321.5h0A1.821,1.821,0,0,1,4.143,2.321V3.467a.1.1,0,0,1-.1.1H.6a.1.1,0,0,1-.1-.1V2.321A1.821,1.821,0,0,1,2.321.5Z", fill: "none" })), /* @__PURE__ */ React48.createElement("line", { id: "Line_619", "data-name": "Line 619", y2: "12.311", transform: "translate(1128.482 647.889)", fill: "none", stroke: color, "stroke-width": "1" }), /* @__PURE__ */ React48.createElement("line", { id: "Line_620", "data-name": "Line 620", y2: "12.311", transform: "translate(1140.089 647.889)", fill: "none", stroke: color, "stroke-width": "1" }))
|
|
1156
|
+
);
|
|
1157
|
+
var projectIcon_default = ProjectIcon;
|
|
1158
|
+
|
|
1159
|
+
// lib/icons/rolesIcon.tsx
|
|
1160
|
+
var React49 = __toESM(require("react"), 1);
|
|
1161
|
+
var RolesIcon = ({ color = "#3a3a3a", ...props }) => /* @__PURE__ */ React49.createElement(
|
|
1162
|
+
"svg",
|
|
1163
|
+
{
|
|
1164
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1165
|
+
width: "18.947",
|
|
1166
|
+
height: "18",
|
|
1167
|
+
viewBox: "0 0 18.947 18",
|
|
1168
|
+
...props
|
|
1169
|
+
},
|
|
1170
|
+
/* @__PURE__ */ React49.createElement("g", { id: "Polygon_20", "data-name": "Polygon 20", fill: "#fff" }, /* @__PURE__ */ React49.createElement("path", { d: "M 14.31851863861084 16.61064720153809 L 9.815674781799316 13.82481002807617 L 9.473684310913086 13.61322975158691 L 9.131693840026855 13.82481002807617 L 4.628849983215332 16.61064720153809 L 5.889554500579834 11.47321033477783 L 5.985584259033203 11.08187007904053 L 5.677794456481934 10.82180023193359 L 1.635604500770569 7.406408309936523 L 6.916284084320068 7.016540050506592 L 7.317644119262695 6.986899852752686 L 7.470024108886719 6.614419937133789 L 9.473684310913086 1.716671586036682 L 11.47734451293945 6.614419937133789 L 11.62972450256348 6.986899852752686 L 12.03108406066895 7.016540050506592 L 17.31176376342773 7.406408309936523 L 13.26957416534424 10.82180023193359 L 12.96178436279297 11.08187007904053 L 13.0578145980835 11.47321033477783 L 14.31851863861084 16.61064720153809 Z", stroke: "none" }), /* @__PURE__ */ React49.createElement("path", { d: "M 9.473684310913086 3.433357238769531 L 7.766864776611328 7.605509757995605 L 3.271193504333496 7.937417984008789 L 6.712894439697266 10.84543991088867 L 5.639073371887207 15.22130012512207 L 9.473684310913086 12.84887981414795 L 13.30829429626465 15.22130012512207 L 12.23447418212891 10.84543991088867 L 15.67617416381836 7.937417984008789 L 11.18050384521484 7.605509757995605 L 9.473684310913086 3.433357238769531 M 9.473684310913086 0 L 12.07894420623779 6.368300437927246 L 18.94736480712891 6.87539005279541 L 13.68908500671387 11.31830024719238 L 15.32874488830566 18 L 9.473684310913086 14.37757015228271 L 3.618624687194824 18 L 5.258284568786621 11.31830024719238 L 3.814697265625e-06 6.87539005279541 L 6.868424415588379 6.368300437927246 L 9.473684310913086 0 Z", stroke: "none", fill: color }))
|
|
1171
|
+
);
|
|
1172
|
+
var rolesIcon_default = RolesIcon;
|
|
1052
1173
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1053
1174
|
0 && (module.exports = {
|
|
1054
1175
|
ActivateUserIcon,
|
|
@@ -1059,16 +1180,22 @@ var notificationIcon_default = NotificationIcon;
|
|
|
1059
1180
|
DifficultyEasyIcon,
|
|
1060
1181
|
DifficultyHardIcon,
|
|
1061
1182
|
DifficultyMediumIcon,
|
|
1183
|
+
DollarIcon,
|
|
1062
1184
|
DownloadIcon,
|
|
1063
1185
|
EditChatIcon,
|
|
1064
1186
|
EditIcon,
|
|
1187
|
+
EngagementIcon,
|
|
1188
|
+
FunctionIcon,
|
|
1065
1189
|
HelpOutlinedIcon,
|
|
1066
1190
|
HierarchyIcon,
|
|
1067
1191
|
InactiveGroupIcon,
|
|
1192
|
+
IndustryIcon,
|
|
1068
1193
|
InvoiceIcon,
|
|
1069
1194
|
LogsIcon,
|
|
1195
|
+
MinExperienceIcon,
|
|
1070
1196
|
NineDotMenuIcon,
|
|
1071
1197
|
NotificationIcon,
|
|
1198
|
+
ProjectIcon,
|
|
1072
1199
|
QuestionStatusAllIcon,
|
|
1073
1200
|
QuestionStatusPrivateIcon,
|
|
1074
1201
|
QuestionStatusPublicIcon,
|
|
@@ -1077,7 +1204,9 @@ var notificationIcon_default = NotificationIcon;
|
|
|
1077
1204
|
QuestionTypeDescriptiveIcon,
|
|
1078
1205
|
QuestionTypeMultipleIcon,
|
|
1079
1206
|
QuestionTypeSingleIcon,
|
|
1207
|
+
RefreshIcon,
|
|
1080
1208
|
ResendInviteIcon,
|
|
1209
|
+
RolesIcon,
|
|
1081
1210
|
RufousBirdIcon,
|
|
1082
1211
|
RufousLauncherIcon,
|
|
1083
1212
|
SidebarIcon,
|
package/dist/icons/index.d.cts
CHANGED
|
@@ -39,4 +39,12 @@ export { default as TrashIcon } from './trashIcon.cjs';
|
|
|
39
39
|
export { default as EditChatIcon } from './editChatIcon.cjs';
|
|
40
40
|
export { default as SidebarIcon } from './sidebarIcon.cjs';
|
|
41
41
|
export { default as NotificationIcon } from './notificationIcon.cjs';
|
|
42
|
+
export { default as RefreshIcon } from './refreshIcon.cjs';
|
|
43
|
+
export { default as DollarIcon } from './dollarIcon.cjs';
|
|
44
|
+
export { default as EngagementIcon } from './engagementIcon.cjs';
|
|
45
|
+
export { default as FunctionIcon } from './functionIcon.cjs';
|
|
46
|
+
export { default as IndustryIcon } from './industryIcon.cjs';
|
|
47
|
+
export { default as MinExperienceIcon } from './minExperienceIcon.cjs';
|
|
48
|
+
export { default as ProjectIcon } from './projectIcon.cjs';
|
|
49
|
+
export { default as RolesIcon } from './rolesIcon.cjs';
|
|
42
50
|
import 'react';
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -39,4 +39,12 @@ export { default as TrashIcon } from './trashIcon.js';
|
|
|
39
39
|
export { default as EditChatIcon } from './editChatIcon.js';
|
|
40
40
|
export { default as SidebarIcon } from './sidebarIcon.js';
|
|
41
41
|
export { default as NotificationIcon } from './notificationIcon.js';
|
|
42
|
+
export { default as RefreshIcon } from './refreshIcon.js';
|
|
43
|
+
export { default as DollarIcon } from './dollarIcon.js';
|
|
44
|
+
export { default as EngagementIcon } from './engagementIcon.js';
|
|
45
|
+
export { default as FunctionIcon } from './functionIcon.js';
|
|
46
|
+
export { default as IndustryIcon } from './industryIcon.js';
|
|
47
|
+
export { default as MinExperienceIcon } from './minExperienceIcon.js';
|
|
48
|
+
export { default as ProjectIcon } from './projectIcon.js';
|
|
49
|
+
export { default as RolesIcon } from './rolesIcon.js';
|
|
42
50
|
import 'react';
|