qlu-20-ui-library 1.10.6 → 1.10.9
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/build/index.css +1 -1
- package/dist/build/qlu-20-ui-library.cjs +83 -83
- package/dist/build/qlu-20-ui-library.js +10683 -10369
- package/dist/components/CreditBarChart/index.d.ts +5 -3
- package/dist/components/CreditUsageChart/index.d.ts +12 -4
- package/dist/components/CreditsSlider/CreditsSlider.d.ts +17 -0
- package/dist/components/Svg/CloudUpload.d.ts +7 -0
- package/dist/components/Svg/Database.d.ts +7 -0
- package/dist/components/Svg/Microphone.d.ts +7 -0
- package/dist/components/Svg/PauseIcon.d.ts +7 -0
- package/dist/components/Svg/PlayIcon.d.ts +7 -0
- package/dist/components/Svg/Retry.d.ts +7 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/types/components/CreditBarChart/index.d.ts +5 -3
- package/dist/types/components/CreditBarChart/index.js +62 -28
- package/dist/types/components/CreditUsageChart/index.d.ts +12 -4
- package/dist/types/components/CreditUsageChart/index.js +9 -8
- package/dist/types/components/CreditsSlider/CreditsSlider.d.ts +17 -0
- package/dist/types/components/CreditsSlider/CreditsSlider.js +76 -0
- package/dist/types/components/GetSvgIcon/index.js +7 -1
- package/dist/types/components/Svg/CloudUpload.d.ts +7 -0
- package/dist/types/components/Svg/CloudUpload.js +5 -0
- package/dist/types/components/Svg/Database.d.ts +7 -0
- package/dist/types/components/Svg/Database.js +5 -0
- package/dist/types/components/Svg/Microphone.d.ts +7 -0
- package/dist/types/components/Svg/Microphone.js +5 -0
- package/dist/types/components/Svg/PauseIcon.d.ts +7 -0
- package/dist/types/components/Svg/PauseIcon.js +5 -0
- package/dist/types/components/Svg/PlayIcon.d.ts +7 -0
- package/dist/types/components/Svg/PlayIcon.js +5 -0
- package/dist/types/components/Svg/Retry.d.ts +7 -0
- package/dist/types/components/Svg/Retry.js +5 -0
- package/dist/types/components/index.d.ts +1 -0
- package/dist/types/components/index.js +1 -0
- package/dist/types/stories/CreditUsageChart.stories.js +144 -24
- package/dist/types/types.d.ts +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export interface ICreditBarChart {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
label: string;
|
|
3
|
+
personalEmailCount?: number;
|
|
4
|
+
workEmailCount?: number;
|
|
5
|
+
personalPhoneCount?: number;
|
|
6
|
+
workPhoneCount?: number;
|
|
5
7
|
}
|
|
6
8
|
export interface CreditBarChartProps {
|
|
7
9
|
revenues: ICreditBarChart[];
|
|
@@ -20,13 +20,21 @@ type CreditUsageChartProps = {
|
|
|
20
20
|
title: string;
|
|
21
21
|
selectedTimeFrame: TimeFrame;
|
|
22
22
|
creditUsageData: {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
label: string;
|
|
24
|
+
personalEmailCount?: number;
|
|
25
|
+
personalPhoneCount?: number;
|
|
26
|
+
workEmailCount?: number;
|
|
27
|
+
workPhoneCount?: number;
|
|
26
28
|
}[];
|
|
29
|
+
lagendData?: {
|
|
30
|
+
personalEmail?: string;
|
|
31
|
+
personalPhone?: string;
|
|
32
|
+
workPhone?: string;
|
|
33
|
+
workEmail?: string;
|
|
34
|
+
};
|
|
27
35
|
isLoading: boolean;
|
|
28
36
|
isError: boolean;
|
|
29
37
|
setSelectedTimeFrame: (timeFrame: TimeFrame) => void;
|
|
30
38
|
};
|
|
31
|
-
declare const CreditUsageChart: ({ title, selectedTimeFrame, creditUsageData, isLoading, isError, setSelectedTimeFrame, }: CreditUsageChartProps) => import("react/jsx-runtime").JSX.Element;
|
|
39
|
+
declare const CreditUsageChart: ({ title, selectedTimeFrame, creditUsageData, isLoading, isError, lagendData, setSelectedTimeFrame, }: CreditUsageChartProps) => import("react/jsx-runtime").JSX.Element;
|
|
32
40
|
export default CreditUsageChart;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
type CreditsTick = {
|
|
3
|
+
label: string;
|
|
4
|
+
value: number;
|
|
5
|
+
};
|
|
6
|
+
export type CreditsSliderProps = {
|
|
7
|
+
label?: string;
|
|
8
|
+
value: number;
|
|
9
|
+
min?: number;
|
|
10
|
+
max?: number;
|
|
11
|
+
step?: number;
|
|
12
|
+
onChange: (next: number) => void;
|
|
13
|
+
disabled?: boolean;
|
|
14
|
+
ticks?: CreditsTick[];
|
|
15
|
+
};
|
|
16
|
+
declare const CreditsSlider: React.FC<CreditsSliderProps>;
|
|
17
|
+
export default CreditsSlider;
|
|
@@ -179,6 +179,7 @@ export { default as CreditManagementDropdownItem } from "./CreditsManagementDrop
|
|
|
179
179
|
export { default as CreditManagementDatePicker } from "./CreditsManagementDropdownButton/CreditsManagementDatePicker";
|
|
180
180
|
export { default as InputFieldForm } from "./InputFieldForm";
|
|
181
181
|
export { default as ToastWithButtonV2 } from "./ToastWithButtonV2";
|
|
182
|
+
export { default as CreditsSlider } from "./CreditsSlider/CreditsSlider";
|
|
182
183
|
export { default as MultiChart } from "./CompanyView/CompanyViewFinancialSummary/MultiChart/";
|
|
183
184
|
export { default as FileUpload } from "./FileUpload";
|
|
184
185
|
export { default as TopNavbar } from "./TopNavbar";
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export interface ICreditBarChart {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
label: string;
|
|
3
|
+
personalEmailCount?: number;
|
|
4
|
+
workEmailCount?: number;
|
|
5
|
+
personalPhoneCount?: number;
|
|
6
|
+
workPhoneCount?: number;
|
|
5
7
|
}
|
|
6
8
|
export interface CreditBarChartProps {
|
|
7
9
|
revenues: ICreditBarChart[];
|
|
@@ -69,45 +69,79 @@ const CreditBarChart = ({ revenues }) => {
|
|
|
69
69
|
};
|
|
70
70
|
};
|
|
71
71
|
const responsiveValues = calculateResponsiveValues();
|
|
72
|
-
const labels = revenues.map((data) => data.
|
|
73
|
-
const
|
|
74
|
-
const
|
|
75
|
-
const
|
|
72
|
+
const labels = revenues.map((data) => data.label);
|
|
73
|
+
const personalEmailValues = revenues.map((data) => data.personalEmailCount);
|
|
74
|
+
const workEmailValues = revenues.map((data) => data.workEmailCount);
|
|
75
|
+
const personalPhoneValues = revenues.map((data) => data.personalPhoneCount);
|
|
76
|
+
const workPhoneValues = revenues.map((data) => data.workPhoneCount);
|
|
77
|
+
const personalEmailData = personalEmailValues.filter((value) => value !== undefined);
|
|
78
|
+
const workEmailData = workEmailValues.filter((value) => value !== undefined);
|
|
79
|
+
const personalPhoneData = personalPhoneValues.filter((value) => value !== undefined);
|
|
80
|
+
const workPhoneData = workPhoneValues.filter((value) => value !== undefined);
|
|
81
|
+
const allDefinedValues = [
|
|
82
|
+
...personalEmailData,
|
|
83
|
+
...workEmailData,
|
|
84
|
+
...personalPhoneData,
|
|
85
|
+
...workPhoneData,
|
|
86
|
+
];
|
|
87
|
+
const maxValue = allDefinedValues.length > 0 ? Math.max(...allDefinedValues) : 0;
|
|
76
88
|
const fixedMax = maxValue + Math.max(maxValue * 0.1, 2);
|
|
77
89
|
const data = {
|
|
78
90
|
labels,
|
|
79
91
|
datasets: [
|
|
80
92
|
{
|
|
81
|
-
label: "Email",
|
|
82
|
-
data:
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
93
|
+
label: "Personal Email",
|
|
94
|
+
data: personalEmailValues,
|
|
95
|
+
backgroundColor: "#0794A2",
|
|
96
|
+
categoryPercentage: 0.6,
|
|
97
|
+
barPercentage: 0.7,
|
|
98
|
+
borderRadius: {
|
|
99
|
+
topLeft: 4,
|
|
100
|
+
topRight: 4,
|
|
101
|
+
bottomLeft: 4,
|
|
102
|
+
bottomRight: 4,
|
|
103
|
+
},
|
|
104
|
+
borderSkipped: false,
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
label: "Mobile Number",
|
|
108
|
+
data: personalPhoneValues,
|
|
109
|
+
backgroundColor: "#6456A9",
|
|
110
|
+
categoryPercentage: 0.6,
|
|
111
|
+
barPercentage: 0.7,
|
|
89
112
|
borderRadius: {
|
|
90
|
-
topLeft:
|
|
91
|
-
topRight:
|
|
92
|
-
bottomLeft:
|
|
93
|
-
bottomRight:
|
|
113
|
+
topLeft: 4,
|
|
114
|
+
topRight: 4,
|
|
115
|
+
bottomLeft: 4,
|
|
116
|
+
bottomRight: 4,
|
|
94
117
|
},
|
|
95
118
|
borderSkipped: false,
|
|
96
119
|
},
|
|
97
120
|
{
|
|
98
|
-
label: "Phone",
|
|
99
|
-
data:
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
121
|
+
label: "Work Phone",
|
|
122
|
+
data: workPhoneValues,
|
|
123
|
+
backgroundColor: "#99552F",
|
|
124
|
+
categoryPercentage: 0.6,
|
|
125
|
+
barPercentage: 0.7,
|
|
126
|
+
borderRadius: {
|
|
127
|
+
topLeft: 4,
|
|
128
|
+
topRight: 4,
|
|
129
|
+
bottomLeft: 4,
|
|
130
|
+
bottomRight: 4,
|
|
131
|
+
},
|
|
132
|
+
borderSkipped: false,
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
label: "Work Email",
|
|
136
|
+
data: workEmailValues,
|
|
137
|
+
backgroundColor: "#4B4B4B",
|
|
138
|
+
categoryPercentage: 0.6,
|
|
139
|
+
barPercentage: 0.7,
|
|
106
140
|
borderRadius: {
|
|
107
|
-
topLeft:
|
|
108
|
-
topRight:
|
|
109
|
-
bottomLeft:
|
|
110
|
-
bottomRight:
|
|
141
|
+
topLeft: 4,
|
|
142
|
+
topRight: 4,
|
|
143
|
+
bottomLeft: 4,
|
|
144
|
+
bottomRight: 4,
|
|
111
145
|
},
|
|
112
146
|
borderSkipped: false,
|
|
113
147
|
},
|
|
@@ -20,13 +20,21 @@ type CreditUsageChartProps = {
|
|
|
20
20
|
title: string;
|
|
21
21
|
selectedTimeFrame: TimeFrame;
|
|
22
22
|
creditUsageData: {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
label: string;
|
|
24
|
+
personalEmailCount?: number;
|
|
25
|
+
personalPhoneCount?: number;
|
|
26
|
+
workEmailCount?: number;
|
|
27
|
+
workPhoneCount?: number;
|
|
26
28
|
}[];
|
|
29
|
+
lagendData?: {
|
|
30
|
+
personalEmail?: string;
|
|
31
|
+
personalPhone?: string;
|
|
32
|
+
workPhone?: string;
|
|
33
|
+
workEmail?: string;
|
|
34
|
+
};
|
|
27
35
|
isLoading: boolean;
|
|
28
36
|
isError: boolean;
|
|
29
37
|
setSelectedTimeFrame: (timeFrame: TimeFrame) => void;
|
|
30
38
|
};
|
|
31
|
-
declare const CreditUsageChart: ({ title, selectedTimeFrame, creditUsageData, isLoading, isError, setSelectedTimeFrame, }: CreditUsageChartProps) => import("react/jsx-runtime").JSX.Element;
|
|
39
|
+
declare const CreditUsageChart: ({ title, selectedTimeFrame, creditUsageData, isLoading, isError, lagendData, setSelectedTimeFrame, }: CreditUsageChartProps) => import("react/jsx-runtime").JSX.Element;
|
|
32
40
|
export default CreditUsageChart;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
2
2
|
import Loader from "../Loader";
|
|
3
3
|
import DropDownButton from "../DropDownButton";
|
|
4
4
|
import DropdownChildButton from "../DropdownChildButton";
|
|
@@ -15,18 +15,19 @@ export var TimeFrame;
|
|
|
15
15
|
TimeFrame["Custom"] = "Custom";
|
|
16
16
|
})(TimeFrame || (TimeFrame = {}));
|
|
17
17
|
export const typeFrameText = {
|
|
18
|
-
[TimeFrame.Last7Days]: "
|
|
19
|
-
[TimeFrame.LastMonth]: "
|
|
20
|
-
[TimeFrame.Last3Months]: "
|
|
21
|
-
[TimeFrame.Last6Months]: "
|
|
22
|
-
[TimeFrame.LastYear]: "
|
|
18
|
+
[TimeFrame.Last7Days]: "Past 7 Days",
|
|
19
|
+
[TimeFrame.LastMonth]: "Past Month",
|
|
20
|
+
[TimeFrame.Last3Months]: "Past 3 Months",
|
|
21
|
+
[TimeFrame.Last6Months]: "Past 6 Months",
|
|
22
|
+
[TimeFrame.LastYear]: "Past Year",
|
|
23
23
|
[TimeFrame.Today]: "Today",
|
|
24
24
|
[TimeFrame.Custom]: "Custom",
|
|
25
25
|
};
|
|
26
|
-
const CreditUsageChart = ({ title, selectedTimeFrame, creditUsageData, isLoading, isError, setSelectedTimeFrame, }) => {
|
|
26
|
+
const CreditUsageChart = ({ title, selectedTimeFrame, creditUsageData, isLoading, isError, lagendData, setSelectedTimeFrame, }) => {
|
|
27
27
|
const renderLoader = () => (_jsx("div", { className: styles.creditUsageChartLoader, children: _jsx(Loader, { width: "24", height: "24" }) }));
|
|
28
28
|
const renderError = () => (_jsx("div", { className: styles.creditUsageChartError, children: _jsx("span", { className: styles.creditUsageChartDataNA, children: "No data to show yet" }) }));
|
|
29
|
-
|
|
29
|
+
const renderEmailOption = () => (_jsxs(_Fragment, { children: [lagendData?.personalEmail && (_jsxs("div", { className: styles.option, children: [_jsx("div", { className: styles.personalEmailColor }), _jsx("span", { children: lagendData.personalEmail })] })), lagendData?.personalPhone && (_jsxs("div", { className: styles.option, children: [_jsx("div", { className: styles.personalPhoneColor }), _jsx("span", { children: lagendData.personalPhone })] })), lagendData?.workPhone && (_jsxs("div", { className: styles.option, children: [_jsx("div", { className: styles.workPhoneColor }), _jsx("span", { children: lagendData.workPhone })] })), lagendData?.workEmail && (_jsxs("div", { className: styles.option, children: [_jsx("div", { className: styles.workEmailColor }), _jsx("span", { children: lagendData.workEmail })] }))] }));
|
|
30
|
+
return (_jsxs("div", { className: styles.creditUsageChartContainer, children: [_jsxs("div", { className: styles.creditUsageChartHeader, children: [_jsx("h3", { children: title }), _jsxs("div", { className: styles.options, children: [renderEmailOption(), _jsx("div", { className: styles.dropDownContainer, children: _jsx(DropDownButton, { dropDownText: typeFrameText[selectedTimeFrame], children: Object.values(TimeFrame)
|
|
30
31
|
.filter((type) => ![TimeFrame.Today, TimeFrame.Custom].includes(type))
|
|
31
32
|
.map((type, index) => (_jsx(DropdownChildButton, { onClick: () => setSelectedTimeFrame(type), text: typeFrameText[type], active: selectedTimeFrame === type }, index))) }) })] })] }), isLoading ? (renderLoader()) : isError ? (renderError()) : (_jsx("div", { className: styles.creditUsageChart, children: _jsx(CreditBarChart, { revenues: creditUsageData }) }))] }));
|
|
32
33
|
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
type CreditsTick = {
|
|
3
|
+
label: string;
|
|
4
|
+
value: number;
|
|
5
|
+
};
|
|
6
|
+
export type CreditsSliderProps = {
|
|
7
|
+
label?: string;
|
|
8
|
+
value: number;
|
|
9
|
+
min?: number;
|
|
10
|
+
max?: number;
|
|
11
|
+
step?: number;
|
|
12
|
+
onChange: (next: number) => void;
|
|
13
|
+
disabled?: boolean;
|
|
14
|
+
ticks?: CreditsTick[];
|
|
15
|
+
};
|
|
16
|
+
declare const CreditsSlider: React.FC<CreditsSliderProps>;
|
|
17
|
+
export default CreditsSlider;
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { useCallback, useEffect, useRef, useState } from "react";
|
|
3
|
+
import styles from "./CreditsSlider.module.scss";
|
|
4
|
+
import clsx from "clsx";
|
|
5
|
+
const DEFAULT_TICKS = [
|
|
6
|
+
{ label: "0", value: 0 },
|
|
7
|
+
{ label: "5k", value: 5000 },
|
|
8
|
+
{ label: "10k", value: 10000 },
|
|
9
|
+
{ label: "20k", value: 20000 },
|
|
10
|
+
{ label: "30k", value: 30000 },
|
|
11
|
+
{ label: "40k", value: 40000 },
|
|
12
|
+
{ label: "50k", value: 50000 },
|
|
13
|
+
{ label: "Custom", value: 60000 },
|
|
14
|
+
];
|
|
15
|
+
const clamp = (v, min, max) => Math.min(max, Math.max(min, v));
|
|
16
|
+
const formatCredits = (value) => {
|
|
17
|
+
if (value >= 1000) {
|
|
18
|
+
const rounded = Math.round(value / 100) / 10; // 12000 -> 12k
|
|
19
|
+
return `${rounded % 1 === 0 ? rounded.toFixed(0) : rounded}K`;
|
|
20
|
+
}
|
|
21
|
+
return value.toString();
|
|
22
|
+
};
|
|
23
|
+
const CreditsSlider = ({ label = "Credits", value, min = 0, max = 60000, step = 1000, onChange, disabled = false, ticks = DEFAULT_TICKS, }) => {
|
|
24
|
+
const safeMax = Math.max(min + step, max);
|
|
25
|
+
const clampedValue = clamp(value, min, safeMax);
|
|
26
|
+
const sliderRef = useRef(null);
|
|
27
|
+
const [isDragging, setIsDragging] = useState(false);
|
|
28
|
+
const updateFromClientX = useCallback((clientX) => {
|
|
29
|
+
if (!sliderRef.current || disabled)
|
|
30
|
+
return;
|
|
31
|
+
const rect = sliderRef.current.getBoundingClientRect();
|
|
32
|
+
const ratio = rect.width ? (clientX - rect.left) / rect.width : 0;
|
|
33
|
+
const boundedRatio = Math.min(1, Math.max(0, ratio));
|
|
34
|
+
const raw = min + boundedRatio * (safeMax - min);
|
|
35
|
+
const snapped = Math.round(raw / step) * step;
|
|
36
|
+
onChange(clamp(snapped, min, safeMax));
|
|
37
|
+
}, [disabled, min, safeMax, step, onChange]);
|
|
38
|
+
const handleChange = (event) => {
|
|
39
|
+
const raw = Number(event.target.value);
|
|
40
|
+
const snapped = Math.round(raw / step) * step;
|
|
41
|
+
onChange(clamp(snapped, min, safeMax));
|
|
42
|
+
};
|
|
43
|
+
const handleMouseDown = (event) => {
|
|
44
|
+
if (disabled)
|
|
45
|
+
return;
|
|
46
|
+
event.preventDefault();
|
|
47
|
+
setIsDragging(true);
|
|
48
|
+
updateFromClientX(event.clientX);
|
|
49
|
+
};
|
|
50
|
+
useEffect(() => {
|
|
51
|
+
if (!isDragging)
|
|
52
|
+
return;
|
|
53
|
+
const handleMouseMove = (event) => {
|
|
54
|
+
updateFromClientX(event.clientX);
|
|
55
|
+
};
|
|
56
|
+
const handleMouseUp = () => {
|
|
57
|
+
setIsDragging(false);
|
|
58
|
+
};
|
|
59
|
+
document.addEventListener("mousemove", handleMouseMove);
|
|
60
|
+
document.addEventListener("mouseup", handleMouseUp);
|
|
61
|
+
return () => {
|
|
62
|
+
document.removeEventListener("mousemove", handleMouseMove);
|
|
63
|
+
document.removeEventListener("mouseup", handleMouseUp);
|
|
64
|
+
};
|
|
65
|
+
}, [isDragging, updateFromClientX]);
|
|
66
|
+
const percentage = ((clampedValue - min) / (safeMax - min || 1)) * 100;
|
|
67
|
+
const compositeClassNames = clsx(styles["credits-slider"], {
|
|
68
|
+
[styles.disabled]: disabled,
|
|
69
|
+
});
|
|
70
|
+
return (_jsxs("div", { className: compositeClassNames, children: [_jsxs("div", { className: styles.header, children: [_jsx("span", { className: styles.label, children: label }), _jsx("span", { className: styles.value, children: formatCredits(clampedValue) })] }), _jsxs("div", { className: styles["track-wrapper"], ref: sliderRef, onMouseDown: handleMouseDown, children: [_jsx("div", { className: styles.track, children: _jsx("div", { className: styles["track-active"], style: { width: `${percentage}%` } }) }), _jsx("div", { className: styles.thumb, style: { left: `${percentage}%` } }), _jsx("input", { type: "range", min: min, max: safeMax, step: step, value: clampedValue, onChange: handleChange, disabled: disabled, className: styles["range-input"] })] }), _jsx("div", { className: styles.ticks, children: ticks.map((tick) => {
|
|
71
|
+
const tickPct = ((tick.value - min) / (safeMax - min || 1)) * 100;
|
|
72
|
+
const isCustom = tick.label.toLowerCase() === "custom" || tick.value > safeMax;
|
|
73
|
+
return (_jsx("div", { className: styles.tick, style: { left: `${tickPct}%` }, children: _jsx("div", { className: clsx(styles["tick-label"], isCustom && styles["tick-label--custom"]), children: tick.label }) }, `${tick.label}-${tick.value}`));
|
|
74
|
+
}) })] }));
|
|
75
|
+
};
|
|
76
|
+
export default CreditsSlider;
|
|
@@ -256,7 +256,13 @@ import GridView from "../Svg/GridView";
|
|
|
256
256
|
import CompanyPlaceholderAvatar from "../Svg/CompanyPlaceholderAvatar";
|
|
257
257
|
import ProfilePlaceholderAvatar from "../Svg/ProfilePlaceholderAvatar";
|
|
258
258
|
import VideoPlayIcon from "../Svg/VideoPlayIcon";
|
|
259
|
+
import CloudUpload from "../Svg/CloudUpload";
|
|
260
|
+
import Microphone from "../Svg/Microphone";
|
|
261
|
+
import PauseIcon from "../Svg/PauseIcon";
|
|
262
|
+
import PlayIcon from "../Svg/PlayIcon";
|
|
263
|
+
import Retry from "../Svg/Retry";
|
|
264
|
+
import Database from "../Svg/Database";
|
|
259
265
|
const GetSvgIcon = ({ iconType = "cross", iconSize = "24" }) => {
|
|
260
|
-
return iconType === "cross" ? (_jsx(Cross, { width: iconSize, height: iconSize })) : iconType === "plus" ? (_jsx(Plus, { width: iconSize, height: iconSize })) : iconType === "thumb" ? (_jsx(Thumb, { width: iconSize, height: iconSize })) : iconType === "clock" ? (_jsx(Clock, { width: iconSize, height: iconSize })) : iconType === "tick" ? (_jsx(Tick, { width: iconSize, height: iconSize })) : iconType === "linkedinLogo" ? (_jsx(LinkedinLogo, { width: iconSize, height: iconSize })) : iconType === "searchArrow" ? (_jsx(SearchArrow, { width: iconSize, height: iconSize })) : iconType === "excalamationCircle" ? (_jsx(ExclamationCircle, { width: iconSize, height: iconSize })) : iconType === "edit" ? (_jsx(Edit, { width: iconSize, height: iconSize })) : iconType === "delete" ? (_jsx(Delete, { width: iconSize, height: iconSize })) : iconType === "chatOneBallon" ? (_jsx(ChatOneballon, { width: iconSize, height: iconSize })) : iconType === "qluLogo" ? (_jsx(QluLogo, { width: iconSize, height: iconSize })) : iconType === "gear" ? (_jsx(Gear, { width: iconSize, height: iconSize })) : iconType === "home" ? (_jsx(Home, { width: iconSize, height: iconSize })) : iconType === "paperPlaneUpRight" ? (_jsx(PaperPlaneUpRight, { width: iconSize, height: iconSize })) : iconType === "search" ? (_jsx(Search, { width: iconSize, height: iconSize })) : iconType === "chat" ? (_jsx(Chat, { width: iconSize, height: iconSize })) : iconType === "briefcase" ? (_jsx(Briefcase, { width: iconSize, height: iconSize })) : iconType === "barGraph" ? (_jsx(BarGraph, { width: iconSize, height: iconSize })) : iconType === "book" ? (_jsx(Book, { width: iconSize, height: iconSize })) : iconType === "company" ? (_jsx(Company, { width: iconSize, height: iconSize })) : iconType === "dollarBriefcase" ? (_jsx(DollarBriefcase, { width: iconSize, height: iconSize })) : iconType === "industry" ? (_jsx(Industry, { width: iconSize, height: iconSize })) : iconType === "jobTitle" ? (_jsx(JobTitle, { width: iconSize, height: iconSize })) : iconType === "location" ? (_jsx(Location, { width: iconSize, height: iconSize })) : iconType === "strategyPath" ? (_jsx(StrategyPath, { width: iconSize, height: iconSize })) : iconType === "tools" ? (_jsx(Tools, { width: iconSize, height: iconSize })) : iconType === "management" ? (_jsx(Management, { width: iconSize, height: iconSize })) : iconType === "employees" ? (_jsx(Employees, { width: iconSize, height: iconSize })) : iconType === "cheveronDown" ? (_jsx(CheveronDown, { width: iconSize, height: iconSize })) : iconType === "cheveronUp" ? (_jsx(CheveronUp, { width: iconSize, height: iconSize })) : iconType === "arrowLeft" ? (_jsx(ArrowLeft, { width: iconSize, height: iconSize })) : iconType === "arrowRight" ? (_jsx(ArrowRight, { width: iconSize, height: iconSize })) : iconType === "passTick" ? (_jsx(PassTick, { width: iconSize, height: iconSize })) : iconType === "doNotInclude" ? (_jsx(DoNotInclude, { width: iconSize, height: iconSize })) : iconType === "tickCircle" ? (_jsx(TickCircle, { width: iconSize, height: iconSize })) : iconType === "phone" ? (_jsx(Phone, { width: iconSize, height: iconSize })) : iconType === "email" ? (_jsx(Email, { width: iconSize, height: iconSize })) : iconType === "eye" ? (_jsx(Eye, { width: iconSize, height: iconSize })) : iconType === "eyeOff" ? (_jsx(EyeOff, { width: iconSize, height: iconSize })) : iconType === "congratulations" ? (_jsx(Congratulations, {})) : iconType === "heart" ? (_jsx(Heart, { width: iconSize, height: iconSize })) : iconType === "questionMark" ? (_jsx(QuestionMark, { width: iconSize, height: iconSize })) : iconType === "kebab" ? (_jsx(Kebab, { width: iconSize, height: iconSize })) : iconType === "calendar" ? (_jsx(Calendar, { width: iconSize, height: iconSize })) : iconType === "officeBuilding" ? (_jsx(OfficeBuilding, { width: iconSize, height: iconSize })) : iconType === "notes" ? (_jsx(Notes, { width: iconSize, height: iconSize })) : iconType === "star" ? (_jsx(Star, { width: iconSize, height: iconSize })) : iconType === "starBorder" ? (_jsx(StarBorder, { width: iconSize, height: iconSize })) : iconType === "flag" ? (_jsx(Flag, { width: iconSize, height: iconSize })) : iconType === "filterFunel" ? (_jsx(FilterFunel, { width: iconSize, height: iconSize })) : iconType === "sortUpDownArrows" ? (_jsx(SortUpDownArrows, { width: iconSize, height: iconSize })) : iconType === "download" ? (_jsx(Download, { width: iconSize, height: iconSize })) : iconType === "sparkles" ? (_jsx(Sparkles, { width: iconSize, height: iconSize })) : iconType === "writeNotes" ? (_jsx(WriteNotes, { width: iconSize, height: iconSize })) : iconType === "undo" ? (_jsx(Undo, { width: iconSize, height: iconSize })) : iconType === "emailSend" ? (_jsx(EmailSend, { width: iconSize, height: iconSize })) : iconType === "copy" ? (_jsx(Copy, { width: iconSize, height: iconSize })) : iconType === "openLink" ? (_jsx(OpenLink, { width: iconSize, height: iconSize })) : iconType === "internalUser" ? (_jsx(InternalUser, { width: iconSize, height: iconSize })) : iconType === "link" ? (_jsx(Link, { width: iconSize, height: iconSize })) : iconType === "bell" ? (_jsx(Bell, { width: iconSize, height: iconSize })) : iconType === "graduationHat" ? (_jsx(GraduationHat, { width: iconSize, height: iconSize })) : iconType === "user" ? (_jsx(User, { width: iconSize, height: iconSize })) : iconType === "password" ? (_jsx(Password, { width: iconSize, height: iconSize })) : iconType === "emailDisconnected" ? (_jsx(EmailDisconnected, { width: iconSize, height: iconSize })) : iconType === "bolt" ? (_jsx(Bolt, { width: iconSize, height: iconSize })) : iconType === "images" ? (_jsx(Images, { width: iconSize, height: iconSize })) : iconType === "information" ? (_jsx(Information, { width: iconSize, height: iconSize })) : iconType === "inviteUser" ? (_jsx(InviteUser, { width: iconSize, height: iconSize })) : iconType === "list" ? (_jsx(List, { width: iconSize, height: iconSize })) : iconType === "table" ? (_jsx(Table, { width: iconSize, height: iconSize })) : iconType === "arrowDown" ? (_jsx(ArrowDown, { width: iconSize, height: iconSize })) : iconType === "arrowUp" ? (_jsx(ArrowUp, { width: iconSize, height: iconSize })) : iconType === "chevronLeft" ? (_jsx(ChevronLeft, { width: iconSize, height: iconSize })) : iconType === "chevronRight" ? (_jsx(ChevronRight, { width: iconSize, height: iconSize })) : iconType === "radio" ? (_jsx(Radio, { width: iconSize, height: iconSize })) : iconType === "like" ? (_jsx(Like, { width: iconSize, height: iconSize })) : iconType === "unlike" ? (_jsx(Unlike, { width: iconSize, height: iconSize })) : iconType === "refresh" ? (_jsx(Refresh, { width: iconSize, height: iconSize })) : iconType === "emailRound" ? (_jsx(EmailRound, { width: iconSize, height: iconSize })) : iconType === "abstractGeometric" ? (_jsx(AbstractGeometric, { width: iconSize, height: iconSize })) : iconType === "seo" ? (_jsx(Seo, { width: iconSize, height: iconSize })) : iconType === "abstractCircle" ? (_jsx(AbstractCircle, { width: iconSize, height: iconSize })) : iconType === "checkList" ? (_jsx(CheckList, { width: iconSize, height: iconSize })) : iconType === "penEdit" ? (_jsx(PenEdit, { width: iconSize, height: iconSize })) : iconType === "globeSearch" ? (_jsx(GlobeSearch, { width: iconSize, height: iconSize })) : iconType === "groupIcon" ? (_jsx(GroupIcon, { width: iconSize, height: iconSize })) : iconType === "jD" ? (_jsx(JD, {})) : iconType === "expand" ? (_jsx(Expand, { width: iconSize, height: iconSize })) : iconType === "hiringCompany" ? (_jsx(HiringCompany, {})) : iconType === "sampleProfiles" ? (_jsx(SampleProfiles, {})) : iconType === "addToCollection" ? (_jsx(AddToCollection, { width: iconSize, height: iconSize })) : iconType === "pointingDown" ? (_jsx(PointingDown, { width: iconSize, height: iconSize })) : iconType === "pencilEdit" ? (_jsx(PencilEdit, { width: iconSize, height: iconSize })) : iconType === "matchingProfile" ? (_jsx(MatchingProfile, {})) : iconType === "stop" ? (_jsx(Stop, { width: iconSize, height: iconSize })) : iconType === "clipBoard" ? (_jsx(ClipBoard, { width: iconSize, height: iconSize })) : iconType === "sortascending" ? (_jsx(SortAscending, { width: iconSize, height: iconSize })) : iconType === "sortdescending" ? (_jsx(SortDescending, { width: iconSize, height: iconSize })) : iconType === "hourglass" ? (_jsx(HourGlass, { width: iconSize, height: iconSize })) : iconType === "exclamation" ? (_jsx(Exclamation, { width: iconSize, height: iconSize })) : iconType === "refresh-ccw" ? (_jsx(RefreshCounterClockWise, { width: iconSize, height: iconSize })) : iconType === "adjustment" ? (_jsx(Adjustment, { width: iconSize, height: iconSize })) : iconType === "outlook" ? (_jsx(Outlook, { width: iconSize, height: iconSize })) : iconType === "menu-alt" ? (_jsx(MenuAlt, { width: iconSize, height: iconSize })) : iconType === "simpler-tick" ? (_jsx(SimplerTick, { width: iconSize, height: iconSize })) : iconType === "menu-extended" ? (_jsx(MenuExtended, { width: iconSize, height: iconSize })) : iconType === "umberalla" ? (_jsx(Umberalla, { width: iconSize, height: iconSize })) : iconType === "sidebar" ? (_jsx(Sidebar, { width: iconSize, height: iconSize })) : iconType === "paperClip" ? (_jsx(PaperClip, { width: iconSize, height: iconSize })) : iconType === "document" ? (_jsx(Document, { width: iconSize, height: iconSize })) : iconType === "file" ? (_jsx(File, { width: iconSize, height: iconSize })) : iconType === "google" ? (_jsx(Google, { width: iconSize, height: iconSize })) : iconType === "pdf" ? (_jsx(PDF, { width: iconSize, height: iconSize })) : iconType === "enter" ? (_jsx(Enter, { width: iconSize, height: iconSize })) : iconType === "key" ? (_jsx(Key, { width: iconSize, height: iconSize })) : iconType === "cornerDown" ? (_jsx(CornerDown, { width: iconSize, height: iconSize })) : iconType === "notAllowed" ? (_jsx(NotAllowed, { width: iconSize, height: iconSize })) : iconType === "university" ? (_jsx(University, { width: iconSize, height: iconSize })) : iconType === "pause" ? (_jsx(Pause, { width: iconSize, height: iconSize })) : iconType === "resume" ? (_jsx(Resume, { width: iconSize, height: iconSize })) : iconType === "ascendingOrder" ? (_jsx(AscendingOrder, { width: iconSize, height: iconSize })) : iconType === "descendingOrder" ? (_jsx(DescendingOrder, { width: iconSize, height: iconSize })) : iconType === "userClock" ? (_jsx(UserClock, { width: iconSize, height: iconSize })) : iconType === "tickVerification" ? (_jsx(TickVerification, { width: iconSize, height: iconSize })) : iconType === "copied" ? (_jsx(Copied, { width: iconSize, height: iconSize })) : iconType === "archive" ? (_jsx(Archive, { width: iconSize, height: iconSize })) : iconType === "additionalInformation" ? (_jsx(AdditionalInformation, { width: iconSize, height: iconSize })) : iconType === "checkCircle" ? (_jsx(CheckCircle, { width: iconSize, height: iconSize })) : iconType === "companyClock" ? (_jsx(CompanyClock, { width: iconSize, height: iconSize })) : iconType === "boldPlus" ? (_jsx(BoldPlus, { width: iconSize, height: iconSize })) : iconType === "square" ? (_jsx(Square, { width: iconSize, height: iconSize })) : iconType === "boxPencil" ? (_jsx(BoxPencil, { width: iconSize, height: iconSize })) : iconType === "companyOwnership" ? (_jsx(CompanyOwnership, { width: iconSize, height: iconSize })) : iconType === "cutBriefcase" ? (_jsx(CutBriefcase, { width: iconSize, height: iconSize })) : iconType === "box" ? (_jsx(Box, { width: iconSize, height: iconSize })) : iconType === "googleLogo" ? (_jsx(GoogleLogo, { width: iconSize, height: iconSize })) : iconType === "microsoftLogo" ? (_jsx(MicrosoftLogo, { width: iconSize, height: iconSize })) : iconType === "people" ? (_jsx(People, { width: iconSize, height: iconSize })) : iconType === "crunchBaseLogo" ? (_jsx(CrunchBaseLogo, { width: iconSize, height: iconSize })) : iconType === "linkedinColoredLogo" ? (_jsx(LinkedinColoredLogo, { width: iconSize, height: iconSize })) : iconType === "googleColoredLogo" ? (_jsx(GoogleColoredLogo, { width: iconSize, height: iconSize })) : iconType === "websiteBadge" ? (_jsx(WebsiteBadge, { width: iconSize, height: iconSize })) : iconType === "arrowLeftShort" ? (_jsx(ArrowLeftShort, { width: iconSize, height: iconSize })) : iconType === "notDownloaded" ? (_jsx(NotDownloaded, { width: iconSize, height: iconSize })) : iconType === "lock" ? (_jsx(Lock, { width: iconSize, height: iconSize })) : iconType === "companyStrategy" ? (_jsx(CompanyStrategy, { width: iconSize, height: iconSize })) : iconType === "industryStrategy" ? (_jsx(IndustryStrategy, { width: iconSize, height: iconSize })) : iconType === "strategyUpdate" ? (_jsx(UpdateStrategy, { width: iconSize, height: iconSize })) : iconType === "unarchive" ? (_jsx(Unarchive, { width: iconSize, height: iconSize })) : iconType === "roundedDocument" ? (_jsx(RoundedDocument, { width: iconSize, height: iconSize })) : iconType === "marketMap" ? (_jsx(MarketMap, { width: iconSize, height: iconSize })) : iconType === "leadership" ? (_jsx(Leadership, { width: iconSize, height: iconSize })) : iconType === "fullScreen" ? (_jsx(FullScreen, { width: iconSize, height: iconSize })) : iconType === "exitFullScreen" ? (_jsx(ExitFullScreen, { width: iconSize, height: iconSize })) : iconType === "plannerTable" ? (_jsx(PlannerTable, { width: iconSize, height: iconSize })) : iconType === "upload" ? (_jsx(Upload, { width: iconSize, height: iconSize })) : iconType === "agent" ? (_jsx(Agent, { width: iconSize, height: iconSize })) : iconType === "doubleTick" ? (_jsx(DoubleTick, { width: iconSize, height: iconSize })) : iconType === "reply" ? (_jsx(Reply, { width: iconSize, height: iconSize })) : iconType === "lowCreditWarning" ? (_jsx(LowCreditWarning, { width: iconSize, height: iconSize })) : iconType === "threeDots" ? (_jsx(ThreeDots, { width: iconSize, height: iconSize })) : iconType === "creditAdmin" ? (_jsx(CreditAdmin, { width: iconSize, height: iconSize })) : iconType === "collection" ? (_jsx(Collection, { width: iconSize, height: iconSize })) : iconType === "save" ? (_jsx(Save, { width: iconSize, height: iconSize })) : iconType === "sidebarArrow" ? (_jsx(SidebarArrow, { width: iconSize, height: iconSize })) : iconType === "gradientSparkles" ? (_jsx(AiGradientSparkles, { width: iconSize, height: iconSize })) : iconType === "plusCircle" ? (_jsx(PlusCircle, { width: iconSize, height: iconSize })) : iconType === "incomingCall" ? (_jsx(IncomingCall, { width: iconSize, height: iconSize })) : iconType === "outgoingCall" ? (_jsx(OutGoingCall, { width: iconSize, height: iconSize })) : iconType === "message" ? (_jsx(Message, { width: iconSize, height: iconSize })) : iconType === "missedCall" ? (_jsx(MissedCall, { width: iconSize, height: iconSize })) : iconType === "filter" ? (_jsx(Filter, { width: iconSize, height: iconSize })) : iconType === "call" ? (_jsx(Call, { width: iconSize, height: iconSize })) : iconType === "voiceCall" ? (_jsx(VoiceCall, { width: iconSize, height: iconSize })) : iconType === "messageLogo" ? (_jsx(MessageLogo, { width: iconSize, height: iconSize })) : iconType === "requisitionLogo" ? (_jsx(RequisitionLogo, { width: iconSize, height: iconSize })) : iconType === "actionLogo" ? (_jsx(ActionLogo, { width: iconSize, height: iconSize })) : iconType === "organizationPlaceholder" ? (_jsx(OrganizationPlaceholder, { width: iconSize, height: iconSize })) : iconType === "approved" ? (_jsx(Approved, { width: iconSize, height: iconSize })) : iconType === "rejected" ? (_jsx(Reject, { width: iconSize, height: iconSize })) : iconType === "pending" ? (_jsx(Pending, { width: iconSize, height: iconSize })) : iconType === "default" ? (_jsx(Default, { width: iconSize, height: iconSize })) : iconType === "creditSystemUser" ? (_jsx(CreditSystemUser, { width: iconSize, height: iconSize })) : iconType === "usFlag" ? (_jsx(USFlag, { width: iconSize, height: iconSize })) : iconType === "canadaFlag" ? (_jsx(CanadaFlag, { width: iconSize, height: iconSize })) : iconType === "australiaFlag" ? (_jsx(AustraliaFlag, { width: iconSize, height: iconSize })) : iconType === "mexicoFlag" ? (_jsx(MexicoFlag, { width: iconSize, height: iconSize })) : iconType === "newZealandFlag" ? (_jsx(NewZealandFlag, { width: iconSize, height: iconSize })) : iconType === "inbox" ? (_jsx(Inbox, { width: iconSize, height: iconSize })) : iconType === "ukFlag" ? (_jsx(UkFlag, { width: iconSize, height: iconSize })) : iconType === "lightBulb" ? (_jsx(LightBulb, { width: iconSize, height: iconSize })) : iconType === "linkedin" ? (_jsx(LinkedinIcon, { width: iconSize, height: iconSize })) : iconType === "outlookColored" ? (_jsx(OutlookColored, { width: iconSize, height: iconSize })) : iconType === "googleColored" ? (_jsx(GoogleIcon, { width: iconSize, height: iconSize })) : iconType === "linkedinPremium" ? (_jsx(InmailIcon, { width: iconSize, height: iconSize })) : iconType === "text" ? (_jsx(TextIcon, { width: iconSize, height: iconSize })) : iconType === "telephone" ? (_jsx(PhoneIcon, { width: iconSize, height: iconSize })) : iconType === "welcomeAboard" ? (_jsx(WelcomeAboard, { width: iconSize, height: iconSize })) : iconType === "googleDriveLogo" ? (_jsx(GoogleDriveLogo, { width: iconSize, height: iconSize })) : iconType === "spreadsheet" ? (_jsx(Spreadsheet, { width: iconSize, height: iconSize })) : iconType === "sparklingStars" ? (_jsx(SparklingStars, { width: iconSize, height: iconSize })) : iconType === "syncLoader" ? (_jsx(SyncLoader, { width: iconSize, height: iconSize })) : iconType === "accessRevoke" ? (_jsx(AccessRevoke, { width: iconSize, height: iconSize })) : iconType === "pipeline" ? (_jsx(Pipeline, { width: iconSize, height: iconSize })) : iconType === "chatSend" ? (_jsx(ChatSend, { width: iconSize, height: iconSize })) : iconType === "stopwatch" ? (_jsx(Stopwatch, { width: iconSize, height: iconSize })) : iconType === "companySourcePlaceholder" ? (_jsx(CompanySourcePlaceholder, { width: iconSize, height: iconSize })) : iconType === "tickCircleFilled" ? (_jsx(TickCircleFilled, { width: iconSize, height: iconSize })) : iconType === "exclamationCircleFilled" ? (_jsx(ExclamationCircleFilled, { width: iconSize, height: iconSize })) : iconType === "basicPlan" ? (_jsx(BasicPlan, { width: iconSize, height: iconSize })) : iconType === "growthPlan" ? (_jsx(GrowthPlan, { width: iconSize, height: iconSize })) : iconType === "enterprisePlan" ? (_jsx(EnterprisePlan, { width: iconSize, height: iconSize })) : iconType === "customPlan" ? (_jsx(CustomPlan, { width: iconSize, height: iconSize })) : iconType === "loader" ? (_jsx(Loader, { width: iconSize, height: iconSize })) : iconType === "dollarCircle" ? (_jsx(DollarCircle, { width: iconSize, height: iconSize })) : iconType === "arrowRightCircle" ? (_jsx(ArrowRightCircle, { width: iconSize, height: iconSize })) : iconType === "kanban" ? (_jsx(Kanban, { width: iconSize, height: iconSize })) : iconType === "linkedinProfile" ? (_jsx(LinkedinProfile, { width: iconSize, height: iconSize })) : iconType === "linkedinConnection" ? (_jsx(LinkedinConnection, { width: iconSize, height: iconSize })) : iconType === "successFull" ? (_jsx(SuccessFull, { width: iconSize, height: iconSize })) : iconType === "searchAi" ? (_jsx(SearchAi, { width: iconSize, height: iconSize })) : iconType === "greenDot" ? (_jsx(GreenDot, { width: iconSize, height: iconSize })) : iconType === "starIcon" ? (_jsx(StarIcon, { width: iconSize, height: iconSize })) : iconType === "thunder" ? (_jsx(Thunder, { width: iconSize, height: iconSize })) : iconType === "logout" ? (_jsx(Logout, { width: iconSize, height: iconSize })) : iconType === "billingAndPricing" ? (_jsx(BillingAndPricing, { width: iconSize, height: iconSize })) : iconType === "creditSystem" ? (_jsx(CreditSystem, { width: iconSize, height: iconSize })) : iconType === "changePassword" ? (_jsx(ChangePassword, { width: iconSize, height: iconSize })) : iconType === "settings" ? (_jsx(Settings, { width: iconSize, height: iconSize })) : iconType === "googleCalenderIcon" ? (_jsx(GoogleCalendarLogo, { width: iconSize, height: iconSize })) : iconType === "employeeCard" ? (_jsx(EmployeeCard, { width: iconSize, height: iconSize })) : iconType === "dash" ? (_jsx(Dash, { width: iconSize, height: iconSize })) : iconType === "dotsMenu" ? (_jsx(DotsMenu, { width: iconSize, height: iconSize })) : iconType === "crossCircle" ? (_jsx(CrossCircle, { width: iconSize, height: iconSize })) : iconType === "smileyFace" ? (_jsx(SmileyFace, { width: iconSize, height: iconSize })) : iconType === "bookOpen" ? (_jsx(BookOpen, { width: iconSize, height: iconSize })) : iconType === "collapse" ? (_jsx(Collapse, { width: iconSize, height: iconSize })) : iconType === "circleInformation" ? (_jsx(CircleInformation, { width: iconSize, height: iconSize })) : iconType === "arrowThroughDoor" ? (_jsx(ArrowThroughDoor, { width: iconSize, height: iconSize })) : iconType === "contactInterested" ? (_jsx(ContactInterested, { width: iconSize, height: iconSize })) : iconType === "contactNotInterested" ? (_jsx(ContactNotInterested, { width: iconSize, height: iconSize })) : iconType === "userAdd" ? (_jsx(UserAdd, { width: iconSize, height: iconSize })) : iconType === "userRemove" ? (_jsx(UserRemove, { width: iconSize, height: iconSize })) : iconType === "microsoftColoredLogo" ? (_jsx(MicrosoftColoredLogo, { width: iconSize, height: iconSize })) : iconType === "contactBook" ? (_jsx(ContactBook, { width: iconSize, height: iconSize })) : iconType === "massUpdate" ? (_jsx(MassUpdate, { width: iconSize, height: iconSize })) : iconType === "internetSearch" ? (_jsx(InternetSearch, { width: iconSize, height: iconSize })) : iconType === "newsFeed" ? (_jsx(NewsFeed, { width: iconSize, height: iconSize })) : iconType === "paragraph" ? (_jsx(Paragraph, { width: iconSize, height: iconSize })) : iconType === "gridView" ? (_jsx(GridView, { width: iconSize, height: iconSize })) : iconType === "searchThin" ? (_jsx(SearchThin, { width: iconSize, height: iconSize })) : iconType === "companyPlaceholderAvatar" ? (_jsx(CompanyPlaceholderAvatar, { width: iconSize, height: iconSize })) : iconType === "profilePlaceholderAvatar" ? (_jsx(ProfilePlaceholderAvatar, { width: iconSize, height: iconSize })) : iconType === "videoPlayIcon" ? (_jsx(VideoPlayIcon, { width: iconSize, height: iconSize })) : iconType === "trendingUp" ? (_jsx(TrendingUp, { width: iconSize, height: iconSize })) : null;
|
|
266
|
+
return iconType === "cross" ? (_jsx(Cross, { width: iconSize, height: iconSize })) : iconType === "plus" ? (_jsx(Plus, { width: iconSize, height: iconSize })) : iconType === "thumb" ? (_jsx(Thumb, { width: iconSize, height: iconSize })) : iconType === "clock" ? (_jsx(Clock, { width: iconSize, height: iconSize })) : iconType === "tick" ? (_jsx(Tick, { width: iconSize, height: iconSize })) : iconType === "linkedinLogo" ? (_jsx(LinkedinLogo, { width: iconSize, height: iconSize })) : iconType === "searchArrow" ? (_jsx(SearchArrow, { width: iconSize, height: iconSize })) : iconType === "excalamationCircle" ? (_jsx(ExclamationCircle, { width: iconSize, height: iconSize })) : iconType === "edit" ? (_jsx(Edit, { width: iconSize, height: iconSize })) : iconType === "delete" ? (_jsx(Delete, { width: iconSize, height: iconSize })) : iconType === "chatOneBallon" ? (_jsx(ChatOneballon, { width: iconSize, height: iconSize })) : iconType === "qluLogo" ? (_jsx(QluLogo, { width: iconSize, height: iconSize })) : iconType === "gear" ? (_jsx(Gear, { width: iconSize, height: iconSize })) : iconType === "home" ? (_jsx(Home, { width: iconSize, height: iconSize })) : iconType === "paperPlaneUpRight" ? (_jsx(PaperPlaneUpRight, { width: iconSize, height: iconSize })) : iconType === "search" ? (_jsx(Search, { width: iconSize, height: iconSize })) : iconType === "chat" ? (_jsx(Chat, { width: iconSize, height: iconSize })) : iconType === "briefcase" ? (_jsx(Briefcase, { width: iconSize, height: iconSize })) : iconType === "barGraph" ? (_jsx(BarGraph, { width: iconSize, height: iconSize })) : iconType === "book" ? (_jsx(Book, { width: iconSize, height: iconSize })) : iconType === "company" ? (_jsx(Company, { width: iconSize, height: iconSize })) : iconType === "dollarBriefcase" ? (_jsx(DollarBriefcase, { width: iconSize, height: iconSize })) : iconType === "industry" ? (_jsx(Industry, { width: iconSize, height: iconSize })) : iconType === "jobTitle" ? (_jsx(JobTitle, { width: iconSize, height: iconSize })) : iconType === "location" ? (_jsx(Location, { width: iconSize, height: iconSize })) : iconType === "strategyPath" ? (_jsx(StrategyPath, { width: iconSize, height: iconSize })) : iconType === "tools" ? (_jsx(Tools, { width: iconSize, height: iconSize })) : iconType === "management" ? (_jsx(Management, { width: iconSize, height: iconSize })) : iconType === "employees" ? (_jsx(Employees, { width: iconSize, height: iconSize })) : iconType === "cheveronDown" ? (_jsx(CheveronDown, { width: iconSize, height: iconSize })) : iconType === "cheveronUp" ? (_jsx(CheveronUp, { width: iconSize, height: iconSize })) : iconType === "arrowLeft" ? (_jsx(ArrowLeft, { width: iconSize, height: iconSize })) : iconType === "arrowRight" ? (_jsx(ArrowRight, { width: iconSize, height: iconSize })) : iconType === "passTick" ? (_jsx(PassTick, { width: iconSize, height: iconSize })) : iconType === "doNotInclude" ? (_jsx(DoNotInclude, { width: iconSize, height: iconSize })) : iconType === "tickCircle" ? (_jsx(TickCircle, { width: iconSize, height: iconSize })) : iconType === "phone" ? (_jsx(Phone, { width: iconSize, height: iconSize })) : iconType === "email" ? (_jsx(Email, { width: iconSize, height: iconSize })) : iconType === "eye" ? (_jsx(Eye, { width: iconSize, height: iconSize })) : iconType === "eyeOff" ? (_jsx(EyeOff, { width: iconSize, height: iconSize })) : iconType === "congratulations" ? (_jsx(Congratulations, {})) : iconType === "heart" ? (_jsx(Heart, { width: iconSize, height: iconSize })) : iconType === "questionMark" ? (_jsx(QuestionMark, { width: iconSize, height: iconSize })) : iconType === "kebab" ? (_jsx(Kebab, { width: iconSize, height: iconSize })) : iconType === "calendar" ? (_jsx(Calendar, { width: iconSize, height: iconSize })) : iconType === "officeBuilding" ? (_jsx(OfficeBuilding, { width: iconSize, height: iconSize })) : iconType === "notes" ? (_jsx(Notes, { width: iconSize, height: iconSize })) : iconType === "star" ? (_jsx(Star, { width: iconSize, height: iconSize })) : iconType === "starBorder" ? (_jsx(StarBorder, { width: iconSize, height: iconSize })) : iconType === "flag" ? (_jsx(Flag, { width: iconSize, height: iconSize })) : iconType === "filterFunel" ? (_jsx(FilterFunel, { width: iconSize, height: iconSize })) : iconType === "sortUpDownArrows" ? (_jsx(SortUpDownArrows, { width: iconSize, height: iconSize })) : iconType === "download" ? (_jsx(Download, { width: iconSize, height: iconSize })) : iconType === "sparkles" ? (_jsx(Sparkles, { width: iconSize, height: iconSize })) : iconType === "writeNotes" ? (_jsx(WriteNotes, { width: iconSize, height: iconSize })) : iconType === "undo" ? (_jsx(Undo, { width: iconSize, height: iconSize })) : iconType === "emailSend" ? (_jsx(EmailSend, { width: iconSize, height: iconSize })) : iconType === "copy" ? (_jsx(Copy, { width: iconSize, height: iconSize })) : iconType === "openLink" ? (_jsx(OpenLink, { width: iconSize, height: iconSize })) : iconType === "internalUser" ? (_jsx(InternalUser, { width: iconSize, height: iconSize })) : iconType === "link" ? (_jsx(Link, { width: iconSize, height: iconSize })) : iconType === "bell" ? (_jsx(Bell, { width: iconSize, height: iconSize })) : iconType === "graduationHat" ? (_jsx(GraduationHat, { width: iconSize, height: iconSize })) : iconType === "user" ? (_jsx(User, { width: iconSize, height: iconSize })) : iconType === "password" ? (_jsx(Password, { width: iconSize, height: iconSize })) : iconType === "emailDisconnected" ? (_jsx(EmailDisconnected, { width: iconSize, height: iconSize })) : iconType === "bolt" ? (_jsx(Bolt, { width: iconSize, height: iconSize })) : iconType === "images" ? (_jsx(Images, { width: iconSize, height: iconSize })) : iconType === "information" ? (_jsx(Information, { width: iconSize, height: iconSize })) : iconType === "inviteUser" ? (_jsx(InviteUser, { width: iconSize, height: iconSize })) : iconType === "list" ? (_jsx(List, { width: iconSize, height: iconSize })) : iconType === "table" ? (_jsx(Table, { width: iconSize, height: iconSize })) : iconType === "arrowDown" ? (_jsx(ArrowDown, { width: iconSize, height: iconSize })) : iconType === "arrowUp" ? (_jsx(ArrowUp, { width: iconSize, height: iconSize })) : iconType === "chevronLeft" ? (_jsx(ChevronLeft, { width: iconSize, height: iconSize })) : iconType === "chevronRight" ? (_jsx(ChevronRight, { width: iconSize, height: iconSize })) : iconType === "radio" ? (_jsx(Radio, { width: iconSize, height: iconSize })) : iconType === "like" ? (_jsx(Like, { width: iconSize, height: iconSize })) : iconType === "unlike" ? (_jsx(Unlike, { width: iconSize, height: iconSize })) : iconType === "refresh" ? (_jsx(Refresh, { width: iconSize, height: iconSize })) : iconType === "emailRound" ? (_jsx(EmailRound, { width: iconSize, height: iconSize })) : iconType === "abstractGeometric" ? (_jsx(AbstractGeometric, { width: iconSize, height: iconSize })) : iconType === "seo" ? (_jsx(Seo, { width: iconSize, height: iconSize })) : iconType === "abstractCircle" ? (_jsx(AbstractCircle, { width: iconSize, height: iconSize })) : iconType === "checkList" ? (_jsx(CheckList, { width: iconSize, height: iconSize })) : iconType === "penEdit" ? (_jsx(PenEdit, { width: iconSize, height: iconSize })) : iconType === "globeSearch" ? (_jsx(GlobeSearch, { width: iconSize, height: iconSize })) : iconType === "groupIcon" ? (_jsx(GroupIcon, { width: iconSize, height: iconSize })) : iconType === "jD" ? (_jsx(JD, {})) : iconType === "expand" ? (_jsx(Expand, { width: iconSize, height: iconSize })) : iconType === "hiringCompany" ? (_jsx(HiringCompany, {})) : iconType === "sampleProfiles" ? (_jsx(SampleProfiles, {})) : iconType === "addToCollection" ? (_jsx(AddToCollection, { width: iconSize, height: iconSize })) : iconType === "pointingDown" ? (_jsx(PointingDown, { width: iconSize, height: iconSize })) : iconType === "pencilEdit" ? (_jsx(PencilEdit, { width: iconSize, height: iconSize })) : iconType === "matchingProfile" ? (_jsx(MatchingProfile, {})) : iconType === "stop" ? (_jsx(Stop, { width: iconSize, height: iconSize })) : iconType === "clipBoard" ? (_jsx(ClipBoard, { width: iconSize, height: iconSize })) : iconType === "sortascending" ? (_jsx(SortAscending, { width: iconSize, height: iconSize })) : iconType === "sortdescending" ? (_jsx(SortDescending, { width: iconSize, height: iconSize })) : iconType === "hourglass" ? (_jsx(HourGlass, { width: iconSize, height: iconSize })) : iconType === "exclamation" ? (_jsx(Exclamation, { width: iconSize, height: iconSize })) : iconType === "refresh-ccw" ? (_jsx(RefreshCounterClockWise, { width: iconSize, height: iconSize })) : iconType === "adjustment" ? (_jsx(Adjustment, { width: iconSize, height: iconSize })) : iconType === "outlook" ? (_jsx(Outlook, { width: iconSize, height: iconSize })) : iconType === "menu-alt" ? (_jsx(MenuAlt, { width: iconSize, height: iconSize })) : iconType === "simpler-tick" ? (_jsx(SimplerTick, { width: iconSize, height: iconSize })) : iconType === "menu-extended" ? (_jsx(MenuExtended, { width: iconSize, height: iconSize })) : iconType === "umberalla" ? (_jsx(Umberalla, { width: iconSize, height: iconSize })) : iconType === "sidebar" ? (_jsx(Sidebar, { width: iconSize, height: iconSize })) : iconType === "paperClip" ? (_jsx(PaperClip, { width: iconSize, height: iconSize })) : iconType === "document" ? (_jsx(Document, { width: iconSize, height: iconSize })) : iconType === "file" ? (_jsx(File, { width: iconSize, height: iconSize })) : iconType === "google" ? (_jsx(Google, { width: iconSize, height: iconSize })) : iconType === "pdf" ? (_jsx(PDF, { width: iconSize, height: iconSize })) : iconType === "enter" ? (_jsx(Enter, { width: iconSize, height: iconSize })) : iconType === "key" ? (_jsx(Key, { width: iconSize, height: iconSize })) : iconType === "cornerDown" ? (_jsx(CornerDown, { width: iconSize, height: iconSize })) : iconType === "notAllowed" ? (_jsx(NotAllowed, { width: iconSize, height: iconSize })) : iconType === "university" ? (_jsx(University, { width: iconSize, height: iconSize })) : iconType === "pause" ? (_jsx(Pause, { width: iconSize, height: iconSize })) : iconType === "resume" ? (_jsx(Resume, { width: iconSize, height: iconSize })) : iconType === "ascendingOrder" ? (_jsx(AscendingOrder, { width: iconSize, height: iconSize })) : iconType === "descendingOrder" ? (_jsx(DescendingOrder, { width: iconSize, height: iconSize })) : iconType === "userClock" ? (_jsx(UserClock, { width: iconSize, height: iconSize })) : iconType === "tickVerification" ? (_jsx(TickVerification, { width: iconSize, height: iconSize })) : iconType === "copied" ? (_jsx(Copied, { width: iconSize, height: iconSize })) : iconType === "archive" ? (_jsx(Archive, { width: iconSize, height: iconSize })) : iconType === "additionalInformation" ? (_jsx(AdditionalInformation, { width: iconSize, height: iconSize })) : iconType === "checkCircle" ? (_jsx(CheckCircle, { width: iconSize, height: iconSize })) : iconType === "companyClock" ? (_jsx(CompanyClock, { width: iconSize, height: iconSize })) : iconType === "boldPlus" ? (_jsx(BoldPlus, { width: iconSize, height: iconSize })) : iconType === "square" ? (_jsx(Square, { width: iconSize, height: iconSize })) : iconType === "boxPencil" ? (_jsx(BoxPencil, { width: iconSize, height: iconSize })) : iconType === "companyOwnership" ? (_jsx(CompanyOwnership, { width: iconSize, height: iconSize })) : iconType === "cutBriefcase" ? (_jsx(CutBriefcase, { width: iconSize, height: iconSize })) : iconType === "box" ? (_jsx(Box, { width: iconSize, height: iconSize })) : iconType === "googleLogo" ? (_jsx(GoogleLogo, { width: iconSize, height: iconSize })) : iconType === "microsoftLogo" ? (_jsx(MicrosoftLogo, { width: iconSize, height: iconSize })) : iconType === "people" ? (_jsx(People, { width: iconSize, height: iconSize })) : iconType === "crunchBaseLogo" ? (_jsx(CrunchBaseLogo, { width: iconSize, height: iconSize })) : iconType === "linkedinColoredLogo" ? (_jsx(LinkedinColoredLogo, { width: iconSize, height: iconSize })) : iconType === "googleColoredLogo" ? (_jsx(GoogleColoredLogo, { width: iconSize, height: iconSize })) : iconType === "websiteBadge" ? (_jsx(WebsiteBadge, { width: iconSize, height: iconSize })) : iconType === "arrowLeftShort" ? (_jsx(ArrowLeftShort, { width: iconSize, height: iconSize })) : iconType === "notDownloaded" ? (_jsx(NotDownloaded, { width: iconSize, height: iconSize })) : iconType === "lock" ? (_jsx(Lock, { width: iconSize, height: iconSize })) : iconType === "companyStrategy" ? (_jsx(CompanyStrategy, { width: iconSize, height: iconSize })) : iconType === "industryStrategy" ? (_jsx(IndustryStrategy, { width: iconSize, height: iconSize })) : iconType === "strategyUpdate" ? (_jsx(UpdateStrategy, { width: iconSize, height: iconSize })) : iconType === "unarchive" ? (_jsx(Unarchive, { width: iconSize, height: iconSize })) : iconType === "roundedDocument" ? (_jsx(RoundedDocument, { width: iconSize, height: iconSize })) : iconType === "marketMap" ? (_jsx(MarketMap, { width: iconSize, height: iconSize })) : iconType === "leadership" ? (_jsx(Leadership, { width: iconSize, height: iconSize })) : iconType === "fullScreen" ? (_jsx(FullScreen, { width: iconSize, height: iconSize })) : iconType === "exitFullScreen" ? (_jsx(ExitFullScreen, { width: iconSize, height: iconSize })) : iconType === "plannerTable" ? (_jsx(PlannerTable, { width: iconSize, height: iconSize })) : iconType === "upload" ? (_jsx(Upload, { width: iconSize, height: iconSize })) : iconType === "agent" ? (_jsx(Agent, { width: iconSize, height: iconSize })) : iconType === "doubleTick" ? (_jsx(DoubleTick, { width: iconSize, height: iconSize })) : iconType === "reply" ? (_jsx(Reply, { width: iconSize, height: iconSize })) : iconType === "lowCreditWarning" ? (_jsx(LowCreditWarning, { width: iconSize, height: iconSize })) : iconType === "threeDots" ? (_jsx(ThreeDots, { width: iconSize, height: iconSize })) : iconType === "creditAdmin" ? (_jsx(CreditAdmin, { width: iconSize, height: iconSize })) : iconType === "collection" ? (_jsx(Collection, { width: iconSize, height: iconSize })) : iconType === "save" ? (_jsx(Save, { width: iconSize, height: iconSize })) : iconType === "sidebarArrow" ? (_jsx(SidebarArrow, { width: iconSize, height: iconSize })) : iconType === "gradientSparkles" ? (_jsx(AiGradientSparkles, { width: iconSize, height: iconSize })) : iconType === "plusCircle" ? (_jsx(PlusCircle, { width: iconSize, height: iconSize })) : iconType === "incomingCall" ? (_jsx(IncomingCall, { width: iconSize, height: iconSize })) : iconType === "outgoingCall" ? (_jsx(OutGoingCall, { width: iconSize, height: iconSize })) : iconType === "message" ? (_jsx(Message, { width: iconSize, height: iconSize })) : iconType === "missedCall" ? (_jsx(MissedCall, { width: iconSize, height: iconSize })) : iconType === "filter" ? (_jsx(Filter, { width: iconSize, height: iconSize })) : iconType === "call" ? (_jsx(Call, { width: iconSize, height: iconSize })) : iconType === "voiceCall" ? (_jsx(VoiceCall, { width: iconSize, height: iconSize })) : iconType === "messageLogo" ? (_jsx(MessageLogo, { width: iconSize, height: iconSize })) : iconType === "requisitionLogo" ? (_jsx(RequisitionLogo, { width: iconSize, height: iconSize })) : iconType === "actionLogo" ? (_jsx(ActionLogo, { width: iconSize, height: iconSize })) : iconType === "organizationPlaceholder" ? (_jsx(OrganizationPlaceholder, { width: iconSize, height: iconSize })) : iconType === "approved" ? (_jsx(Approved, { width: iconSize, height: iconSize })) : iconType === "rejected" ? (_jsx(Reject, { width: iconSize, height: iconSize })) : iconType === "pending" ? (_jsx(Pending, { width: iconSize, height: iconSize })) : iconType === "default" ? (_jsx(Default, { width: iconSize, height: iconSize })) : iconType === "creditSystemUser" ? (_jsx(CreditSystemUser, { width: iconSize, height: iconSize })) : iconType === "usFlag" ? (_jsx(USFlag, { width: iconSize, height: iconSize })) : iconType === "canadaFlag" ? (_jsx(CanadaFlag, { width: iconSize, height: iconSize })) : iconType === "australiaFlag" ? (_jsx(AustraliaFlag, { width: iconSize, height: iconSize })) : iconType === "mexicoFlag" ? (_jsx(MexicoFlag, { width: iconSize, height: iconSize })) : iconType === "newZealandFlag" ? (_jsx(NewZealandFlag, { width: iconSize, height: iconSize })) : iconType === "inbox" ? (_jsx(Inbox, { width: iconSize, height: iconSize })) : iconType === "ukFlag" ? (_jsx(UkFlag, { width: iconSize, height: iconSize })) : iconType === "lightBulb" ? (_jsx(LightBulb, { width: iconSize, height: iconSize })) : iconType === "linkedin" ? (_jsx(LinkedinIcon, { width: iconSize, height: iconSize })) : iconType === "outlookColored" ? (_jsx(OutlookColored, { width: iconSize, height: iconSize })) : iconType === "googleColored" ? (_jsx(GoogleIcon, { width: iconSize, height: iconSize })) : iconType === "linkedinPremium" ? (_jsx(InmailIcon, { width: iconSize, height: iconSize })) : iconType === "text" ? (_jsx(TextIcon, { width: iconSize, height: iconSize })) : iconType === "telephone" ? (_jsx(PhoneIcon, { width: iconSize, height: iconSize })) : iconType === "welcomeAboard" ? (_jsx(WelcomeAboard, { width: iconSize, height: iconSize })) : iconType === "googleDriveLogo" ? (_jsx(GoogleDriveLogo, { width: iconSize, height: iconSize })) : iconType === "spreadsheet" ? (_jsx(Spreadsheet, { width: iconSize, height: iconSize })) : iconType === "sparklingStars" ? (_jsx(SparklingStars, { width: iconSize, height: iconSize })) : iconType === "syncLoader" ? (_jsx(SyncLoader, { width: iconSize, height: iconSize })) : iconType === "accessRevoke" ? (_jsx(AccessRevoke, { width: iconSize, height: iconSize })) : iconType === "pipeline" ? (_jsx(Pipeline, { width: iconSize, height: iconSize })) : iconType === "chatSend" ? (_jsx(ChatSend, { width: iconSize, height: iconSize })) : iconType === "stopwatch" ? (_jsx(Stopwatch, { width: iconSize, height: iconSize })) : iconType === "companySourcePlaceholder" ? (_jsx(CompanySourcePlaceholder, { width: iconSize, height: iconSize })) : iconType === "tickCircleFilled" ? (_jsx(TickCircleFilled, { width: iconSize, height: iconSize })) : iconType === "exclamationCircleFilled" ? (_jsx(ExclamationCircleFilled, { width: iconSize, height: iconSize })) : iconType === "basicPlan" ? (_jsx(BasicPlan, { width: iconSize, height: iconSize })) : iconType === "growthPlan" ? (_jsx(GrowthPlan, { width: iconSize, height: iconSize })) : iconType === "enterprisePlan" ? (_jsx(EnterprisePlan, { width: iconSize, height: iconSize })) : iconType === "customPlan" ? (_jsx(CustomPlan, { width: iconSize, height: iconSize })) : iconType === "loader" ? (_jsx(Loader, { width: iconSize, height: iconSize })) : iconType === "dollarCircle" ? (_jsx(DollarCircle, { width: iconSize, height: iconSize })) : iconType === "arrowRightCircle" ? (_jsx(ArrowRightCircle, { width: iconSize, height: iconSize })) : iconType === "kanban" ? (_jsx(Kanban, { width: iconSize, height: iconSize })) : iconType === "linkedinProfile" ? (_jsx(LinkedinProfile, { width: iconSize, height: iconSize })) : iconType === "linkedinConnection" ? (_jsx(LinkedinConnection, { width: iconSize, height: iconSize })) : iconType === "successFull" ? (_jsx(SuccessFull, { width: iconSize, height: iconSize })) : iconType === "searchAi" ? (_jsx(SearchAi, { width: iconSize, height: iconSize })) : iconType === "greenDot" ? (_jsx(GreenDot, { width: iconSize, height: iconSize })) : iconType === "starIcon" ? (_jsx(StarIcon, { width: iconSize, height: iconSize })) : iconType === "thunder" ? (_jsx(Thunder, { width: iconSize, height: iconSize })) : iconType === "logout" ? (_jsx(Logout, { width: iconSize, height: iconSize })) : iconType === "billingAndPricing" ? (_jsx(BillingAndPricing, { width: iconSize, height: iconSize })) : iconType === "creditSystem" ? (_jsx(CreditSystem, { width: iconSize, height: iconSize })) : iconType === "changePassword" ? (_jsx(ChangePassword, { width: iconSize, height: iconSize })) : iconType === "settings" ? (_jsx(Settings, { width: iconSize, height: iconSize })) : iconType === "googleCalenderIcon" ? (_jsx(GoogleCalendarLogo, { width: iconSize, height: iconSize })) : iconType === "employeeCard" ? (_jsx(EmployeeCard, { width: iconSize, height: iconSize })) : iconType === "dash" ? (_jsx(Dash, { width: iconSize, height: iconSize })) : iconType === "dotsMenu" ? (_jsx(DotsMenu, { width: iconSize, height: iconSize })) : iconType === "crossCircle" ? (_jsx(CrossCircle, { width: iconSize, height: iconSize })) : iconType === "smileyFace" ? (_jsx(SmileyFace, { width: iconSize, height: iconSize })) : iconType === "bookOpen" ? (_jsx(BookOpen, { width: iconSize, height: iconSize })) : iconType === "collapse" ? (_jsx(Collapse, { width: iconSize, height: iconSize })) : iconType === "circleInformation" ? (_jsx(CircleInformation, { width: iconSize, height: iconSize })) : iconType === "arrowThroughDoor" ? (_jsx(ArrowThroughDoor, { width: iconSize, height: iconSize })) : iconType === "contactInterested" ? (_jsx(ContactInterested, { width: iconSize, height: iconSize })) : iconType === "contactNotInterested" ? (_jsx(ContactNotInterested, { width: iconSize, height: iconSize })) : iconType === "userAdd" ? (_jsx(UserAdd, { width: iconSize, height: iconSize })) : iconType === "userRemove" ? (_jsx(UserRemove, { width: iconSize, height: iconSize })) : iconType === "microsoftColoredLogo" ? (_jsx(MicrosoftColoredLogo, { width: iconSize, height: iconSize })) : iconType === "contactBook" ? (_jsx(ContactBook, { width: iconSize, height: iconSize })) : iconType === "massUpdate" ? (_jsx(MassUpdate, { width: iconSize, height: iconSize })) : iconType === "internetSearch" ? (_jsx(InternetSearch, { width: iconSize, height: iconSize })) : iconType === "newsFeed" ? (_jsx(NewsFeed, { width: iconSize, height: iconSize })) : iconType === "paragraph" ? (_jsx(Paragraph, { width: iconSize, height: iconSize })) : iconType === "gridView" ? (_jsx(GridView, { width: iconSize, height: iconSize })) : iconType === "searchThin" ? (_jsx(SearchThin, { width: iconSize, height: iconSize })) : iconType === "companyPlaceholderAvatar" ? (_jsx(CompanyPlaceholderAvatar, { width: iconSize, height: iconSize })) : iconType === "profilePlaceholderAvatar" ? (_jsx(ProfilePlaceholderAvatar, { width: iconSize, height: iconSize })) : iconType === "videoPlayIcon" ? (_jsx(VideoPlayIcon, { width: iconSize, height: iconSize })) : iconType === "cloudUpload" ? (_jsx(CloudUpload, { width: iconSize, height: iconSize })) : iconType === "microphone" ? (_jsx(Microphone, { width: iconSize, height: iconSize })) : iconType === "pauseIcon" ? (_jsx(PauseIcon, { width: iconSize, height: iconSize })) : iconType === "playIcon" ? (_jsx(PlayIcon, { width: iconSize, height: iconSize })) : iconType === "retry" ? (_jsx(Retry, { width: iconSize, height: iconSize })) : iconType === "trendingUp" ? (_jsx(TrendingUp, { width: iconSize, height: iconSize })) : iconType === "database" ? (_jsx(Database, { width: iconSize, height: iconSize })) : null;
|
|
261
267
|
};
|
|
262
268
|
export default GetSvgIcon;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const CloudUpload = ({ className = "", width = "20", height = "20", }) => {
|
|
3
|
+
return (_jsx("svg", { className: className, width: width, height: height, viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M5.83706 13.3343C5.01624 13.3352 4.22394 13.0332 3.61195 12.4862C2.99996 11.9392 2.61132 11.1856 2.52048 10.3698C2.42965 9.55403 2.643 8.73341 3.11967 8.06518C3.59634 7.39695 4.30281 6.92808 5.10372 6.74842C4.87199 5.66766 5.07908 4.53911 5.67943 3.61104C6.27978 2.68297 7.22422 2.0314 8.30497 1.79967C9.38573 1.56794 10.5143 1.77502 11.4424 2.37537C12.3704 2.97572 13.022 3.92016 13.2537 5.00092H13.3371C14.3704 4.99988 15.3672 5.38282 16.134 6.0754C16.9008 6.76797 17.383 7.72078 17.4868 8.74884C17.5907 9.7769 17.3088 10.8069 16.696 11.6388C16.0831 12.4708 15.183 13.0453 14.1704 13.2509M12.5037 10.8343L10.0037 8.33425M10.0037 8.33425L7.50372 10.8343M10.0037 8.33425V18.3343", strokeWidth: "1.25", strokeLinecap: "round", strokeLinejoin: "round" }) }));
|
|
4
|
+
};
|
|
5
|
+
export default CloudUpload;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Database = ({ className = "", width = "16", height = "13", }) => {
|
|
3
|
+
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: width, height: height, className: className, viewBox: "0 0 16 13", fill: "none", children: _jsx("path", { d: "M0.75 4.13462V8.36538C0.75 10.2354 3.88425 11.75 7.75 11.75C11.6158 11.75 14.75 10.2354 14.75 8.36538M0.75 4.13462C0.75 6.00462 3.88425 7.51923 7.75 7.51923C11.6158 7.51923 14.75 6.00462 14.75 4.13462M0.75 4.13462C0.75 2.26462 3.88425 0.75 7.75 0.75C11.6158 0.75 14.75 2.26462 14.75 4.13462M14.75 8.78846V4.13462", stroke: "#D5D5D5", "stroke-width": "1.5", "stroke-linecap": "round", "stroke-linejoin": "round" }) }));
|
|
4
|
+
};
|
|
5
|
+
export default Database;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Microphone = ({ className = "", width = "24", height = "24", }) => {
|
|
3
|
+
return (_jsx("svg", { className: className, width: width, height: height, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M18.7995 10.8848C18.7995 12.7219 18.0697 14.4839 16.7706 15.783C15.4715 17.082 13.7096 17.8118 11.8724 17.8118M11.8724 17.8118C10.0352 17.8118 8.27329 17.082 6.97421 15.783C5.67513 14.4839 4.94531 12.7219 4.94531 10.8848M11.8724 17.8118V21.7702M11.8724 21.7702H7.91406M11.8724 21.7702H15.8307M11.8724 13.8535C11.085 13.8535 10.3299 13.5407 9.77317 12.984C9.21642 12.4272 8.90365 11.6721 8.90365 10.8848V4.94727C8.90365 4.1599 9.21642 3.40479 9.77317 2.84804C10.3299 2.29129 11.085 1.97852 11.8724 1.97852C12.6598 1.97852 13.4149 2.29129 13.9716 2.84804C14.5284 3.40479 14.8411 4.1599 14.8411 4.94727V10.8848C14.8411 11.6721 14.5284 12.4272 13.9716 12.984C13.4149 13.5407 12.6598 13.8535 11.8724 13.8535Z", strokeWidth: "1.78125", strokeLinecap: "round", strokeLinejoin: "round" }) }));
|
|
4
|
+
};
|
|
5
|
+
export default Microphone;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const PauseIcon = ({ className = "", width = "24", height = "24", }) => {
|
|
3
|
+
return (_jsx("svg", { className: className, width: width, height: height, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M15.5419 5.18164L15.5419 18.504M8.14062 5.18164V18.504", strokeWidth: "1.77632", strokeLinecap: "round", strokeLinejoin: "round" }) }));
|
|
4
|
+
};
|
|
5
|
+
export default PauseIcon;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const PlayIcon = ({ className = "", width = "24", height = "24", }) => {
|
|
3
|
+
return (_jsx("svg", { className: className, width: width, height: height, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M5.17969 5.57858C5.17969 4.73416 6.08502 4.19886 6.82491 4.6058L18.2136 10.8696C18.9805 11.2914 18.9805 12.3934 18.2136 12.8152L6.82491 19.079C6.08501 19.4859 5.17969 18.9506 5.17969 18.1062V5.57858Z", strokeWidth: "1.77632", strokeLinecap: "round", strokeLinejoin: "round" }) }));
|
|
4
|
+
};
|
|
5
|
+
export default PlayIcon;
|