@giddaa-housing/ui 3.0.1 → 3.2.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/css/generated/shared.css +1 -1
- package/css/giddaa.css +173 -2
- package/css/preset.css +8 -1
- package/css/theme.css +4 -1
- package/dist/accordion.js +2 -2
- package/dist/activity-timeline.js +5 -5
- package/dist/alert.js +1 -1
- package/dist/auth-layout.js +18 -18
- package/dist/bar-chart.d.ts +1 -1
- package/dist/breadcrumb.js +3 -3
- package/dist/bullet-chart.d.ts +1 -1
- package/dist/button-group.d.ts +1 -1
- package/dist/button.js +2 -2
- package/dist/calendar.js +3 -3
- package/dist/call-card.js +1 -1
- package/dist/carousel.d.ts +1 -1
- package/dist/carousel.js +3 -3
- package/dist/chart.d.ts +1 -1
- package/dist/chart.js +1 -1
- package/dist/chat.js +1 -1
- package/dist/checkbox.js +2 -2
- package/dist/combobox.d.ts +1 -1
- package/dist/combobox.js +6 -6
- package/dist/cta.js +3 -3
- package/dist/currency-selector.d.ts +10 -8
- package/dist/currency-selector.js +247 -28
- package/dist/data-table.js +2 -2
- package/dist/date-picker.js +6 -6
- package/dist/dialog.js +2 -2
- package/dist/dropdown-menu.d.ts +1 -1
- package/dist/dropdown-menu.js +20 -20
- package/dist/dropzone.js +1 -1
- package/dist/editorial-card.d.ts +20 -11
- package/dist/editorial-card.js +67 -2
- package/dist/file-upload.js +1 -1
- package/dist/filter.js +1 -1
- package/dist/footer.d.ts +4 -2
- package/dist/footer.js +38 -34
- package/dist/funnel-chart.d.ts +1 -1
- package/dist/heatmap-chart.d.ts +1 -1
- package/dist/icons.d.ts +93 -0
- package/dist/icons.js +905 -0
- package/dist/infinite-scroll.js +1 -1
- package/dist/input-group.js +4 -5
- package/dist/input-otp.js +2 -2
- package/dist/input-size-context.js +4 -2
- package/dist/input.js +1 -1
- package/dist/kpi-card.js +1 -1
- package/dist/line-chart.d.ts +1 -1
- package/dist/mask-input.d.ts +61 -0
- package/dist/mask-input.js +0 -0
- package/dist/match.js +1 -1
- package/dist/media-gallery-hero.js +1 -1
- package/dist/media-player.js +59 -48
- package/dist/message.js +1 -1
- package/dist/mobile-sidebar.d.ts +57 -0
- package/dist/mobile-sidebar.js +196 -0
- package/dist/multi-step-form.js +2 -2
- package/dist/number-input.d.ts +1 -1
- package/dist/number-input.js +3 -3
- package/dist/pagination.js +4 -4
- package/dist/password-input.js +1 -1
- package/dist/phone-input.d.ts +1 -1
- package/dist/phone-input.js +4 -4
- package/dist/photo-gallery.js +3 -3
- package/dist/pie-chart.d.ts +1 -1
- package/dist/popover.d.ts +1 -1
- package/dist/price-tag.js +1 -1
- package/dist/radar-chart.d.ts +1 -1
- package/dist/rich-text-editor.d.ts +1 -1
- package/dist/rich-text-editor.js +4 -4
- package/dist/scatter-chart.d.ts +1 -1
- package/dist/search-input.js +1 -1
- package/dist/select.d.ts +1 -1
- package/dist/select.js +6 -6
- package/dist/sheet.js +2 -2
- package/dist/sidebar.js +1 -1
- package/dist/{size-context-D4mYvcg8.d.ts → size-context-BX6kAdVj.d.ts} +2 -1
- package/dist/size-context.d.ts +2 -2
- package/dist/size-context.js +5 -2
- package/dist/sparkline.d.ts +1 -1
- package/dist/stepper.js +2 -2
- package/dist/styles.css +681 -128
- package/dist/table.js +2 -2
- package/dist/tabs.d.ts +1 -1
- package/dist/tag.d.ts +1 -1
- package/dist/tag.js +1 -1
- package/dist/testimonial-block.js +1 -1
- package/dist/theme-switcher.d.ts +31 -0
- package/dist/theme-switcher.js +78 -0
- package/dist/time-picker.js +2 -2
- package/dist/toast.d.ts +38 -10
- package/dist/toast.js +55 -52
- package/dist/top-navbar.d.ts +100 -0
- package/dist/top-navbar.js +295 -0
- package/dist/tree-map.d.ts +1 -1
- package/dist/video-player-dialog.d.ts +57 -0
- package/dist/video-player-dialog.js +188 -0
- package/dist/waterfall-chart.d.ts +1 -1
- package/package.json +25 -2
package/dist/icons.js
ADDED
|
@@ -0,0 +1,905 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
//#region src/icons.tsx
|
|
3
|
+
/**
|
|
4
|
+
* Bare SVG frame shared by every glyph. Exported so apps can draw a one-off
|
|
5
|
+
* icon that inherits the same sizing, stroke, and colour behaviour.
|
|
6
|
+
*/
|
|
7
|
+
function Icon({ name, size = 24, strokeWidth = 2, children, ...props }) {
|
|
8
|
+
const labelled = props["aria-label"] !== void 0 || props["aria-labelledby"] !== void 0;
|
|
9
|
+
return /* @__PURE__ */ jsx("svg", {
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11
|
+
"data-icon": name,
|
|
12
|
+
width: size,
|
|
13
|
+
height: size,
|
|
14
|
+
viewBox: "0 0 24 24",
|
|
15
|
+
fill: "none",
|
|
16
|
+
stroke: "currentColor",
|
|
17
|
+
strokeWidth,
|
|
18
|
+
strokeLinecap: "round",
|
|
19
|
+
strokeLinejoin: "round",
|
|
20
|
+
"aria-hidden": labelled ? void 0 : true,
|
|
21
|
+
role: labelled ? "img" : void 0,
|
|
22
|
+
...props,
|
|
23
|
+
children
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
function AlignCenter(props) {
|
|
27
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
28
|
+
name: "align-center",
|
|
29
|
+
...props,
|
|
30
|
+
children: [
|
|
31
|
+
/* @__PURE__ */ jsx("path", { d: "M21 5H3" }),
|
|
32
|
+
/* @__PURE__ */ jsx("path", { d: "M17 12H7" }),
|
|
33
|
+
/* @__PURE__ */ jsx("path", { d: "M19 19H5" })
|
|
34
|
+
]
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
function AlignJustify(props) {
|
|
38
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
39
|
+
name: "align-justify",
|
|
40
|
+
...props,
|
|
41
|
+
children: [
|
|
42
|
+
/* @__PURE__ */ jsx("path", { d: "M3 5h18" }),
|
|
43
|
+
/* @__PURE__ */ jsx("path", { d: "M3 12h18" }),
|
|
44
|
+
/* @__PURE__ */ jsx("path", { d: "M3 19h18" })
|
|
45
|
+
]
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
function AlignLeft(props) {
|
|
49
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
50
|
+
name: "align-left",
|
|
51
|
+
...props,
|
|
52
|
+
children: [
|
|
53
|
+
/* @__PURE__ */ jsx("path", { d: "M21 5H3" }),
|
|
54
|
+
/* @__PURE__ */ jsx("path", { d: "M15 12H3" }),
|
|
55
|
+
/* @__PURE__ */ jsx("path", { d: "M17 19H3" })
|
|
56
|
+
]
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
function AlignRight(props) {
|
|
60
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
61
|
+
name: "align-right",
|
|
62
|
+
...props,
|
|
63
|
+
children: [
|
|
64
|
+
/* @__PURE__ */ jsx("path", { d: "M21 5H3" }),
|
|
65
|
+
/* @__PURE__ */ jsx("path", { d: "M21 12H9" }),
|
|
66
|
+
/* @__PURE__ */ jsx("path", { d: "M21 19H7" })
|
|
67
|
+
]
|
|
68
|
+
});
|
|
69
|
+
}
|
|
70
|
+
function ArrowDown(props) {
|
|
71
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
72
|
+
name: "arrow-down",
|
|
73
|
+
...props,
|
|
74
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M12 5v14" }), /* @__PURE__ */ jsx("path", { d: "m19 12-7 7-7-7" })]
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
function ArrowRight(props) {
|
|
78
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
79
|
+
name: "arrow-right",
|
|
80
|
+
...props,
|
|
81
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M5 12h14" }), /* @__PURE__ */ jsx("path", { d: "m12 5 7 7-7 7" })]
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
function ArrowUp(props) {
|
|
85
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
86
|
+
name: "arrow-up",
|
|
87
|
+
...props,
|
|
88
|
+
children: [/* @__PURE__ */ jsx("path", { d: "m5 12 7-7 7 7" }), /* @__PURE__ */ jsx("path", { d: "M12 19V5" })]
|
|
89
|
+
});
|
|
90
|
+
}
|
|
91
|
+
function ArrowUpRight(props) {
|
|
92
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
93
|
+
name: "arrow-up-right",
|
|
94
|
+
...props,
|
|
95
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M7 7h10v10" }), /* @__PURE__ */ jsx("path", { d: "M7 17 17 7" })]
|
|
96
|
+
});
|
|
97
|
+
}
|
|
98
|
+
function Baseline(props) {
|
|
99
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
100
|
+
name: "baseline",
|
|
101
|
+
...props,
|
|
102
|
+
children: [
|
|
103
|
+
/* @__PURE__ */ jsx("path", { d: "M4 20h16" }),
|
|
104
|
+
/* @__PURE__ */ jsx("path", { d: "m6 16 6-12 6 12" }),
|
|
105
|
+
/* @__PURE__ */ jsx("path", { d: "M8 12h8" })
|
|
106
|
+
]
|
|
107
|
+
});
|
|
108
|
+
}
|
|
109
|
+
function Bold(props) {
|
|
110
|
+
return /* @__PURE__ */ jsx(Icon, {
|
|
111
|
+
name: "bold",
|
|
112
|
+
...props,
|
|
113
|
+
children: /* @__PURE__ */ 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" })
|
|
114
|
+
});
|
|
115
|
+
}
|
|
116
|
+
function Calendar(props) {
|
|
117
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
118
|
+
name: "calendar",
|
|
119
|
+
...props,
|
|
120
|
+
children: [
|
|
121
|
+
/* @__PURE__ */ jsx("path", { d: "M8 2v4" }),
|
|
122
|
+
/* @__PURE__ */ jsx("path", { d: "M16 2v4" }),
|
|
123
|
+
/* @__PURE__ */ jsx("rect", {
|
|
124
|
+
x: "3",
|
|
125
|
+
y: "4",
|
|
126
|
+
width: "18",
|
|
127
|
+
height: "18",
|
|
128
|
+
rx: "2"
|
|
129
|
+
}),
|
|
130
|
+
/* @__PURE__ */ jsx("path", { d: "M3 10h18" })
|
|
131
|
+
]
|
|
132
|
+
});
|
|
133
|
+
}
|
|
134
|
+
function Captions(props) {
|
|
135
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
136
|
+
name: "captions",
|
|
137
|
+
...props,
|
|
138
|
+
children: [/* @__PURE__ */ jsx("rect", {
|
|
139
|
+
x: "3",
|
|
140
|
+
y: "5",
|
|
141
|
+
width: "18",
|
|
142
|
+
height: "14",
|
|
143
|
+
rx: "2",
|
|
144
|
+
ry: "2"
|
|
145
|
+
}), /* @__PURE__ */ jsx("path", { d: "M7 15h4M15 15h2M7 11h2M13 11h4" })]
|
|
146
|
+
});
|
|
147
|
+
}
|
|
148
|
+
function CaptionsOff(props) {
|
|
149
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
150
|
+
name: "captions-off",
|
|
151
|
+
...props,
|
|
152
|
+
children: [
|
|
153
|
+
/* @__PURE__ */ jsx("path", { d: "M10.5 5H19a2 2 0 0 1 2 2v8.5" }),
|
|
154
|
+
/* @__PURE__ */ jsx("path", { d: "M17 11h-.5" }),
|
|
155
|
+
/* @__PURE__ */ jsx("path", { d: "M19 19H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2" }),
|
|
156
|
+
/* @__PURE__ */ jsx("path", { d: "m2 2 20 20" }),
|
|
157
|
+
/* @__PURE__ */ jsx("path", { d: "M7 11h4" }),
|
|
158
|
+
/* @__PURE__ */ jsx("path", { d: "M7 15h2.5" })
|
|
159
|
+
]
|
|
160
|
+
});
|
|
161
|
+
}
|
|
162
|
+
function Check(props) {
|
|
163
|
+
return /* @__PURE__ */ jsx(Icon, {
|
|
164
|
+
name: "check",
|
|
165
|
+
...props,
|
|
166
|
+
children: /* @__PURE__ */ jsx("path", { d: "M20 6 9 17l-5-5" })
|
|
167
|
+
});
|
|
168
|
+
}
|
|
169
|
+
function CheckCheck(props) {
|
|
170
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
171
|
+
name: "check-check",
|
|
172
|
+
...props,
|
|
173
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M18 6 7 17l-5-5" }), /* @__PURE__ */ jsx("path", { d: "m22 10-7.5 7.5L13 16" })]
|
|
174
|
+
});
|
|
175
|
+
}
|
|
176
|
+
function ChevronDown(props) {
|
|
177
|
+
return /* @__PURE__ */ jsx(Icon, {
|
|
178
|
+
name: "chevron-down",
|
|
179
|
+
...props,
|
|
180
|
+
children: /* @__PURE__ */ jsx("path", { d: "m6 9 6 6 6-6" })
|
|
181
|
+
});
|
|
182
|
+
}
|
|
183
|
+
function ChevronLeft(props) {
|
|
184
|
+
return /* @__PURE__ */ jsx(Icon, {
|
|
185
|
+
name: "chevron-left",
|
|
186
|
+
...props,
|
|
187
|
+
children: /* @__PURE__ */ jsx("path", { d: "m15 18-6-6 6-6" })
|
|
188
|
+
});
|
|
189
|
+
}
|
|
190
|
+
function ChevronRight(props) {
|
|
191
|
+
return /* @__PURE__ */ jsx(Icon, {
|
|
192
|
+
name: "chevron-right",
|
|
193
|
+
...props,
|
|
194
|
+
children: /* @__PURE__ */ jsx("path", { d: "m9 18 6-6-6-6" })
|
|
195
|
+
});
|
|
196
|
+
}
|
|
197
|
+
function ChevronUp(props) {
|
|
198
|
+
return /* @__PURE__ */ jsx(Icon, {
|
|
199
|
+
name: "chevron-up",
|
|
200
|
+
...props,
|
|
201
|
+
children: /* @__PURE__ */ jsx("path", { d: "m18 15-6-6-6 6" })
|
|
202
|
+
});
|
|
203
|
+
}
|
|
204
|
+
function ChevronsUpDown(props) {
|
|
205
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
206
|
+
name: "chevrons-up-down",
|
|
207
|
+
...props,
|
|
208
|
+
children: [/* @__PURE__ */ jsx("path", { d: "m7 15 5 5 5-5" }), /* @__PURE__ */ jsx("path", { d: "m7 9 5-5 5 5" })]
|
|
209
|
+
});
|
|
210
|
+
}
|
|
211
|
+
function Clock(props) {
|
|
212
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
213
|
+
name: "clock",
|
|
214
|
+
...props,
|
|
215
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M12 6v6l4 2" }), /* @__PURE__ */ jsx("circle", {
|
|
216
|
+
cx: "12",
|
|
217
|
+
cy: "12",
|
|
218
|
+
r: "10"
|
|
219
|
+
})]
|
|
220
|
+
});
|
|
221
|
+
}
|
|
222
|
+
function Code2(props) {
|
|
223
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
224
|
+
name: "code-2",
|
|
225
|
+
...props,
|
|
226
|
+
children: [
|
|
227
|
+
/* @__PURE__ */ jsx("path", { d: "m18 16 4-4-4-4" }),
|
|
228
|
+
/* @__PURE__ */ jsx("path", { d: "m6 8-4 4 4 4" }),
|
|
229
|
+
/* @__PURE__ */ jsx("path", { d: "m14.5 4-5 16" })
|
|
230
|
+
]
|
|
231
|
+
});
|
|
232
|
+
}
|
|
233
|
+
function Eye(props) {
|
|
234
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
235
|
+
name: "eye",
|
|
236
|
+
...props,
|
|
237
|
+
children: [/* @__PURE__ */ 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" }), /* @__PURE__ */ jsx("circle", {
|
|
238
|
+
cx: "12",
|
|
239
|
+
cy: "12",
|
|
240
|
+
r: "3"
|
|
241
|
+
})]
|
|
242
|
+
});
|
|
243
|
+
}
|
|
244
|
+
function EyeOff(props) {
|
|
245
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
246
|
+
name: "eye-off",
|
|
247
|
+
...props,
|
|
248
|
+
children: [
|
|
249
|
+
/* @__PURE__ */ 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" }),
|
|
250
|
+
/* @__PURE__ */ jsx("path", { d: "M14.084 14.158a3 3 0 0 1-4.242-4.242" }),
|
|
251
|
+
/* @__PURE__ */ 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" }),
|
|
252
|
+
/* @__PURE__ */ jsx("path", { d: "m2 2 20 20" })
|
|
253
|
+
]
|
|
254
|
+
});
|
|
255
|
+
}
|
|
256
|
+
function File(props) {
|
|
257
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
258
|
+
name: "file",
|
|
259
|
+
...props,
|
|
260
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }), /* @__PURE__ */ jsx("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" })]
|
|
261
|
+
});
|
|
262
|
+
}
|
|
263
|
+
function FileText(props) {
|
|
264
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
265
|
+
name: "file-text",
|
|
266
|
+
...props,
|
|
267
|
+
children: [
|
|
268
|
+
/* @__PURE__ */ jsx("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
|
|
269
|
+
/* @__PURE__ */ jsx("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }),
|
|
270
|
+
/* @__PURE__ */ jsx("path", { d: "M10 9H8" }),
|
|
271
|
+
/* @__PURE__ */ jsx("path", { d: "M16 13H8" }),
|
|
272
|
+
/* @__PURE__ */ jsx("path", { d: "M16 17H8" })
|
|
273
|
+
]
|
|
274
|
+
});
|
|
275
|
+
}
|
|
276
|
+
function Fullscreen(props) {
|
|
277
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
278
|
+
name: "fullscreen",
|
|
279
|
+
...props,
|
|
280
|
+
children: [
|
|
281
|
+
/* @__PURE__ */ jsx("path", { d: "M3 7V5a2 2 0 0 1 2-2h2" }),
|
|
282
|
+
/* @__PURE__ */ jsx("path", { d: "M17 3h2a2 2 0 0 1 2 2v2" }),
|
|
283
|
+
/* @__PURE__ */ jsx("path", { d: "M21 17v2a2 2 0 0 1-2 2h-2" }),
|
|
284
|
+
/* @__PURE__ */ jsx("path", { d: "M7 21H5a2 2 0 0 1-2-2v-2" }),
|
|
285
|
+
/* @__PURE__ */ jsx("rect", {
|
|
286
|
+
x: "7",
|
|
287
|
+
y: "8",
|
|
288
|
+
width: "10",
|
|
289
|
+
height: "8",
|
|
290
|
+
rx: "1"
|
|
291
|
+
})
|
|
292
|
+
]
|
|
293
|
+
});
|
|
294
|
+
}
|
|
295
|
+
function Image(props) {
|
|
296
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
297
|
+
name: "image",
|
|
298
|
+
...props,
|
|
299
|
+
children: [
|
|
300
|
+
/* @__PURE__ */ jsx("rect", {
|
|
301
|
+
x: "3",
|
|
302
|
+
y: "3",
|
|
303
|
+
width: "18",
|
|
304
|
+
height: "18",
|
|
305
|
+
rx: "2",
|
|
306
|
+
ry: "2"
|
|
307
|
+
}),
|
|
308
|
+
/* @__PURE__ */ jsx("circle", {
|
|
309
|
+
cx: "9",
|
|
310
|
+
cy: "9",
|
|
311
|
+
r: "2"
|
|
312
|
+
}),
|
|
313
|
+
/* @__PURE__ */ jsx("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
|
|
314
|
+
]
|
|
315
|
+
});
|
|
316
|
+
}
|
|
317
|
+
function Info(props) {
|
|
318
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
319
|
+
name: "info",
|
|
320
|
+
...props,
|
|
321
|
+
children: [
|
|
322
|
+
/* @__PURE__ */ jsx("circle", {
|
|
323
|
+
cx: "12",
|
|
324
|
+
cy: "12",
|
|
325
|
+
r: "10"
|
|
326
|
+
}),
|
|
327
|
+
/* @__PURE__ */ jsx("path", { d: "M12 16v-4" }),
|
|
328
|
+
/* @__PURE__ */ jsx("path", { d: "M12 8h.01" })
|
|
329
|
+
]
|
|
330
|
+
});
|
|
331
|
+
}
|
|
332
|
+
function Italic(props) {
|
|
333
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
334
|
+
name: "italic",
|
|
335
|
+
...props,
|
|
336
|
+
children: [
|
|
337
|
+
/* @__PURE__ */ jsx("line", {
|
|
338
|
+
x1: "19",
|
|
339
|
+
x2: "10",
|
|
340
|
+
y1: "4",
|
|
341
|
+
y2: "4"
|
|
342
|
+
}),
|
|
343
|
+
/* @__PURE__ */ jsx("line", {
|
|
344
|
+
x1: "14",
|
|
345
|
+
x2: "5",
|
|
346
|
+
y1: "20",
|
|
347
|
+
y2: "20"
|
|
348
|
+
}),
|
|
349
|
+
/* @__PURE__ */ jsx("line", {
|
|
350
|
+
x1: "15",
|
|
351
|
+
x2: "9",
|
|
352
|
+
y1: "4",
|
|
353
|
+
y2: "20"
|
|
354
|
+
})
|
|
355
|
+
]
|
|
356
|
+
});
|
|
357
|
+
}
|
|
358
|
+
function Link2(props) {
|
|
359
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
360
|
+
name: "link-2",
|
|
361
|
+
...props,
|
|
362
|
+
children: [
|
|
363
|
+
/* @__PURE__ */ jsx("path", { d: "M9 17H7A5 5 0 0 1 7 7h2" }),
|
|
364
|
+
/* @__PURE__ */ jsx("path", { d: "M15 7h2a5 5 0 1 1 0 10h-2" }),
|
|
365
|
+
/* @__PURE__ */ jsx("line", {
|
|
366
|
+
x1: "8",
|
|
367
|
+
x2: "16",
|
|
368
|
+
y1: "12",
|
|
369
|
+
y2: "12"
|
|
370
|
+
})
|
|
371
|
+
]
|
|
372
|
+
});
|
|
373
|
+
}
|
|
374
|
+
function List(props) {
|
|
375
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
376
|
+
name: "list",
|
|
377
|
+
...props,
|
|
378
|
+
children: [
|
|
379
|
+
/* @__PURE__ */ jsx("path", { d: "M3 5h.01" }),
|
|
380
|
+
/* @__PURE__ */ jsx("path", { d: "M3 12h.01" }),
|
|
381
|
+
/* @__PURE__ */ jsx("path", { d: "M3 19h.01" }),
|
|
382
|
+
/* @__PURE__ */ jsx("path", { d: "M8 5h13" }),
|
|
383
|
+
/* @__PURE__ */ jsx("path", { d: "M8 12h13" }),
|
|
384
|
+
/* @__PURE__ */ jsx("path", { d: "M8 19h13" })
|
|
385
|
+
]
|
|
386
|
+
});
|
|
387
|
+
}
|
|
388
|
+
function ListOrdered(props) {
|
|
389
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
390
|
+
name: "list-ordered",
|
|
391
|
+
...props,
|
|
392
|
+
children: [
|
|
393
|
+
/* @__PURE__ */ jsx("path", { d: "M11 5h10" }),
|
|
394
|
+
/* @__PURE__ */ jsx("path", { d: "M11 12h10" }),
|
|
395
|
+
/* @__PURE__ */ jsx("path", { d: "M11 19h10" }),
|
|
396
|
+
/* @__PURE__ */ jsx("path", { d: "M4 4h1v5" }),
|
|
397
|
+
/* @__PURE__ */ jsx("path", { d: "M4 9h2" }),
|
|
398
|
+
/* @__PURE__ */ jsx("path", { d: "M6.5 20H3.4c0-1 2.6-1.925 2.6-3.5a1.5 1.5 0 0 0-2.6-1.02" })
|
|
399
|
+
]
|
|
400
|
+
});
|
|
401
|
+
}
|
|
402
|
+
function ListVideo(props) {
|
|
403
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
404
|
+
name: "list-video",
|
|
405
|
+
...props,
|
|
406
|
+
children: [
|
|
407
|
+
/* @__PURE__ */ jsx("path", { d: "M21 5H3" }),
|
|
408
|
+
/* @__PURE__ */ jsx("path", { d: "M10 12H3" }),
|
|
409
|
+
/* @__PURE__ */ jsx("path", { d: "M10 19H3" }),
|
|
410
|
+
/* @__PURE__ */ jsx("path", { d: "M15 12.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z" })
|
|
411
|
+
]
|
|
412
|
+
});
|
|
413
|
+
}
|
|
414
|
+
function Loader(props) {
|
|
415
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
416
|
+
name: "loader",
|
|
417
|
+
...props,
|
|
418
|
+
children: [
|
|
419
|
+
/* @__PURE__ */ jsx("path", { d: "M12 2v4" }),
|
|
420
|
+
/* @__PURE__ */ jsx("path", { d: "m16.2 7.8 2.9-2.9" }),
|
|
421
|
+
/* @__PURE__ */ jsx("path", { d: "M18 12h4" }),
|
|
422
|
+
/* @__PURE__ */ jsx("path", { d: "m16.2 16.2 2.9 2.9" }),
|
|
423
|
+
/* @__PURE__ */ jsx("path", { d: "M12 18v4" }),
|
|
424
|
+
/* @__PURE__ */ jsx("path", { d: "m4.9 19.1 2.9-2.9" }),
|
|
425
|
+
/* @__PURE__ */ jsx("path", { d: "M2 12h4" }),
|
|
426
|
+
/* @__PURE__ */ jsx("path", { d: "m4.9 4.9 2.9 2.9" })
|
|
427
|
+
]
|
|
428
|
+
});
|
|
429
|
+
}
|
|
430
|
+
function Loader2(props) {
|
|
431
|
+
return /* @__PURE__ */ jsx(Icon, {
|
|
432
|
+
name: "loader-2",
|
|
433
|
+
...props,
|
|
434
|
+
children: /* @__PURE__ */ jsx("path", { d: "M21 12a9 9 0 1 1-6.219-8.56" })
|
|
435
|
+
});
|
|
436
|
+
}
|
|
437
|
+
function Maximize(props) {
|
|
438
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
439
|
+
name: "maximize",
|
|
440
|
+
...props,
|
|
441
|
+
children: [
|
|
442
|
+
/* @__PURE__ */ jsx("path", { d: "M8 3H5a2 2 0 0 0-2 2v3" }),
|
|
443
|
+
/* @__PURE__ */ jsx("path", { d: "M21 8V5a2 2 0 0 0-2-2h-3" }),
|
|
444
|
+
/* @__PURE__ */ jsx("path", { d: "M3 16v3a2 2 0 0 0 2 2h3" }),
|
|
445
|
+
/* @__PURE__ */ jsx("path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" })
|
|
446
|
+
]
|
|
447
|
+
});
|
|
448
|
+
}
|
|
449
|
+
function Maximize2(props) {
|
|
450
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
451
|
+
name: "maximize-2",
|
|
452
|
+
...props,
|
|
453
|
+
children: [
|
|
454
|
+
/* @__PURE__ */ jsx("path", { d: "M15 3h6v6" }),
|
|
455
|
+
/* @__PURE__ */ jsx("path", { d: "m21 3-7 7" }),
|
|
456
|
+
/* @__PURE__ */ jsx("path", { d: "m3 21 7-7" }),
|
|
457
|
+
/* @__PURE__ */ jsx("path", { d: "M9 21H3v-6" })
|
|
458
|
+
]
|
|
459
|
+
});
|
|
460
|
+
}
|
|
461
|
+
function Menu(props) {
|
|
462
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
463
|
+
name: "menu",
|
|
464
|
+
...props,
|
|
465
|
+
children: [
|
|
466
|
+
/* @__PURE__ */ jsx("path", { d: "M4 5h16" }),
|
|
467
|
+
/* @__PURE__ */ jsx("path", { d: "M4 12h16" }),
|
|
468
|
+
/* @__PURE__ */ jsx("path", { d: "M4 19h16" })
|
|
469
|
+
]
|
|
470
|
+
});
|
|
471
|
+
}
|
|
472
|
+
function Mic(props) {
|
|
473
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
474
|
+
name: "mic",
|
|
475
|
+
...props,
|
|
476
|
+
children: [
|
|
477
|
+
/* @__PURE__ */ jsx("path", { d: "M12 19v3" }),
|
|
478
|
+
/* @__PURE__ */ jsx("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
|
|
479
|
+
/* @__PURE__ */ jsx("rect", {
|
|
480
|
+
x: "9",
|
|
481
|
+
y: "2",
|
|
482
|
+
width: "6",
|
|
483
|
+
height: "13",
|
|
484
|
+
rx: "3"
|
|
485
|
+
})
|
|
486
|
+
]
|
|
487
|
+
});
|
|
488
|
+
}
|
|
489
|
+
function MicOff(props) {
|
|
490
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
491
|
+
name: "mic-off",
|
|
492
|
+
...props,
|
|
493
|
+
children: [
|
|
494
|
+
/* @__PURE__ */ jsx("path", { d: "M12 19v3" }),
|
|
495
|
+
/* @__PURE__ */ jsx("path", { d: "M15 9.34V5a3 3 0 0 0-5.68-1.33" }),
|
|
496
|
+
/* @__PURE__ */ jsx("path", { d: "M16.95 16.95A7 7 0 0 1 5 12v-2" }),
|
|
497
|
+
/* @__PURE__ */ jsx("path", { d: "M18.89 13.23A7 7 0 0 0 19 12v-2" }),
|
|
498
|
+
/* @__PURE__ */ jsx("path", { d: "m2 2 20 20" }),
|
|
499
|
+
/* @__PURE__ */ jsx("path", { d: "M9 9v3a3 3 0 0 0 5.12 2.12" })
|
|
500
|
+
]
|
|
501
|
+
});
|
|
502
|
+
}
|
|
503
|
+
function Minimize(props) {
|
|
504
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
505
|
+
name: "minimize",
|
|
506
|
+
...props,
|
|
507
|
+
children: [
|
|
508
|
+
/* @__PURE__ */ jsx("path", { d: "M8 3v3a2 2 0 0 1-2 2H3" }),
|
|
509
|
+
/* @__PURE__ */ jsx("path", { d: "M21 8h-3a2 2 0 0 1-2-2V3" }),
|
|
510
|
+
/* @__PURE__ */ jsx("path", { d: "M3 16h3a2 2 0 0 1 2 2v3" }),
|
|
511
|
+
/* @__PURE__ */ jsx("path", { d: "M16 21v-3a2 2 0 0 1 2-2h3" })
|
|
512
|
+
]
|
|
513
|
+
});
|
|
514
|
+
}
|
|
515
|
+
function Minimize2(props) {
|
|
516
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
517
|
+
name: "minimize-2",
|
|
518
|
+
...props,
|
|
519
|
+
children: [
|
|
520
|
+
/* @__PURE__ */ jsx("path", { d: "m14 10 7-7" }),
|
|
521
|
+
/* @__PURE__ */ jsx("path", { d: "M20 10h-6V4" }),
|
|
522
|
+
/* @__PURE__ */ jsx("path", { d: "m3 21 7-7" }),
|
|
523
|
+
/* @__PURE__ */ jsx("path", { d: "M4 14h6v6" })
|
|
524
|
+
]
|
|
525
|
+
});
|
|
526
|
+
}
|
|
527
|
+
function Minus(props) {
|
|
528
|
+
return /* @__PURE__ */ jsx(Icon, {
|
|
529
|
+
name: "minus",
|
|
530
|
+
...props,
|
|
531
|
+
children: /* @__PURE__ */ jsx("path", { d: "M5 12h14" })
|
|
532
|
+
});
|
|
533
|
+
}
|
|
534
|
+
function Monitor(props) {
|
|
535
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
536
|
+
name: "monitor",
|
|
537
|
+
...props,
|
|
538
|
+
children: [
|
|
539
|
+
/* @__PURE__ */ jsx("rect", {
|
|
540
|
+
x: "2",
|
|
541
|
+
y: "3",
|
|
542
|
+
width: "20",
|
|
543
|
+
height: "14",
|
|
544
|
+
rx: "2"
|
|
545
|
+
}),
|
|
546
|
+
/* @__PURE__ */ jsx("line", {
|
|
547
|
+
x1: "8",
|
|
548
|
+
x2: "16",
|
|
549
|
+
y1: "21",
|
|
550
|
+
y2: "21"
|
|
551
|
+
}),
|
|
552
|
+
/* @__PURE__ */ jsx("line", {
|
|
553
|
+
x1: "12",
|
|
554
|
+
x2: "12",
|
|
555
|
+
y1: "17",
|
|
556
|
+
y2: "21"
|
|
557
|
+
})
|
|
558
|
+
]
|
|
559
|
+
});
|
|
560
|
+
}
|
|
561
|
+
function Moon(props) {
|
|
562
|
+
return /* @__PURE__ */ jsx(Icon, {
|
|
563
|
+
name: "moon",
|
|
564
|
+
...props,
|
|
565
|
+
children: /* @__PURE__ */ jsx("path", { d: "M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401" })
|
|
566
|
+
});
|
|
567
|
+
}
|
|
568
|
+
function MoreHorizontal(props) {
|
|
569
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
570
|
+
name: "more-horizontal",
|
|
571
|
+
...props,
|
|
572
|
+
children: [
|
|
573
|
+
/* @__PURE__ */ jsx("circle", {
|
|
574
|
+
cx: "12",
|
|
575
|
+
cy: "12",
|
|
576
|
+
r: "1"
|
|
577
|
+
}),
|
|
578
|
+
/* @__PURE__ */ jsx("circle", {
|
|
579
|
+
cx: "19",
|
|
580
|
+
cy: "12",
|
|
581
|
+
r: "1"
|
|
582
|
+
}),
|
|
583
|
+
/* @__PURE__ */ jsx("circle", {
|
|
584
|
+
cx: "5",
|
|
585
|
+
cy: "12",
|
|
586
|
+
r: "1"
|
|
587
|
+
})
|
|
588
|
+
]
|
|
589
|
+
});
|
|
590
|
+
}
|
|
591
|
+
function Pause(props) {
|
|
592
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
593
|
+
name: "pause",
|
|
594
|
+
...props,
|
|
595
|
+
children: [/* @__PURE__ */ jsx("rect", {
|
|
596
|
+
x: "14",
|
|
597
|
+
y: "3",
|
|
598
|
+
width: "5",
|
|
599
|
+
height: "18",
|
|
600
|
+
rx: "1"
|
|
601
|
+
}), /* @__PURE__ */ jsx("rect", {
|
|
602
|
+
x: "5",
|
|
603
|
+
y: "3",
|
|
604
|
+
width: "5",
|
|
605
|
+
height: "18",
|
|
606
|
+
rx: "1"
|
|
607
|
+
})]
|
|
608
|
+
});
|
|
609
|
+
}
|
|
610
|
+
function Phone(props) {
|
|
611
|
+
return /* @__PURE__ */ jsx(Icon, {
|
|
612
|
+
name: "phone",
|
|
613
|
+
...props,
|
|
614
|
+
children: /* @__PURE__ */ jsx("path", { d: "M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384" })
|
|
615
|
+
});
|
|
616
|
+
}
|
|
617
|
+
function PictureInPicture2(props) {
|
|
618
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
619
|
+
name: "picture-in-picture-2",
|
|
620
|
+
...props,
|
|
621
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M21 9V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h4" }), /* @__PURE__ */ jsx("rect", {
|
|
622
|
+
x: "12",
|
|
623
|
+
y: "13",
|
|
624
|
+
width: "10",
|
|
625
|
+
height: "7",
|
|
626
|
+
rx: "2"
|
|
627
|
+
})]
|
|
628
|
+
});
|
|
629
|
+
}
|
|
630
|
+
function Pin(props) {
|
|
631
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
632
|
+
name: "pin",
|
|
633
|
+
...props,
|
|
634
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M12 17v5" }), /* @__PURE__ */ 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" })]
|
|
635
|
+
});
|
|
636
|
+
}
|
|
637
|
+
function Play(props) {
|
|
638
|
+
return /* @__PURE__ */ jsx(Icon, {
|
|
639
|
+
name: "play",
|
|
640
|
+
...props,
|
|
641
|
+
children: /* @__PURE__ */ jsx("path", { d: "M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z" })
|
|
642
|
+
});
|
|
643
|
+
}
|
|
644
|
+
function Plus(props) {
|
|
645
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
646
|
+
name: "plus",
|
|
647
|
+
...props,
|
|
648
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M5 12h14" }), /* @__PURE__ */ jsx("path", { d: "M12 5v14" })]
|
|
649
|
+
});
|
|
650
|
+
}
|
|
651
|
+
function Quote(props) {
|
|
652
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
653
|
+
name: "quote",
|
|
654
|
+
...props,
|
|
655
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z" }), /* @__PURE__ */ jsx("path", { d: "M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z" })]
|
|
656
|
+
});
|
|
657
|
+
}
|
|
658
|
+
function Redo2(props) {
|
|
659
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
660
|
+
name: "redo-2",
|
|
661
|
+
...props,
|
|
662
|
+
children: [/* @__PURE__ */ jsx("path", { d: "m15 14 5-5-5-5" }), /* @__PURE__ */ jsx("path", { d: "M20 9H9.5A5.5 5.5 0 0 0 4 14.5A5.5 5.5 0 0 0 9.5 20H13" })]
|
|
663
|
+
});
|
|
664
|
+
}
|
|
665
|
+
function RefreshCcw(props) {
|
|
666
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
667
|
+
name: "refresh-ccw",
|
|
668
|
+
...props,
|
|
669
|
+
children: [
|
|
670
|
+
/* @__PURE__ */ jsx("path", { d: "M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" }),
|
|
671
|
+
/* @__PURE__ */ jsx("path", { d: "M3 3v5h5" }),
|
|
672
|
+
/* @__PURE__ */ jsx("path", { d: "M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16" }),
|
|
673
|
+
/* @__PURE__ */ jsx("path", { d: "M16 16h5v5" })
|
|
674
|
+
]
|
|
675
|
+
});
|
|
676
|
+
}
|
|
677
|
+
function Repeat2(props) {
|
|
678
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
679
|
+
name: "repeat-2",
|
|
680
|
+
...props,
|
|
681
|
+
children: [
|
|
682
|
+
/* @__PURE__ */ jsx("path", { d: "m2 9 3-3 3 3" }),
|
|
683
|
+
/* @__PURE__ */ jsx("path", { d: "M13 18H7a2 2 0 0 1-2-2V6" }),
|
|
684
|
+
/* @__PURE__ */ jsx("path", { d: "m22 15-3 3-3-3" }),
|
|
685
|
+
/* @__PURE__ */ jsx("path", { d: "M11 6h6a2 2 0 0 1 2 2v10" })
|
|
686
|
+
]
|
|
687
|
+
});
|
|
688
|
+
}
|
|
689
|
+
function RotateCcw(props) {
|
|
690
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
691
|
+
name: "rotate-ccw",
|
|
692
|
+
...props,
|
|
693
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" }), /* @__PURE__ */ jsx("path", { d: "M3 3v5h5" })]
|
|
694
|
+
});
|
|
695
|
+
}
|
|
696
|
+
function RotateCw(props) {
|
|
697
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
698
|
+
name: "rotate-cw",
|
|
699
|
+
...props,
|
|
700
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8" }), /* @__PURE__ */ jsx("path", { d: "M21 3v5h-5" })]
|
|
701
|
+
});
|
|
702
|
+
}
|
|
703
|
+
function Search(props) {
|
|
704
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
705
|
+
name: "search",
|
|
706
|
+
...props,
|
|
707
|
+
children: [/* @__PURE__ */ jsx("path", { d: "m21 21-4.34-4.34" }), /* @__PURE__ */ jsx("circle", {
|
|
708
|
+
cx: "11",
|
|
709
|
+
cy: "11",
|
|
710
|
+
r: "8"
|
|
711
|
+
})]
|
|
712
|
+
});
|
|
713
|
+
}
|
|
714
|
+
function SearchX(props) {
|
|
715
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
716
|
+
name: "search-x",
|
|
717
|
+
...props,
|
|
718
|
+
children: [
|
|
719
|
+
/* @__PURE__ */ jsx("path", { d: "m13.5 8.5-5 5" }),
|
|
720
|
+
/* @__PURE__ */ jsx("path", { d: "m8.5 8.5 5 5" }),
|
|
721
|
+
/* @__PURE__ */ jsx("circle", {
|
|
722
|
+
cx: "11",
|
|
723
|
+
cy: "11",
|
|
724
|
+
r: "8"
|
|
725
|
+
}),
|
|
726
|
+
/* @__PURE__ */ jsx("path", { d: "m21 21-4.3-4.3" })
|
|
727
|
+
]
|
|
728
|
+
});
|
|
729
|
+
}
|
|
730
|
+
function Send(props) {
|
|
731
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
732
|
+
name: "send",
|
|
733
|
+
...props,
|
|
734
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z" }), /* @__PURE__ */ jsx("path", { d: "m21.854 2.147-10.94 10.939" })]
|
|
735
|
+
});
|
|
736
|
+
}
|
|
737
|
+
function Settings(props) {
|
|
738
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
739
|
+
name: "settings",
|
|
740
|
+
...props,
|
|
741
|
+
children: [/* @__PURE__ */ 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" }), /* @__PURE__ */ jsx("circle", {
|
|
742
|
+
cx: "12",
|
|
743
|
+
cy: "12",
|
|
744
|
+
r: "3"
|
|
745
|
+
})]
|
|
746
|
+
});
|
|
747
|
+
}
|
|
748
|
+
function SlidersHorizontal(props) {
|
|
749
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
750
|
+
name: "sliders-horizontal",
|
|
751
|
+
...props,
|
|
752
|
+
children: [
|
|
753
|
+
/* @__PURE__ */ jsx("path", { d: "M10 5H3" }),
|
|
754
|
+
/* @__PURE__ */ jsx("path", { d: "M12 19H3" }),
|
|
755
|
+
/* @__PURE__ */ jsx("path", { d: "M14 3v4" }),
|
|
756
|
+
/* @__PURE__ */ jsx("path", { d: "M16 17v4" }),
|
|
757
|
+
/* @__PURE__ */ jsx("path", { d: "M21 12h-9" }),
|
|
758
|
+
/* @__PURE__ */ jsx("path", { d: "M21 19h-5" }),
|
|
759
|
+
/* @__PURE__ */ jsx("path", { d: "M21 5h-7" }),
|
|
760
|
+
/* @__PURE__ */ jsx("path", { d: "M8 10v4" }),
|
|
761
|
+
/* @__PURE__ */ jsx("path", { d: "M8 12H3" })
|
|
762
|
+
]
|
|
763
|
+
});
|
|
764
|
+
}
|
|
765
|
+
function Star(props) {
|
|
766
|
+
return /* @__PURE__ */ jsx(Icon, {
|
|
767
|
+
name: "star",
|
|
768
|
+
...props,
|
|
769
|
+
children: /* @__PURE__ */ 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" })
|
|
770
|
+
});
|
|
771
|
+
}
|
|
772
|
+
function Sun(props) {
|
|
773
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
774
|
+
name: "sun",
|
|
775
|
+
...props,
|
|
776
|
+
children: [
|
|
777
|
+
/* @__PURE__ */ jsx("circle", {
|
|
778
|
+
cx: "12",
|
|
779
|
+
cy: "12",
|
|
780
|
+
r: "4"
|
|
781
|
+
}),
|
|
782
|
+
/* @__PURE__ */ jsx("path", { d: "M12 2v2" }),
|
|
783
|
+
/* @__PURE__ */ jsx("path", { d: "M12 20v2" }),
|
|
784
|
+
/* @__PURE__ */ jsx("path", { d: "m4.93 4.93 1.41 1.41" }),
|
|
785
|
+
/* @__PURE__ */ jsx("path", { d: "m17.66 17.66 1.41 1.41" }),
|
|
786
|
+
/* @__PURE__ */ jsx("path", { d: "M2 12h2" }),
|
|
787
|
+
/* @__PURE__ */ jsx("path", { d: "M20 12h2" }),
|
|
788
|
+
/* @__PURE__ */ jsx("path", { d: "m6.34 17.66-1.41 1.41" }),
|
|
789
|
+
/* @__PURE__ */ jsx("path", { d: "m19.07 4.93-1.41 1.41" })
|
|
790
|
+
]
|
|
791
|
+
});
|
|
792
|
+
}
|
|
793
|
+
function TriangleAlert(props) {
|
|
794
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
795
|
+
name: "triangle-alert",
|
|
796
|
+
...props,
|
|
797
|
+
children: [
|
|
798
|
+
/* @__PURE__ */ 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" }),
|
|
799
|
+
/* @__PURE__ */ jsx("path", { d: "M12 9v4" }),
|
|
800
|
+
/* @__PURE__ */ jsx("path", { d: "M12 17h.01" })
|
|
801
|
+
]
|
|
802
|
+
});
|
|
803
|
+
}
|
|
804
|
+
function Underline(props) {
|
|
805
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
806
|
+
name: "underline",
|
|
807
|
+
...props,
|
|
808
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M6 4v6a6 6 0 0 0 12 0V4" }), /* @__PURE__ */ jsx("line", {
|
|
809
|
+
x1: "4",
|
|
810
|
+
x2: "20",
|
|
811
|
+
y1: "20",
|
|
812
|
+
y2: "20"
|
|
813
|
+
})]
|
|
814
|
+
});
|
|
815
|
+
}
|
|
816
|
+
function Undo2(props) {
|
|
817
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
818
|
+
name: "undo-2",
|
|
819
|
+
...props,
|
|
820
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M9 14 4 9l5-5" }), /* @__PURE__ */ jsx("path", { d: "M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11" })]
|
|
821
|
+
});
|
|
822
|
+
}
|
|
823
|
+
function UploadCloud(props) {
|
|
824
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
825
|
+
name: "upload-cloud",
|
|
826
|
+
...props,
|
|
827
|
+
children: [
|
|
828
|
+
/* @__PURE__ */ jsx("path", { d: "M12 13v8" }),
|
|
829
|
+
/* @__PURE__ */ jsx("path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" }),
|
|
830
|
+
/* @__PURE__ */ jsx("path", { d: "m8 17 4-4 4 4" })
|
|
831
|
+
]
|
|
832
|
+
});
|
|
833
|
+
}
|
|
834
|
+
function User(props) {
|
|
835
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
836
|
+
name: "user",
|
|
837
|
+
...props,
|
|
838
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }), /* @__PURE__ */ jsx("circle", {
|
|
839
|
+
cx: "12",
|
|
840
|
+
cy: "7",
|
|
841
|
+
r: "4"
|
|
842
|
+
})]
|
|
843
|
+
});
|
|
844
|
+
}
|
|
845
|
+
function Video(props) {
|
|
846
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
847
|
+
name: "video",
|
|
848
|
+
...props,
|
|
849
|
+
children: [/* @__PURE__ */ jsx("path", { d: "m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5" }), /* @__PURE__ */ jsx("rect", {
|
|
850
|
+
x: "2",
|
|
851
|
+
y: "6",
|
|
852
|
+
width: "14",
|
|
853
|
+
height: "12",
|
|
854
|
+
rx: "2"
|
|
855
|
+
})]
|
|
856
|
+
});
|
|
857
|
+
}
|
|
858
|
+
function Volume1(props) {
|
|
859
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
860
|
+
name: "volume-1",
|
|
861
|
+
...props,
|
|
862
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z" }), /* @__PURE__ */ jsx("path", { d: "M16 9a5 5 0 0 1 0 6" })]
|
|
863
|
+
});
|
|
864
|
+
}
|
|
865
|
+
function Volume2(props) {
|
|
866
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
867
|
+
name: "volume-2",
|
|
868
|
+
...props,
|
|
869
|
+
children: [
|
|
870
|
+
/* @__PURE__ */ jsx("path", { d: "M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z" }),
|
|
871
|
+
/* @__PURE__ */ jsx("path", { d: "M16 9a5 5 0 0 1 0 6" }),
|
|
872
|
+
/* @__PURE__ */ jsx("path", { d: "M19.364 18.364a9 9 0 0 0 0-12.728" })
|
|
873
|
+
]
|
|
874
|
+
});
|
|
875
|
+
}
|
|
876
|
+
function VolumeX(props) {
|
|
877
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
878
|
+
name: "volume-x",
|
|
879
|
+
...props,
|
|
880
|
+
children: [
|
|
881
|
+
/* @__PURE__ */ jsx("path", { d: "M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z" }),
|
|
882
|
+
/* @__PURE__ */ jsx("line", {
|
|
883
|
+
x1: "22",
|
|
884
|
+
x2: "16",
|
|
885
|
+
y1: "9",
|
|
886
|
+
y2: "15"
|
|
887
|
+
}),
|
|
888
|
+
/* @__PURE__ */ jsx("line", {
|
|
889
|
+
x1: "16",
|
|
890
|
+
x2: "22",
|
|
891
|
+
y1: "9",
|
|
892
|
+
y2: "15"
|
|
893
|
+
})
|
|
894
|
+
]
|
|
895
|
+
});
|
|
896
|
+
}
|
|
897
|
+
function X(props) {
|
|
898
|
+
return /* @__PURE__ */ jsxs(Icon, {
|
|
899
|
+
name: "x",
|
|
900
|
+
...props,
|
|
901
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M18 6 6 18" }), /* @__PURE__ */ jsx("path", { d: "m6 6 12 12" })]
|
|
902
|
+
});
|
|
903
|
+
}
|
|
904
|
+
//#endregion
|
|
905
|
+
export { AlignCenter, AlignJustify, AlignLeft, AlignRight, ArrowDown, ArrowRight, ArrowUp, ArrowUpRight, Baseline, Bold, Calendar, Captions, CaptionsOff, Check, CheckCheck, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, ChevronsUpDown, Clock, Code2, Eye, EyeOff, File, FileText, Fullscreen, Icon, Image, Info, Italic, Link2, List, ListOrdered, ListVideo, Loader, Loader2, Maximize, Maximize2, Menu, Mic, MicOff, Minimize, Minimize2, Minus, Monitor, Moon, MoreHorizontal, Pause, Phone, PictureInPicture2, Pin, Play, Plus, Quote, Redo2, RefreshCcw, Repeat2, RotateCcw, RotateCw, Search, SearchX, Send, Settings, SlidersHorizontal, Star, Sun, TriangleAlert, Underline, Undo2, UploadCloud, User, Video, Volume1, Volume2, VolumeX, X };
|