@3w-witim/ui 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -0
- package/dist/calendar/index.css +37 -0
- package/dist/calendar/index.css.map +1 -0
- package/dist/calendar/index.d.mts +55 -0
- package/dist/calendar/index.d.ts +55 -0
- package/dist/calendar/index.js +169 -0
- package/dist/calendar/index.js.map +1 -0
- package/dist/calendar/index.mjs +143 -0
- package/dist/calendar/index.mjs.map +1 -0
- package/dist/icons/index.d.mts +229 -0
- package/dist/icons/index.d.ts +229 -0
- package/dist/icons/index.js +678 -0
- package/dist/icons/index.js.map +1 -0
- package/dist/icons/index.mjs +568 -0
- package/dist/icons/index.mjs.map +1 -0
- package/dist/index.d.mts +971 -0
- package/dist/index.d.ts +971 -0
- package/dist/index.js +3739 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +3584 -0
- package/dist/index.mjs.map +1 -0
- package/dist/tailwind-preset.cjs +134 -0
- package/dist/tokens.css +662 -0
- package/package.json +74 -0
|
@@ -0,0 +1,678 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
4
|
+
|
|
5
|
+
// src/icons/_base.tsx
|
|
6
|
+
function IconBase({
|
|
7
|
+
size = 20,
|
|
8
|
+
children,
|
|
9
|
+
...props
|
|
10
|
+
}) {
|
|
11
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
12
|
+
"svg",
|
|
13
|
+
{
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
width: size,
|
|
16
|
+
height: size,
|
|
17
|
+
viewBox: "0 0 24 24",
|
|
18
|
+
fill: "none",
|
|
19
|
+
stroke: "currentColor",
|
|
20
|
+
strokeWidth: 1.5,
|
|
21
|
+
strokeLinecap: "round",
|
|
22
|
+
strokeLinejoin: "round",
|
|
23
|
+
"aria-hidden": "true",
|
|
24
|
+
...props,
|
|
25
|
+
children
|
|
26
|
+
}
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
var AiIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
30
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 10C4 6.5 5 4.5 7 4.5C9 6 10.5 8 12 8C13.5 8 15 6 17 4.5C19 4.5 20 6.5 20 10L20 16Q20 20 16 20L8 20Q4 20 4 16Z" }),
|
|
31
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "9.5", cy: "14.5", r: "1.1", fill: "currentColor", stroke: "none" }),
|
|
32
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "14.5", cy: "14.5", r: "1.1", fill: "currentColor", stroke: "none" })
|
|
33
|
+
] });
|
|
34
|
+
var AlignCenterIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 6H3M17 12H7M19 18H5" }) });
|
|
35
|
+
var AlignLeftIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 6H3M15 12H3M17 18H3" }) });
|
|
36
|
+
var AlignRightIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 6H3M21 12H9M21 18H7" }) });
|
|
37
|
+
var ApprovalIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
38
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1.5", ry: "1.5" }),
|
|
39
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }),
|
|
40
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m9 14 2 2 4-4" })
|
|
41
|
+
] });
|
|
42
|
+
var ArchiveIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
43
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { width: "20", height: "5", x: "2", y: "3", rx: "1.5" }),
|
|
44
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8" }),
|
|
45
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 12h4" })
|
|
46
|
+
] });
|
|
47
|
+
var AttachIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m16 6-8.414 8.586a2 2 0 0 0 2.829 2.829l8.414-8.586a4 4 0 1 0-5.657-5.657l-8.379 8.551a6 6 0 1 0 8.485 8.485l8.379-8.551" }) });
|
|
48
|
+
var AwardIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
49
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m15.477 12.89 1.515 8.526a.5.5 0 0 1-.81.47l-3.58-2.687a1 1 0 0 0-1.197 0l-3.586 2.686a.5.5 0 0 1-.81-.469l1.514-8.526" }),
|
|
50
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "8", r: "6" })
|
|
51
|
+
] });
|
|
52
|
+
var BellIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
53
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 18a3 3 0 0 0 6 0" }),
|
|
54
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.5 18 8A6 6 0 0 0 6 8c0 4.5-1.411 5.956-2.738 7.327A1 1 0 0 0 4 17z" })
|
|
55
|
+
] });
|
|
56
|
+
var BillingIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
57
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { width: "20", height: "14", x: "2", y: "5", rx: "3" }),
|
|
58
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 10h20" })
|
|
59
|
+
] });
|
|
60
|
+
var BoardIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
61
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "3.5", y: "3.5", width: "7", height: "7", rx: "2.5" }),
|
|
62
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "13.5", y: "3.5", width: "7", height: "7", rx: "2.5" }),
|
|
63
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "3.5", y: "13.5", width: "7", height: "7", rx: "2.5" }),
|
|
64
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "13.5", y: "13.5", width: "7", height: "7", rx: "2.5" })
|
|
65
|
+
] });
|
|
66
|
+
var BoldIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8" }) });
|
|
67
|
+
var BookmarkIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" }) });
|
|
68
|
+
var BuildingIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
69
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 12h4" }),
|
|
70
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 8h4" }),
|
|
71
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 21v-3a2 2 0 0 0-4 0v3" }),
|
|
72
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 10H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2" }),
|
|
73
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 21V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v16" })
|
|
74
|
+
] });
|
|
75
|
+
var CalendarAddIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
76
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 19h6" }),
|
|
77
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 2v4" }),
|
|
78
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 16v6" }),
|
|
79
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 12.6V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5" }),
|
|
80
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 10h18" }),
|
|
81
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 2v4" })
|
|
82
|
+
] });
|
|
83
|
+
var CalendarOffIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
84
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.2 4.2A2 2 0 0 0 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 1.82-1.18" }),
|
|
85
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 15.5V6a2 2 0 0 0-2-2H9.5" }),
|
|
86
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 2v4" }),
|
|
87
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 10h7" }),
|
|
88
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 10h-5.5" }),
|
|
89
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m2 2 20 20" })
|
|
90
|
+
] });
|
|
91
|
+
var CalendarWeekIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
92
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 2v4M16 2v4" }),
|
|
93
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { width: "18", height: "18", x: "3", y: "4", rx: "3" }),
|
|
94
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 10h18" }),
|
|
95
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 14h.01M12 14h.01M16 14h.01M8 18h.01M12 18h.01M16 18h.01" })
|
|
96
|
+
] });
|
|
97
|
+
var CalendarIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
98
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "3", y: "4.5", width: "18", height: "16", rx: "3" }),
|
|
99
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 9.5h18M8 2.5v4M16 2.5v4" })
|
|
100
|
+
] });
|
|
101
|
+
var ChatIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 14a3 3 0 0 1-3 3H8l-5 4V6A3 3 0 0 1 6 3h12a3 3 0 0 1 3 3z" }) });
|
|
102
|
+
var CheckIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 6 9 17l-5-5" }) });
|
|
103
|
+
var ChevronDownIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m6 9 6 6 6-6" }) });
|
|
104
|
+
var ChevronLeftIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m15 6-6 6 6 6" }) });
|
|
105
|
+
var ChevronRightIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m9 6 6 6-6 6" }) });
|
|
106
|
+
var ChevronUpIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m6 15 6-6 6 6" }) });
|
|
107
|
+
var ClipboardIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
108
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1.5" }),
|
|
109
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }),
|
|
110
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 11h4" }),
|
|
111
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 16h4" }),
|
|
112
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 11h.01" }),
|
|
113
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 16h.01" })
|
|
114
|
+
] });
|
|
115
|
+
var ClockIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
116
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "10" }),
|
|
117
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 6v6l4 2" })
|
|
118
|
+
] });
|
|
119
|
+
var CodeIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
120
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m16 18 6-6-6-6" }),
|
|
121
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m8 6-6 6 6 6" })
|
|
122
|
+
] });
|
|
123
|
+
var CollapseIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 3v3a2 2 0 0 1-2 2H3M16 3v3a2 2 0 0 0 2 2h3M21 16h-3a2 2 0 0 0-2 2v3M8 21v-3a2 2 0 0 0-2-2H3" }) });
|
|
124
|
+
var CompassIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
125
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "10" }),
|
|
126
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m16.24 7.76-1.804 5.411a2 2 0 0 1-1.265 1.265L7.76 16.24l1.804-5.411a2 2 0 0 1 1.265-1.265z" })
|
|
127
|
+
] });
|
|
128
|
+
var CopyIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
129
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "8.5", y: "8.5", width: "11.5", height: "11.5", rx: "3" }),
|
|
130
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.5 8.5V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v7.5a2 2 0 0 0 2 2h2.5" })
|
|
131
|
+
] });
|
|
132
|
+
var DocumentIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
133
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z" }),
|
|
134
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }),
|
|
135
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 13H8M16 17H8M10 9H8" })
|
|
136
|
+
] });
|
|
137
|
+
var DownloadIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
138
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 4v11M7.5 11l4.5 4 4.5-4" }),
|
|
139
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 20h14" })
|
|
140
|
+
] });
|
|
141
|
+
var DragIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
142
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "9", cy: "6", r: "1.1", fill: "currentColor", stroke: "none" }),
|
|
143
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "9", cy: "12", r: "1.1", fill: "currentColor", stroke: "none" }),
|
|
144
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "9", cy: "18", r: "1.1", fill: "currentColor", stroke: "none" }),
|
|
145
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "15", cy: "6", r: "1.1", fill: "currentColor", stroke: "none" }),
|
|
146
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "15", cy: "12", r: "1.1", fill: "currentColor", stroke: "none" }),
|
|
147
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "15", cy: "18", r: "1.1", fill: "currentColor", stroke: "none" })
|
|
148
|
+
] });
|
|
149
|
+
var EditIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
150
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z" }),
|
|
151
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m15 5 4 4" })
|
|
152
|
+
] });
|
|
153
|
+
var EmojiIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
154
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "10" }),
|
|
155
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 14s1.5 2 4 2 4-2 4-2M9 9h.01M15 9h.01" })
|
|
156
|
+
] });
|
|
157
|
+
var ErrorIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
158
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "10" }),
|
|
159
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m15 9-6 6M9 9l6 6" })
|
|
160
|
+
] });
|
|
161
|
+
var ExpandIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 3H5a2 2 0 0 0-2 2v3M16 3h3a2 2 0 0 1 2 2v3M21 16v3a2 2 0 0 1-2 2h-3M8 21H5a2 2 0 0 1-2-2v-3" }) });
|
|
162
|
+
var ExportIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
163
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.226 20.925A2 2 0 0 0 6 22h12a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.127" }),
|
|
164
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 2v5a1 1 0 0 0 1 1h5" }),
|
|
165
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m5 11-3 3" }),
|
|
166
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m5 17-3-3h10" })
|
|
167
|
+
] });
|
|
168
|
+
var ExternalIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
169
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15 3h6v6" }),
|
|
170
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 14 21 3" }),
|
|
171
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" })
|
|
172
|
+
] });
|
|
173
|
+
var EyeOffIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
174
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49" }),
|
|
175
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.084 14.158a3 3 0 0 1-4.242-4.242" }),
|
|
176
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143" }),
|
|
177
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m2 2 20 20" })
|
|
178
|
+
] });
|
|
179
|
+
var EyeIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
180
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0" }),
|
|
181
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "3" })
|
|
182
|
+
] });
|
|
183
|
+
var FileIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
184
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z" }),
|
|
185
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" })
|
|
186
|
+
] });
|
|
187
|
+
var FilterIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 5.5h16l-6.5 8V20l-3-2v-4.5z" }) });
|
|
188
|
+
var FingerprintIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
189
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 12a10 10 0 0 1 18-6" }),
|
|
190
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 16h.01" }),
|
|
191
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.8 16c.2-2 .131-5.354 0-6" }),
|
|
192
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 19.5C5.5 18 6 15 6 12a6 6 0 0 1 .34-2" }),
|
|
193
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.65 22c.21-.66.45-1.32.57-2" }),
|
|
194
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 6.8a6 6 0 0 1 9 5.2v2" }),
|
|
195
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4" }),
|
|
196
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 13.12c0 2.38 0 6.38-1 8.88" }),
|
|
197
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.29 21.02c.12-.6.43-2.3.5-3.02" })
|
|
198
|
+
] });
|
|
199
|
+
var FolderIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 8a3 3 0 0 1 3-3h3l2 2.5h7a3 3 0 0 1 3 3V17a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3z" }) });
|
|
200
|
+
var HashIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 9h16M4 15h16M10 3 8 21M16 3 14 21" }) });
|
|
201
|
+
var HeartIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5" }) });
|
|
202
|
+
var HelpIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
203
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "10" }),
|
|
204
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
|
205
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 17h.01" })
|
|
206
|
+
] });
|
|
207
|
+
var HighlightIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
208
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m9 11-6 6v3h9l3-3" }),
|
|
209
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m22 12-4.6 4.6a2 2 0 0 1-2.8 0l-5.2-5.2a2 2 0 0 1 0-2.8L14 4" })
|
|
210
|
+
] });
|
|
211
|
+
var HomeIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
212
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 10.2 12 3l9 7.2" }),
|
|
213
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 9.5V19a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V9.5" }),
|
|
214
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.5 21v-5.5a1.5 1.5 0 0 1 1.5-1.5h2a1.5 1.5 0 0 1 1.5 1.5V21" })
|
|
215
|
+
] });
|
|
216
|
+
var HrIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
217
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "3", y: "5", width: "18", height: "14", rx: "3" }),
|
|
218
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "9", cy: "10.5", r: "2" }),
|
|
219
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 16a3 3 0 0 1 6 0" }),
|
|
220
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.5 10h3.5M14.5 13.5h3.5" })
|
|
221
|
+
] });
|
|
222
|
+
var ImageIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
223
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { width: "18", height: "18", x: "3", y: "3", rx: "3", ry: "3" }),
|
|
224
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "9", cy: "9", r: "2" }),
|
|
225
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
|
|
226
|
+
] });
|
|
227
|
+
var InfoIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
228
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "10" }),
|
|
229
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 16v-4M12 8h.01" })
|
|
230
|
+
] });
|
|
231
|
+
var ItalicIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 4h-9M14 20H5M15 4 9 20" }) });
|
|
232
|
+
var KeyIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
233
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4" }),
|
|
234
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m21 2-9.6 9.6" }),
|
|
235
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
|
|
236
|
+
] });
|
|
237
|
+
var LeaveIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
238
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13 8c0-2.76-2.46-5-5.5-5S2 5.24 2 8h2l1-1 1 1h4" }),
|
|
239
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13 7.14A5.82 5.82 0 0 1 16.5 6c3.04 0 5.5 2.24 5.5 5h-3l-1-1-1 1h-3" }),
|
|
240
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.89 9.71c-2.15 2.15-2.3 5.47-.35 7.43l4.24-4.25.7-.7.71-.71 2.12-2.12c-1.95-1.96-5.27-1.8-7.42.35" }),
|
|
241
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 15.5c.5 2.5-.17 4.5-1 6.5h4c2-5.5-.5-12-1-14" })
|
|
242
|
+
] });
|
|
243
|
+
var LinkIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
244
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.5 14.5 14.5 9.5" }),
|
|
245
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6.5 12.5 5a4 4 0 0 1 6 6L17 12.5" }),
|
|
246
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13 17.5 11.5 19a4 4 0 0 1-6-6L7 11.5" })
|
|
247
|
+
] });
|
|
248
|
+
var ListNumIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 5h10M11 12h10M11 19h10M4 4h1v5M4 9h2M6.5 20H3.4c0-1 2.6-1.925 2.6-3.5a1.5 1.5 0 0 0-2.6-1.02" }) });
|
|
249
|
+
var ListIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 5h.01M3 12h.01M3 19h.01M8 5h13M8 12h13M8 19h13" }) });
|
|
250
|
+
var LocationIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
251
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0" }),
|
|
252
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "10", r: "3" })
|
|
253
|
+
] });
|
|
254
|
+
var LockIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
255
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { width: "18", height: "11", x: "3", y: "11", rx: "3", ry: "3" }),
|
|
256
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
|
|
257
|
+
] });
|
|
258
|
+
var LogoutIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
259
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
|
|
260
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m16 17 5-5-5-5" }),
|
|
261
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 12H9" })
|
|
262
|
+
] });
|
|
263
|
+
var MailIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
264
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { width: "20", height: "16", x: "2", y: "4", rx: "3" }),
|
|
265
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" })
|
|
266
|
+
] });
|
|
267
|
+
var MegaphoneIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
268
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 6a13 13 0 0 0 8.4-2.8A1 1 0 0 1 21 4v12a1 1 0 0 1-1.6.8A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z" }),
|
|
269
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14" }),
|
|
270
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 6v8" })
|
|
271
|
+
] });
|
|
272
|
+
var MentionIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
273
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "4" }),
|
|
274
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8" })
|
|
275
|
+
] });
|
|
276
|
+
var MicIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
277
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 19v3" }),
|
|
278
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
|
|
279
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "9", y: "2", width: "6", height: "13", rx: "3" })
|
|
280
|
+
] });
|
|
281
|
+
var MoneyIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
282
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { width: "20", height: "12", x: "2", y: "6", rx: "3" }),
|
|
283
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "2" }),
|
|
284
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 12h.01M18 12h.01" })
|
|
285
|
+
] });
|
|
286
|
+
var MoreIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
287
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "5.5", cy: "12", r: "1.1", fill: "currentColor", stroke: "none" }),
|
|
288
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "1.1", fill: "currentColor", stroke: "none" }),
|
|
289
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "18.5", cy: "12", r: "1.1", fill: "currentColor", stroke: "none" })
|
|
290
|
+
] });
|
|
291
|
+
var OrgIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
292
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "16", y: "16", width: "6", height: "6", rx: "1.5" }),
|
|
293
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "2", y: "16", width: "6", height: "6", rx: "1.5" }),
|
|
294
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "9", y: "2", width: "6", height: "6", rx: "1.5" }),
|
|
295
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3" }),
|
|
296
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 12V8" })
|
|
297
|
+
] });
|
|
298
|
+
var PayrollIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
299
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 1 1-1v-2a1 1 0 0 0-1-1" }),
|
|
300
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4" })
|
|
301
|
+
] });
|
|
302
|
+
var PhoneIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" }) });
|
|
303
|
+
var PinIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
304
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 17v5" }),
|
|
305
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z" })
|
|
306
|
+
] });
|
|
307
|
+
var PlusIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 5v14M5 12h14" }) });
|
|
308
|
+
var ProjectIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
309
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "3", y: "7.5", width: "18", height: "12.5", rx: "3" }),
|
|
310
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.5 7.5V6a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v1.5" }),
|
|
311
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 13h18" })
|
|
312
|
+
] });
|
|
313
|
+
var QrIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
314
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { width: "5", height: "5", x: "3", y: "3", rx: "1.5" }),
|
|
315
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { width: "5", height: "5", x: "16", y: "3", rx: "1.5" }),
|
|
316
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { width: "5", height: "5", x: "3", y: "16", rx: "1.5" }),
|
|
317
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 16h-3a2 2 0 0 0-2 2v3" }),
|
|
318
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 21v.01" }),
|
|
319
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 7v3a2 2 0 0 1-2 2H7" }),
|
|
320
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 12h.01" }),
|
|
321
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 3h.01" }),
|
|
322
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 16v.01" }),
|
|
323
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 12h1" }),
|
|
324
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 12v.01" }),
|
|
325
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 21v-1" })
|
|
326
|
+
] });
|
|
327
|
+
var QuoteIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
328
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 5H3" }),
|
|
329
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 12H8" }),
|
|
330
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 19H8" }),
|
|
331
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 12v7" })
|
|
332
|
+
] });
|
|
333
|
+
var RedoIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
334
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 7v6h-6" }),
|
|
335
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
|
|
336
|
+
] });
|
|
337
|
+
var RefreshIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
338
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 12a9 9 0 1 1-2.64-6.36L21 8" }),
|
|
339
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 3v5h-5" })
|
|
340
|
+
] });
|
|
341
|
+
var RepeatIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
342
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m17 2 4 4-4 4" }),
|
|
343
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 11v-1a4 4 0 0 1 4-4h14" }),
|
|
344
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m7 22-4-4 4-4" }),
|
|
345
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 13v1a4 4 0 0 1-4 4H3" })
|
|
346
|
+
] });
|
|
347
|
+
var ReplyIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
348
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m9 17-5-5 5-5" }),
|
|
349
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 12h11a5 5 0 0 1 5 5v1" })
|
|
350
|
+
] });
|
|
351
|
+
var SearchIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
352
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "11", cy: "11", r: "7" }),
|
|
353
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m20 20-3.4-3.4" })
|
|
354
|
+
] });
|
|
355
|
+
var SecurityIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
356
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }),
|
|
357
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m9 12 2 2 4-4" })
|
|
358
|
+
] });
|
|
359
|
+
var SendIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
360
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.5 3.5 2.5 11l7.5 2.5L12.5 21z" }),
|
|
361
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.5 3.5 10 13.5" })
|
|
362
|
+
] });
|
|
363
|
+
var SettingsIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
364
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915" }),
|
|
365
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "3" })
|
|
366
|
+
] });
|
|
367
|
+
var ShareIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
368
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "18", cy: "6", r: "2.5" }),
|
|
369
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "6", cy: "12", r: "2.5" }),
|
|
370
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "18", cy: "18", r: "2.5" }),
|
|
371
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.2 10.8 15.8 7.2M8.2 13.2l7.6 3.6" })
|
|
372
|
+
] });
|
|
373
|
+
var SidebarIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
374
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "3", y: "4", width: "18", height: "16", rx: "3" }),
|
|
375
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15 4v16" })
|
|
376
|
+
] });
|
|
377
|
+
var SortIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
378
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 4v16M3 8l4-4 4 4" }),
|
|
379
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 20V4M21 16l-4 4-4-4" })
|
|
380
|
+
] });
|
|
381
|
+
var StarIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z" }) });
|
|
382
|
+
var StatsIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
383
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }),
|
|
384
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 16v-5M12 16v-9M17 16v-3" })
|
|
385
|
+
] });
|
|
386
|
+
var StrikeIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
387
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 4H9a3 3 0 0 0-2.83 4" }),
|
|
388
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 12a4 4 0 0 1 0 8H6" }),
|
|
389
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 12h16" })
|
|
390
|
+
] });
|
|
391
|
+
var SuccessIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
392
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "10" }),
|
|
393
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m9 12 2 2 4-4" })
|
|
394
|
+
] });
|
|
395
|
+
var SwitchIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
396
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 4l4 4-4 4M20 8H7" }),
|
|
397
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 12l-4 4 4 4M4 16h13" })
|
|
398
|
+
] });
|
|
399
|
+
var TargetIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
400
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "10" }),
|
|
401
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "6" }),
|
|
402
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "2" })
|
|
403
|
+
] });
|
|
404
|
+
var ThemeDarkIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" }) });
|
|
405
|
+
var ThemeLightIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
406
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "4" }),
|
|
407
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M6.34 17.66l-1.41 1.41M19.07 4.93l-1.41 1.41" })
|
|
408
|
+
] });
|
|
409
|
+
var ThreadIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z" }) });
|
|
410
|
+
var TimelineIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
411
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 6h8" }),
|
|
412
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 16h6" }),
|
|
413
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }),
|
|
414
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 11h7" })
|
|
415
|
+
] });
|
|
416
|
+
var TrashIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 7h16M9 7V5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2M6 7l1 13a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1l1-13" }) });
|
|
417
|
+
var UnderlineIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
418
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 4v6a6 6 0 0 0 12 0V4" }),
|
|
419
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 20h16" })
|
|
420
|
+
] });
|
|
421
|
+
var UndoIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
422
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 7v6h6" }),
|
|
423
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
|
|
424
|
+
] });
|
|
425
|
+
var UploadIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
426
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 20V8M7.5 12l4.5-4 4.5 4" }),
|
|
427
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 4h14" })
|
|
428
|
+
] });
|
|
429
|
+
var UserIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
430
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "8", r: "4" }),
|
|
431
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 21a8 8 0 0 1 16 0" })
|
|
432
|
+
] });
|
|
433
|
+
var UsersIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
434
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
435
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "9", cy: "7", r: "4" }),
|
|
436
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
|
|
437
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
|
|
438
|
+
] });
|
|
439
|
+
var VacationIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z" }) });
|
|
440
|
+
var VideoIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
441
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { width: "18", height: "18", x: "3", y: "3", rx: "3" }),
|
|
442
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 3v18" }),
|
|
443
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 7.5h4" }),
|
|
444
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 12h18" }),
|
|
445
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 16.5h4" }),
|
|
446
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 3v18" }),
|
|
447
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 7.5h4" }),
|
|
448
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 16.5h4" })
|
|
449
|
+
] });
|
|
450
|
+
var WarningIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs(IconBase, { ...props, children: [
|
|
451
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3" }),
|
|
452
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 9v4" }),
|
|
453
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 17h.01" })
|
|
454
|
+
] });
|
|
455
|
+
var XIcon = (props) => /* @__PURE__ */ jsxRuntime.jsx(IconBase, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18 6 6 18M6 6l12 12" }) });
|
|
456
|
+
|
|
457
|
+
// src/icons/index.ts
|
|
458
|
+
var ICON_NAMES = [
|
|
459
|
+
"AiIcon",
|
|
460
|
+
"AlignCenterIcon",
|
|
461
|
+
"AlignLeftIcon",
|
|
462
|
+
"AlignRightIcon",
|
|
463
|
+
"ApprovalIcon",
|
|
464
|
+
"ArchiveIcon",
|
|
465
|
+
"AttachIcon",
|
|
466
|
+
"AwardIcon",
|
|
467
|
+
"BellIcon",
|
|
468
|
+
"BillingIcon",
|
|
469
|
+
"BoardIcon",
|
|
470
|
+
"BoldIcon",
|
|
471
|
+
"BookmarkIcon",
|
|
472
|
+
"BuildingIcon",
|
|
473
|
+
"CalendarAddIcon",
|
|
474
|
+
"CalendarOffIcon",
|
|
475
|
+
"CalendarWeekIcon",
|
|
476
|
+
"CalendarIcon",
|
|
477
|
+
"ChatIcon",
|
|
478
|
+
"CheckIcon",
|
|
479
|
+
"ChevronDownIcon",
|
|
480
|
+
"ChevronLeftIcon",
|
|
481
|
+
"ChevronRightIcon",
|
|
482
|
+
"ChevronUpIcon",
|
|
483
|
+
"ClipboardIcon",
|
|
484
|
+
"ClockIcon",
|
|
485
|
+
"CodeIcon",
|
|
486
|
+
"CollapseIcon",
|
|
487
|
+
"CompassIcon",
|
|
488
|
+
"CopyIcon",
|
|
489
|
+
"DocumentIcon",
|
|
490
|
+
"DownloadIcon",
|
|
491
|
+
"DragIcon",
|
|
492
|
+
"EditIcon",
|
|
493
|
+
"EmojiIcon",
|
|
494
|
+
"ErrorIcon",
|
|
495
|
+
"ExpandIcon",
|
|
496
|
+
"ExportIcon",
|
|
497
|
+
"ExternalIcon",
|
|
498
|
+
"EyeOffIcon",
|
|
499
|
+
"EyeIcon",
|
|
500
|
+
"FileIcon",
|
|
501
|
+
"FilterIcon",
|
|
502
|
+
"FingerprintIcon",
|
|
503
|
+
"FolderIcon",
|
|
504
|
+
"HashIcon",
|
|
505
|
+
"HeartIcon",
|
|
506
|
+
"HelpIcon",
|
|
507
|
+
"HighlightIcon",
|
|
508
|
+
"HomeIcon",
|
|
509
|
+
"HrIcon",
|
|
510
|
+
"ImageIcon",
|
|
511
|
+
"InfoIcon",
|
|
512
|
+
"ItalicIcon",
|
|
513
|
+
"KeyIcon",
|
|
514
|
+
"LeaveIcon",
|
|
515
|
+
"LinkIcon",
|
|
516
|
+
"ListNumIcon",
|
|
517
|
+
"ListIcon",
|
|
518
|
+
"LocationIcon",
|
|
519
|
+
"LockIcon",
|
|
520
|
+
"LogoutIcon",
|
|
521
|
+
"MailIcon",
|
|
522
|
+
"MegaphoneIcon",
|
|
523
|
+
"MentionIcon",
|
|
524
|
+
"MicIcon",
|
|
525
|
+
"MoneyIcon",
|
|
526
|
+
"MoreIcon",
|
|
527
|
+
"OrgIcon",
|
|
528
|
+
"PayrollIcon",
|
|
529
|
+
"PhoneIcon",
|
|
530
|
+
"PinIcon",
|
|
531
|
+
"PlusIcon",
|
|
532
|
+
"ProjectIcon",
|
|
533
|
+
"QrIcon",
|
|
534
|
+
"QuoteIcon",
|
|
535
|
+
"RedoIcon",
|
|
536
|
+
"RefreshIcon",
|
|
537
|
+
"RepeatIcon",
|
|
538
|
+
"ReplyIcon",
|
|
539
|
+
"SearchIcon",
|
|
540
|
+
"SecurityIcon",
|
|
541
|
+
"SendIcon",
|
|
542
|
+
"SettingsIcon",
|
|
543
|
+
"ShareIcon",
|
|
544
|
+
"SidebarIcon",
|
|
545
|
+
"SortIcon",
|
|
546
|
+
"StarIcon",
|
|
547
|
+
"StatsIcon",
|
|
548
|
+
"StrikeIcon",
|
|
549
|
+
"SuccessIcon",
|
|
550
|
+
"SwitchIcon",
|
|
551
|
+
"TargetIcon",
|
|
552
|
+
"ThemeDarkIcon",
|
|
553
|
+
"ThemeLightIcon",
|
|
554
|
+
"ThreadIcon",
|
|
555
|
+
"TimelineIcon",
|
|
556
|
+
"TrashIcon",
|
|
557
|
+
"UnderlineIcon",
|
|
558
|
+
"UndoIcon",
|
|
559
|
+
"UploadIcon",
|
|
560
|
+
"UserIcon",
|
|
561
|
+
"UsersIcon",
|
|
562
|
+
"VacationIcon",
|
|
563
|
+
"VideoIcon",
|
|
564
|
+
"WarningIcon",
|
|
565
|
+
"XIcon"
|
|
566
|
+
];
|
|
567
|
+
|
|
568
|
+
exports.AiIcon = AiIcon;
|
|
569
|
+
exports.AlignCenterIcon = AlignCenterIcon;
|
|
570
|
+
exports.AlignLeftIcon = AlignLeftIcon;
|
|
571
|
+
exports.AlignRightIcon = AlignRightIcon;
|
|
572
|
+
exports.ApprovalIcon = ApprovalIcon;
|
|
573
|
+
exports.ArchiveIcon = ArchiveIcon;
|
|
574
|
+
exports.AttachIcon = AttachIcon;
|
|
575
|
+
exports.AwardIcon = AwardIcon;
|
|
576
|
+
exports.BellIcon = BellIcon;
|
|
577
|
+
exports.BillingIcon = BillingIcon;
|
|
578
|
+
exports.BoardIcon = BoardIcon;
|
|
579
|
+
exports.BoldIcon = BoldIcon;
|
|
580
|
+
exports.BookmarkIcon = BookmarkIcon;
|
|
581
|
+
exports.BuildingIcon = BuildingIcon;
|
|
582
|
+
exports.CalendarAddIcon = CalendarAddIcon;
|
|
583
|
+
exports.CalendarIcon = CalendarIcon;
|
|
584
|
+
exports.CalendarOffIcon = CalendarOffIcon;
|
|
585
|
+
exports.CalendarWeekIcon = CalendarWeekIcon;
|
|
586
|
+
exports.ChatIcon = ChatIcon;
|
|
587
|
+
exports.CheckIcon = CheckIcon;
|
|
588
|
+
exports.ChevronDownIcon = ChevronDownIcon;
|
|
589
|
+
exports.ChevronLeftIcon = ChevronLeftIcon;
|
|
590
|
+
exports.ChevronRightIcon = ChevronRightIcon;
|
|
591
|
+
exports.ChevronUpIcon = ChevronUpIcon;
|
|
592
|
+
exports.ClipboardIcon = ClipboardIcon;
|
|
593
|
+
exports.ClockIcon = ClockIcon;
|
|
594
|
+
exports.CodeIcon = CodeIcon;
|
|
595
|
+
exports.CollapseIcon = CollapseIcon;
|
|
596
|
+
exports.CompassIcon = CompassIcon;
|
|
597
|
+
exports.CopyIcon = CopyIcon;
|
|
598
|
+
exports.DocumentIcon = DocumentIcon;
|
|
599
|
+
exports.DownloadIcon = DownloadIcon;
|
|
600
|
+
exports.DragIcon = DragIcon;
|
|
601
|
+
exports.EditIcon = EditIcon;
|
|
602
|
+
exports.EmojiIcon = EmojiIcon;
|
|
603
|
+
exports.ErrorIcon = ErrorIcon;
|
|
604
|
+
exports.ExpandIcon = ExpandIcon;
|
|
605
|
+
exports.ExportIcon = ExportIcon;
|
|
606
|
+
exports.ExternalIcon = ExternalIcon;
|
|
607
|
+
exports.EyeIcon = EyeIcon;
|
|
608
|
+
exports.EyeOffIcon = EyeOffIcon;
|
|
609
|
+
exports.FileIcon = FileIcon;
|
|
610
|
+
exports.FilterIcon = FilterIcon;
|
|
611
|
+
exports.FingerprintIcon = FingerprintIcon;
|
|
612
|
+
exports.FolderIcon = FolderIcon;
|
|
613
|
+
exports.HashIcon = HashIcon;
|
|
614
|
+
exports.HeartIcon = HeartIcon;
|
|
615
|
+
exports.HelpIcon = HelpIcon;
|
|
616
|
+
exports.HighlightIcon = HighlightIcon;
|
|
617
|
+
exports.HomeIcon = HomeIcon;
|
|
618
|
+
exports.HrIcon = HrIcon;
|
|
619
|
+
exports.ICON_NAMES = ICON_NAMES;
|
|
620
|
+
exports.IconBase = IconBase;
|
|
621
|
+
exports.ImageIcon = ImageIcon;
|
|
622
|
+
exports.InfoIcon = InfoIcon;
|
|
623
|
+
exports.ItalicIcon = ItalicIcon;
|
|
624
|
+
exports.KeyIcon = KeyIcon;
|
|
625
|
+
exports.LeaveIcon = LeaveIcon;
|
|
626
|
+
exports.LinkIcon = LinkIcon;
|
|
627
|
+
exports.ListIcon = ListIcon;
|
|
628
|
+
exports.ListNumIcon = ListNumIcon;
|
|
629
|
+
exports.LocationIcon = LocationIcon;
|
|
630
|
+
exports.LockIcon = LockIcon;
|
|
631
|
+
exports.LogoutIcon = LogoutIcon;
|
|
632
|
+
exports.MailIcon = MailIcon;
|
|
633
|
+
exports.MegaphoneIcon = MegaphoneIcon;
|
|
634
|
+
exports.MentionIcon = MentionIcon;
|
|
635
|
+
exports.MicIcon = MicIcon;
|
|
636
|
+
exports.MoneyIcon = MoneyIcon;
|
|
637
|
+
exports.MoreIcon = MoreIcon;
|
|
638
|
+
exports.OrgIcon = OrgIcon;
|
|
639
|
+
exports.PayrollIcon = PayrollIcon;
|
|
640
|
+
exports.PhoneIcon = PhoneIcon;
|
|
641
|
+
exports.PinIcon = PinIcon;
|
|
642
|
+
exports.PlusIcon = PlusIcon;
|
|
643
|
+
exports.ProjectIcon = ProjectIcon;
|
|
644
|
+
exports.QrIcon = QrIcon;
|
|
645
|
+
exports.QuoteIcon = QuoteIcon;
|
|
646
|
+
exports.RedoIcon = RedoIcon;
|
|
647
|
+
exports.RefreshIcon = RefreshIcon;
|
|
648
|
+
exports.RepeatIcon = RepeatIcon;
|
|
649
|
+
exports.ReplyIcon = ReplyIcon;
|
|
650
|
+
exports.SearchIcon = SearchIcon;
|
|
651
|
+
exports.SecurityIcon = SecurityIcon;
|
|
652
|
+
exports.SendIcon = SendIcon;
|
|
653
|
+
exports.SettingsIcon = SettingsIcon;
|
|
654
|
+
exports.ShareIcon = ShareIcon;
|
|
655
|
+
exports.SidebarIcon = SidebarIcon;
|
|
656
|
+
exports.SortIcon = SortIcon;
|
|
657
|
+
exports.StarIcon = StarIcon;
|
|
658
|
+
exports.StatsIcon = StatsIcon;
|
|
659
|
+
exports.StrikeIcon = StrikeIcon;
|
|
660
|
+
exports.SuccessIcon = SuccessIcon;
|
|
661
|
+
exports.SwitchIcon = SwitchIcon;
|
|
662
|
+
exports.TargetIcon = TargetIcon;
|
|
663
|
+
exports.ThemeDarkIcon = ThemeDarkIcon;
|
|
664
|
+
exports.ThemeLightIcon = ThemeLightIcon;
|
|
665
|
+
exports.ThreadIcon = ThreadIcon;
|
|
666
|
+
exports.TimelineIcon = TimelineIcon;
|
|
667
|
+
exports.TrashIcon = TrashIcon;
|
|
668
|
+
exports.UnderlineIcon = UnderlineIcon;
|
|
669
|
+
exports.UndoIcon = UndoIcon;
|
|
670
|
+
exports.UploadIcon = UploadIcon;
|
|
671
|
+
exports.UserIcon = UserIcon;
|
|
672
|
+
exports.UsersIcon = UsersIcon;
|
|
673
|
+
exports.VacationIcon = VacationIcon;
|
|
674
|
+
exports.VideoIcon = VideoIcon;
|
|
675
|
+
exports.WarningIcon = WarningIcon;
|
|
676
|
+
exports.XIcon = XIcon;
|
|
677
|
+
//# sourceMappingURL=index.js.map
|
|
678
|
+
//# sourceMappingURL=index.js.map
|