qlu-20-ui-library 1.10.7 → 1.10.10

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.
@@ -1,7 +1,9 @@
1
1
  export interface ICreditBarChart {
2
- quater: string;
3
- amount: number;
4
- phoneAmount: number;
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
- quater: string;
24
- amount: number;
25
- phoneAmount: number;
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;
@@ -0,0 +1,6 @@
1
+ interface CoinProps {
2
+ width?: string;
3
+ height?: string;
4
+ }
5
+ declare const Coin: ({ width, height }: CoinProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Coin;
@@ -0,0 +1,7 @@
1
+ interface DatabaseProps {
2
+ className?: string;
3
+ width?: string;
4
+ height?: string;
5
+ }
6
+ declare const Database: ({ className, width, height, }: DatabaseProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default Database;
@@ -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";
package/dist/types/App.js CHANGED
@@ -2,6 +2,6 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import "./App.scss";
3
3
  import GetSvgIcon from "./components/GetSvgIcon";
4
4
  function App() {
5
- return (_jsxs("div", { children: [_jsx(GetSvgIcon, { iconType: "inbox", iconSize: "40" }), _jsx(GetSvgIcon, { iconType: "trendingUp", iconSize: "40" })] }));
5
+ return (_jsxs("div", { children: [_jsx(GetSvgIcon, { iconType: "inbox", iconSize: "40" }), _jsx(GetSvgIcon, { iconType: "trendingUp", iconSize: "40" }), _jsx(GetSvgIcon, { iconType: "coin", iconSize: "40" })] }));
6
6
  }
7
7
  export default App;
@@ -1,7 +1,9 @@
1
1
  export interface ICreditBarChart {
2
- quater: string;
3
- amount: number;
4
- phoneAmount: number;
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.quater);
73
- const values = revenues.map((data) => data.amount);
74
- const phoneValues = revenues.map((data) => data.phoneAmount);
75
- const maxValue = Math.max(...values, ...phoneValues);
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: values,
83
- borderWidth: 2,
84
- backgroundColor: "#4B4B4B",
85
- barThickness: responsiveValues.barThickness,
86
- maxBarThickness: responsiveValues.barThickness,
87
- hoverBorderColor: "#5e5e5e",
88
- borderColor: "#5e5e5e",
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: 8,
91
- topRight: 8,
92
- bottomLeft: 8,
93
- bottomRight: 8,
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: phoneValues,
100
- borderWidth: 2,
101
- backgroundColor: "#66381f",
102
- barThickness: responsiveValues.barThickness,
103
- maxBarThickness: responsiveValues.barThickness,
104
- hoverBorderColor: "#cc713e",
105
- borderColor: "#cc713e",
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: 8,
108
- topRight: 8,
109
- bottomLeft: 8,
110
- bottomRight: 8,
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
- quater: string;
24
- amount: number;
25
- phoneAmount: number;
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]: "Last 7 Days",
19
- [TimeFrame.LastMonth]: "Last Month",
20
- [TimeFrame.Last3Months]: "Last 3 Months",
21
- [TimeFrame.Last6Months]: "Last 6 Months",
22
- [TimeFrame.LastYear]: "Last Year",
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
- return (_jsxs("div", { className: styles.creditUsageChartContainer, children: [_jsxs("div", { className: styles.creditUsageChartHeader, children: [_jsx("h3", { children: title }), _jsxs("div", { className: styles.options, children: [_jsxs("div", { className: styles.option, children: [_jsx("div", { className: styles.color }), _jsx("span", { children: "Email credits" })] }), _jsxs("div", { className: styles.option, children: [_jsx("div", { className: styles.color }), _jsx("span", { children: "Phone credits" })] }), _jsx("div", { className: styles.dropDownContainer, children: _jsx(DropDownButton, { dropDownText: typeFrameText[selectedTimeFrame], children: Object.values(TimeFrame)
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;
@@ -261,7 +261,9 @@ import Microphone from "../Svg/Microphone";
261
261
  import PauseIcon from "../Svg/PauseIcon";
262
262
  import PlayIcon from "../Svg/PlayIcon";
263
263
  import Retry from "../Svg/Retry";
264
+ import Database from "../Svg/Database";
265
+ import Coin from "../Svg/Coin";
264
266
  const GetSvgIcon = ({ iconType = "cross", iconSize = "24" }) => {
265
- 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 })) : null;
267
+ 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 })) : iconType === "coin" ? (_jsx(Coin, { width: iconSize, height: iconSize })) : null;
266
268
  };
267
269
  export default GetSvgIcon;
@@ -0,0 +1,6 @@
1
+ interface CoinProps {
2
+ width?: string;
3
+ height?: string;
4
+ }
5
+ declare const Coin: ({ width, height }: CoinProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Coin;
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const Coin = ({ width = "18", height = "18" }) => {
3
+ return (_jsx("svg", { width: width, height: height, viewBox: "0 0 18 18", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { stroke: "#999999", d: "M2 6.38462V10.6154C2 12.4854 5.13425 14 9 14C12.8658 14 16 12.4854 16 10.6154M2 6.38462C2 8.25462 5.13425 9.76923 9 9.76923C12.8658 9.76923 16 8.25462 16 6.38462M2 6.38462C2 4.51462 5.13425 3 9 3C12.8658 3 16 4.51462 16 6.38462M16 11.0385V6.38462", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }));
4
+ };
5
+ export default Coin;
@@ -0,0 +1,7 @@
1
+ interface DatabaseProps {
2
+ className?: string;
3
+ width?: string;
4
+ height?: string;
5
+ }
6
+ declare const Database: ({ className, width, height, }: DatabaseProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default Database;
@@ -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;
@@ -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";
@@ -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
  // =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
183
184
  // UNUSED
184
185
  export { default as MultiChart } from "./CompanyView/CompanyViewFinancialSummary/MultiChart/";