@ctlyst.id/icons 2.2.7 → 2.3.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/dist/v2.d.mts +31 -1
- package/dist/v2.d.ts +31 -1
- package/dist/v2.js +473 -122
- package/dist/v2.js.map +1 -1
- package/dist/v2.mjs +459 -123
- package/dist/v2.mjs.map +1 -1
- package/package.json +1 -1
package/dist/v2.js
CHANGED
|
@@ -21,31 +21,46 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
21
21
|
var v2_exports = {};
|
|
22
22
|
__export(v2_exports, {
|
|
23
23
|
ArrowLeft: () => arrow_left_default,
|
|
24
|
+
ArrowLeftLarge: () => arrow_left_large_default,
|
|
24
25
|
ArrowRight: () => arrow_right_default,
|
|
26
|
+
ArrowRightLarge: () => arrow_right_large_default,
|
|
25
27
|
Bag: () => bag_default,
|
|
26
28
|
Calendar: () => calendar_default,
|
|
27
29
|
CalendarEvent: () => calendar_event_default,
|
|
28
30
|
Check: () => check_default,
|
|
31
|
+
CheckLarge: () => check_large_default,
|
|
29
32
|
ChevronDown: () => chevron_down_default,
|
|
33
|
+
ChevronDownLarge: () => chevron_down_large_default,
|
|
30
34
|
ChevronLeft: () => chevron_left_default,
|
|
35
|
+
ChevronLeftLarge: () => chevron_left_large_default,
|
|
31
36
|
ChevronRight: () => chevron_right_default,
|
|
37
|
+
ChevronRightLarge: () => chevron_right_large_default,
|
|
32
38
|
ChevronUp: () => chevron_up_default,
|
|
39
|
+
ChevronUpLarge: () => chevron_up_large_default,
|
|
33
40
|
Close: () => close_default,
|
|
41
|
+
CloseLarge: () => close_large_default,
|
|
34
42
|
ContactBook: () => contact_book_default,
|
|
35
43
|
Direction: () => direction_default,
|
|
36
44
|
EyeClose: () => eye_close_default,
|
|
37
45
|
EyeOpen: () => eye_open_default,
|
|
38
46
|
Filter: () => filter_default,
|
|
39
47
|
Hand: () => hand_default,
|
|
48
|
+
Heart: () => heart_default,
|
|
49
|
+
Logout: () => logout_default,
|
|
40
50
|
MapMarker: () => map_marker_default,
|
|
41
51
|
Minus: () => minus_default,
|
|
52
|
+
MinusLarge: () => minus_large_default,
|
|
53
|
+
OrderHistory: () => order_history_default,
|
|
42
54
|
Plus: () => plus_default,
|
|
55
|
+
PlusLarge: () => plus_large_default,
|
|
56
|
+
Profile: () => profile_default,
|
|
43
57
|
Search: () => search_default,
|
|
44
58
|
Share: () => share_default,
|
|
45
59
|
Sort: () => sort_default,
|
|
46
60
|
StoreComplete: () => store_complete_default,
|
|
47
61
|
TrendUp: () => trend_up_default,
|
|
48
62
|
Truck: () => truck_default,
|
|
63
|
+
Voucher: () => voucher_default,
|
|
49
64
|
Wallet: () => wallet_default
|
|
50
65
|
});
|
|
51
66
|
module.exports = __toCommonJS(v2_exports);
|
|
@@ -78,7 +93,26 @@ var use_icon_props_default = useIconProps;
|
|
|
78
93
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
79
94
|
var ArrowLeft = (props) => {
|
|
80
95
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
81
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.
|
|
96
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
97
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("g", { clipPath: "url(#icon-outline-arrow-left)", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
98
|
+
"path",
|
|
99
|
+
{
|
|
100
|
+
fillRule: "evenodd",
|
|
101
|
+
clipRule: "evenodd",
|
|
102
|
+
d: "M5.89397 11.9662C5.88174 11.9782 5.86991 11.9907 5.85853 12.0036C5.80503 12.0641 5.76296 12.1312 5.73232 12.202C5.69273 12.2933 5.67078 12.3941 5.67078 12.5C5.67078 12.5977 5.68944 12.6909 5.72339 12.7765C5.75999 12.8689 5.81567 12.9556 5.89045 13.0304L10.5043 17.6442C10.7972 17.9371 11.2721 17.9371 11.565 17.6442C11.8579 17.3514 11.8579 16.8765 11.565 16.5836L8.23141 13.25H18.6452C19.0594 13.25 19.3952 12.9142 19.3952 12.5C19.3952 12.0858 19.0594 11.75 18.6452 11.75H8.23145L11.565 8.41644C11.8579 8.12354 11.8579 7.64867 11.565 7.35578C11.2721 7.06288 10.7972 7.06289 10.5043 7.35578L5.89397 11.9662Z",
|
|
103
|
+
fill: color
|
|
104
|
+
}
|
|
105
|
+
) }),
|
|
106
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("clipPath", { id: "icon-outline-arrow-left", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { width: "24", height: "24", fill: "white", transform: "translate(0 0.5)" }) }) })
|
|
107
|
+
] });
|
|
108
|
+
};
|
|
109
|
+
var arrow_left_default = ArrowLeft;
|
|
110
|
+
|
|
111
|
+
// src/icons/v2/outline/arrow-left-large.tsx
|
|
112
|
+
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
113
|
+
var ArrowLeft2 = (props) => {
|
|
114
|
+
const { color, ...svgProps } = use_icon_props_default(props);
|
|
115
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("svg", { viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
82
116
|
"path",
|
|
83
117
|
{
|
|
84
118
|
d: "M4.6459 11.357C4.62111 11.3812 4.59772 11.4069 4.57586 11.4339C4.52869 11.4921 4.48985 11.5548 4.45935 11.6204C4.40561 11.7357 4.37561 11.8643 4.37561 12C4.37561 12.1114 4.39584 12.218 4.43283 12.3165C4.47656 12.4331 4.54535 12.5426 4.63921 12.6364L11.8847 19.882C12.2362 20.2334 12.8061 20.2334 13.1575 19.882C13.509 19.5305 13.509 18.9606 13.1575 18.6092L7.44833 12.9H19.7244C20.2215 12.9 20.6244 12.497 20.6244 12C20.6244 11.5029 20.2215 11.1 19.7244 11.1H7.44846L13.1575 5.39089C13.509 5.03941 13.509 4.46957 13.1575 4.11809C12.806 3.76662 12.2362 3.76663 11.8847 4.1181L4.6459 11.357Z",
|
|
@@ -86,33 +120,52 @@ var ArrowLeft = (props) => {
|
|
|
86
120
|
}
|
|
87
121
|
) });
|
|
88
122
|
};
|
|
89
|
-
var
|
|
123
|
+
var arrow_left_large_default = ArrowLeft2;
|
|
90
124
|
|
|
91
125
|
// src/icons/v2/outline/arrow-right.tsx
|
|
92
|
-
var
|
|
126
|
+
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
93
127
|
var ArrowRight = (props) => {
|
|
94
128
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
95
|
-
return /* @__PURE__ */ (0,
|
|
96
|
-
/* @__PURE__ */ (0,
|
|
129
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
130
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("g", { clipPath: "url(#icon-outline-arrow-right)", children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
97
131
|
"path",
|
|
98
132
|
{
|
|
99
133
|
fillRule: "evenodd",
|
|
100
134
|
clipRule: "evenodd",
|
|
101
|
-
d: "M19.
|
|
135
|
+
d: "M19.1719 11.9662C19.1842 11.9782 19.196 11.9907 19.2074 12.0036C19.2609 12.0641 19.303 12.1312 19.3336 12.202C19.3732 12.2933 19.3951 12.3941 19.3951 12.5C19.3951 12.5977 19.3765 12.6909 19.3425 12.7765C19.3059 12.8689 19.2502 12.9556 19.1755 13.0304L14.5616 17.6442C14.2687 17.9371 13.7938 17.9371 13.5009 17.6442C13.208 17.3514 13.208 16.8765 13.5009 16.5836L16.8345 13.25H6.42075C6.00653 13.25 5.67075 12.9142 5.67075 12.5C5.67075 12.0858 6.00653 11.75 6.42075 11.75H16.8345L13.5009 8.41644C13.208 8.12354 13.208 7.64867 13.5009 7.35578C13.7938 7.06288 14.2687 7.06289 14.5616 7.35578L19.1719 11.9662Z",
|
|
102
136
|
fill: color
|
|
103
137
|
}
|
|
104
138
|
) }),
|
|
105
|
-
/* @__PURE__ */ (0,
|
|
139
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("clipPath", { id: "icon-outline-arrow-right", children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { width: "24", height: "24", fill: "white", transform: "translate(0 0.5)" }) }) })
|
|
106
140
|
] });
|
|
107
141
|
};
|
|
108
142
|
var arrow_right_default = ArrowRight;
|
|
109
143
|
|
|
144
|
+
// src/icons/v2/outline/arrow-right-large.tsx
|
|
145
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
146
|
+
var ArrowRight2 = (props) => {
|
|
147
|
+
const { color, ...svgProps } = use_icon_props_default(props);
|
|
148
|
+
return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
149
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("g", { clipPath: "url(#icon-arrow-right)", children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
150
|
+
"path",
|
|
151
|
+
{
|
|
152
|
+
fillRule: "evenodd",
|
|
153
|
+
clipRule: "evenodd",
|
|
154
|
+
d: "M19.8541 11.857C19.8789 11.8812 19.9023 11.9069 19.9242 11.9339C19.9713 11.9921 20.0102 12.0548 20.0407 12.1204C20.0944 12.2357 20.1244 12.3643 20.1244 12.5C20.1244 12.6114 20.1042 12.718 20.0672 12.8165C20.0235 12.9331 19.9547 13.0426 19.8608 13.1364L12.6153 20.382C12.2638 20.7334 11.694 20.7334 11.3425 20.382C10.991 20.0305 10.991 19.4606 11.3425 19.1092L17.0517 13.4H4.7756C4.27854 13.4 3.8756 12.997 3.8756 12.5C3.8756 12.0029 4.27854 11.6 4.7756 11.6H17.0516L11.3425 5.89089C10.991 5.53941 10.991 4.96957 11.3425 4.61809C11.694 4.26662 12.2638 4.26663 12.6153 4.6181L19.8541 11.857Z",
|
|
155
|
+
fill: color
|
|
156
|
+
}
|
|
157
|
+
) }),
|
|
158
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("clipPath", { id: "icon-arrow-right", children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { width: "24", height: "24", fill: "white", transform: "translate(0 0.5)" }) }) })
|
|
159
|
+
] });
|
|
160
|
+
};
|
|
161
|
+
var arrow_right_large_default = ArrowRight2;
|
|
162
|
+
|
|
110
163
|
// src/icons/v2/outline/bag.tsx
|
|
111
|
-
var
|
|
164
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
112
165
|
var Bag = (props) => {
|
|
113
166
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
114
|
-
return /* @__PURE__ */ (0,
|
|
115
|
-
/* @__PURE__ */ (0,
|
|
167
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("svg", { viewBox: "0 0 24 25", fill: color, xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
168
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
116
169
|
"path",
|
|
117
170
|
{
|
|
118
171
|
fillRule: "evenodd",
|
|
@@ -121,7 +174,7 @@ var Bag = (props) => {
|
|
|
121
174
|
fill: color
|
|
122
175
|
}
|
|
123
176
|
),
|
|
124
|
-
/* @__PURE__ */ (0,
|
|
177
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
125
178
|
"path",
|
|
126
179
|
{
|
|
127
180
|
fillRule: "evenodd",
|
|
@@ -130,7 +183,7 @@ var Bag = (props) => {
|
|
|
130
183
|
fill: color
|
|
131
184
|
}
|
|
132
185
|
),
|
|
133
|
-
/* @__PURE__ */ (0,
|
|
186
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
134
187
|
"path",
|
|
135
188
|
{
|
|
136
189
|
fillRule: "evenodd",
|
|
@@ -139,7 +192,7 @@ var Bag = (props) => {
|
|
|
139
192
|
fill: color
|
|
140
193
|
}
|
|
141
194
|
),
|
|
142
|
-
/* @__PURE__ */ (0,
|
|
195
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
143
196
|
"path",
|
|
144
197
|
{
|
|
145
198
|
fillRule: "evenodd",
|
|
@@ -153,12 +206,12 @@ var Bag = (props) => {
|
|
|
153
206
|
var bag_default = Bag;
|
|
154
207
|
|
|
155
208
|
// src/icons/v2/outline/calendar.tsx
|
|
156
|
-
var
|
|
209
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
157
210
|
var Calendar = (props) => {
|
|
158
211
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
159
|
-
return /* @__PURE__ */ (0,
|
|
160
|
-
/* @__PURE__ */ (0,
|
|
161
|
-
/* @__PURE__ */ (0,
|
|
212
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
213
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("g", { clipPath: "url(#calendar)", children: [
|
|
214
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
162
215
|
"path",
|
|
163
216
|
{
|
|
164
217
|
fillRule: "evenodd",
|
|
@@ -167,7 +220,7 @@ var Calendar = (props) => {
|
|
|
167
220
|
fill: color
|
|
168
221
|
}
|
|
169
222
|
),
|
|
170
|
-
/* @__PURE__ */ (0,
|
|
223
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
171
224
|
"path",
|
|
172
225
|
{
|
|
173
226
|
fillRule: "evenodd",
|
|
@@ -176,7 +229,7 @@ var Calendar = (props) => {
|
|
|
176
229
|
fill: color
|
|
177
230
|
}
|
|
178
231
|
),
|
|
179
|
-
/* @__PURE__ */ (0,
|
|
232
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
180
233
|
"path",
|
|
181
234
|
{
|
|
182
235
|
fillRule: "evenodd",
|
|
@@ -185,8 +238,8 @@ var Calendar = (props) => {
|
|
|
185
238
|
fill: color
|
|
186
239
|
}
|
|
187
240
|
),
|
|
188
|
-
/* @__PURE__ */ (0,
|
|
189
|
-
/* @__PURE__ */ (0,
|
|
241
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M20.2997 11.75H3.70035V10.25H20.2997V11.75Z", fill: color }),
|
|
242
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
190
243
|
"path",
|
|
191
244
|
{
|
|
192
245
|
fillRule: "evenodd",
|
|
@@ -196,25 +249,25 @@ var Calendar = (props) => {
|
|
|
196
249
|
}
|
|
197
250
|
)
|
|
198
251
|
] }),
|
|
199
|
-
/* @__PURE__ */ (0,
|
|
252
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("clipPath", { id: "calendar", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("rect", { width: "24", height: "24", fill: "white", transform: "translate(0 0.5)" }) }) })
|
|
200
253
|
] });
|
|
201
254
|
};
|
|
202
255
|
var calendar_default = Calendar;
|
|
203
256
|
|
|
204
257
|
// src/icons/v2/outline/calendar-event.tsx
|
|
205
|
-
var
|
|
258
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
206
259
|
var CalendarEvent = (props) => {
|
|
207
260
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
208
|
-
return /* @__PURE__ */ (0,
|
|
209
|
-
/* @__PURE__ */ (0,
|
|
210
|
-
/* @__PURE__ */ (0,
|
|
261
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
262
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("g", { clipPath: "url(#calendar-event)", children: [
|
|
263
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
211
264
|
"path",
|
|
212
265
|
{
|
|
213
266
|
d: "M12.1617 17.9467C12.0631 17.8837 11.937 17.8837 11.8384 17.9467L10.2769 18.9452C10.0517 19.0892 9.76485 18.889 9.82233 18.6279L10.2486 16.692C10.2716 16.5875 10.2373 16.4787 10.1585 16.4064L8.72429 15.0901C8.53232 14.9139 8.64077 14.5936 8.90028 14.5703L10.7557 14.4035C10.8682 14.3934 10.9654 14.321 11.0074 14.2162L11.7215 12.4311C11.8221 12.1797 12.178 12.1797 12.2786 12.4311L12.9927 14.2162C13.0347 14.321 13.1319 14.3934 13.2444 14.4035L15.0998 14.5703C15.3593 14.5936 15.4678 14.9139 15.2758 15.0901L13.8416 16.4064C13.7628 16.4787 13.7285 16.5875 13.7515 16.692L14.1778 18.6279C14.2353 18.889 13.9484 19.0892 13.7232 18.9452L12.1617 17.9467Z",
|
|
214
267
|
fill: color
|
|
215
268
|
}
|
|
216
269
|
),
|
|
217
|
-
/* @__PURE__ */ (0,
|
|
270
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
218
271
|
"path",
|
|
219
272
|
{
|
|
220
273
|
fillRule: "evenodd",
|
|
@@ -224,16 +277,35 @@ var CalendarEvent = (props) => {
|
|
|
224
277
|
}
|
|
225
278
|
)
|
|
226
279
|
] }),
|
|
227
|
-
/* @__PURE__ */ (0,
|
|
280
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("clipPath", { id: "calendar-event", children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("rect", { width: "24", height: "24", fill: "white", transform: "translate(0 0.5)" }) }) })
|
|
228
281
|
] });
|
|
229
282
|
};
|
|
230
283
|
var calendar_event_default = CalendarEvent;
|
|
231
284
|
|
|
232
285
|
// src/icons/v2/outline/check.tsx
|
|
233
|
-
var
|
|
286
|
+
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
234
287
|
var Check = (props) => {
|
|
235
288
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
236
|
-
return /* @__PURE__ */ (0,
|
|
289
|
+
return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
290
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("g", { clipPath: "url(#icon-outline-check)", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
291
|
+
"path",
|
|
292
|
+
{
|
|
293
|
+
fillRule: "evenodd",
|
|
294
|
+
clipRule: "evenodd",
|
|
295
|
+
d: "M17.8079 8.61957C18.1008 8.91246 18.1008 9.38734 17.8079 9.68023L11.1077 16.3805C10.967 16.5211 10.7762 16.6001 10.5773 16.6001C10.3784 16.6001 10.1876 16.5211 10.047 16.3805L6.19232 12.5258C5.89943 12.2329 5.89943 11.758 6.19233 11.4651C6.48522 11.1722 6.9601 11.1722 7.25299 11.4651L10.5773 14.7895L16.7472 8.61957C17.0401 8.32668 17.515 8.32668 17.8079 8.61957Z",
|
|
296
|
+
fill: color
|
|
297
|
+
}
|
|
298
|
+
) }),
|
|
299
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("clipPath", { id: "icon-outline-check", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("rect", { width: "24", height: "24", fill: "white", transform: "translate(0 0.5)" }) }) })
|
|
300
|
+
] });
|
|
301
|
+
};
|
|
302
|
+
var check_default = Check;
|
|
303
|
+
|
|
304
|
+
// src/icons/v2/outline/check-large.tsx
|
|
305
|
+
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
306
|
+
var Check2 = (props) => {
|
|
307
|
+
const { color, ...svgProps } = use_icon_props_default(props);
|
|
308
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("svg", { viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
237
309
|
"path",
|
|
238
310
|
{
|
|
239
311
|
d: "M20.3906 6.76232C20.7421 7.11379 20.7421 7.68364 20.3906 8.03511L11.188 17.2377C11.0192 17.4065 10.7903 17.5013 10.5516 17.5013C10.3129 17.5013 10.084 17.4065 9.9152 17.2377L4.6209 11.9434C4.26943 11.5919 4.26943 11.0221 4.62091 10.6706C4.97238 10.3191 5.54223 10.3191 5.8937 10.6706L10.5516 15.3285L19.1178 6.76232C19.4693 6.41085 20.0391 6.41085 20.3906 6.76232Z",
|
|
@@ -241,13 +313,32 @@ var Check = (props) => {
|
|
|
241
313
|
}
|
|
242
314
|
) });
|
|
243
315
|
};
|
|
244
|
-
var
|
|
316
|
+
var check_large_default = Check2;
|
|
245
317
|
|
|
246
318
|
// src/icons/v2/outline/chevron-down.tsx
|
|
247
|
-
var
|
|
319
|
+
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
248
320
|
var ChevronUp = (props) => {
|
|
249
321
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
250
|
-
return /* @__PURE__ */ (0,
|
|
322
|
+
return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
323
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("g", { clipPath: "url(#icon-outline-chevron-down)", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
324
|
+
"path",
|
|
325
|
+
{
|
|
326
|
+
fillRule: "evenodd",
|
|
327
|
+
clipRule: "evenodd",
|
|
328
|
+
d: "M12.5303 15.3417C12.2374 15.6346 11.7626 15.6346 11.4697 15.3417L6.8469 10.719C6.55401 10.4261 6.55401 9.95119 6.8469 9.6583C7.1398 9.36541 7.61467 9.36541 7.90757 9.6583L12 13.7507L16.0925 9.6583C16.3854 9.36541 16.8602 9.36541 17.1531 9.6583C17.446 9.95119 17.446 10.4261 17.1531 10.719L12.5303 15.3417Z",
|
|
329
|
+
fill: color
|
|
330
|
+
}
|
|
331
|
+
) }),
|
|
332
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("clipPath", { id: "icon-outline-chevron-down", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("rect", { width: "24", height: "24", fill: "white", transform: "translate(0 0.5)" }) }) })
|
|
333
|
+
] });
|
|
334
|
+
};
|
|
335
|
+
var chevron_down_default = ChevronUp;
|
|
336
|
+
|
|
337
|
+
// src/icons/v2/outline/chevron-down-large.tsx
|
|
338
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
339
|
+
var ChevronUp2 = (props) => {
|
|
340
|
+
const { color, ...svgProps } = use_icon_props_default(props);
|
|
341
|
+
return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("svg", { viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
251
342
|
"path",
|
|
252
343
|
{
|
|
253
344
|
d: "M13.1364 16.2592C12.7849 16.6106 12.215 16.6106 11.8636 16.2592L4.61805 9.01365C4.26657 8.66217 4.26657 8.09233 4.61805 7.74085C4.96952 7.38938 5.53937 7.38938 5.89084 7.74085L12.5 14.35L19.1091 7.74085C19.4606 7.38938 20.0304 7.38938 20.3819 7.74086C20.7334 8.09233 20.7334 8.66218 20.3819 9.01365L13.1364 16.2592Z",
|
|
@@ -255,13 +346,32 @@ var ChevronUp = (props) => {
|
|
|
255
346
|
}
|
|
256
347
|
) });
|
|
257
348
|
};
|
|
258
|
-
var
|
|
349
|
+
var chevron_down_large_default = ChevronUp2;
|
|
259
350
|
|
|
260
351
|
// src/icons/v2/outline/chevron-left.tsx
|
|
261
|
-
var
|
|
352
|
+
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
262
353
|
var ChevronLeft = (props) => {
|
|
263
354
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
264
|
-
return /* @__PURE__ */ (0,
|
|
355
|
+
return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
356
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("g", { clipPath: "url(#icon-outline-chevron-left)", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
357
|
+
"path",
|
|
358
|
+
{
|
|
359
|
+
fillRule: "evenodd",
|
|
360
|
+
clipRule: "evenodd",
|
|
361
|
+
d: "M9.15827 11.9697C8.86538 12.2626 8.86538 12.7374 9.15827 13.0303L13.781 17.6531C14.0739 17.946 14.5488 17.946 14.8417 17.6531C15.1346 17.3602 15.1346 16.8853 14.8417 16.5924L10.7493 12.5L14.8417 8.40753C15.1346 8.11463 15.1346 7.63976 14.8417 7.34687C14.5488 7.05397 14.0739 7.05397 13.781 7.34687L9.15827 11.9697Z",
|
|
362
|
+
fill: color
|
|
363
|
+
}
|
|
364
|
+
) }),
|
|
365
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("clipPath", { id: "icon-outline-chevron-left", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("rect", { width: "24", height: "24", fill: "white", transform: "translate(0 0.5)" }) }) })
|
|
366
|
+
] });
|
|
367
|
+
};
|
|
368
|
+
var chevron_left_default = ChevronLeft;
|
|
369
|
+
|
|
370
|
+
// src/icons/v2/outline/chevron-left-large.tsx
|
|
371
|
+
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
372
|
+
var ChevronLeftLarge = (props) => {
|
|
373
|
+
const { color, ...svgProps } = use_icon_props_default(props);
|
|
374
|
+
return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
265
375
|
"path",
|
|
266
376
|
{
|
|
267
377
|
d: "M8.2409 12.6364C7.88943 12.2849 7.88943 11.7151 8.2409 11.3636L15.4864 4.11811C15.8379 3.76664 16.4077 3.76664 16.7592 4.11811C17.1107 4.46958 17.1107 5.03943 16.7592 5.3909L10.1501 12L16.7592 18.6092C17.1107 18.9606 17.1107 19.5305 16.7592 19.882C16.4077 20.2334 15.8379 20.2334 15.4864 19.882L8.2409 12.6364Z",
|
|
@@ -269,13 +379,32 @@ var ChevronLeft = (props) => {
|
|
|
269
379
|
}
|
|
270
380
|
) });
|
|
271
381
|
};
|
|
272
|
-
var
|
|
382
|
+
var chevron_left_large_default = ChevronLeftLarge;
|
|
273
383
|
|
|
274
384
|
// src/icons/v2/outline/chevron-right.tsx
|
|
275
|
-
var
|
|
385
|
+
var import_jsx_runtime14 = require("react/jsx-runtime");
|
|
276
386
|
var ChevronRight = (props) => {
|
|
277
387
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
278
|
-
return /* @__PURE__ */ (0,
|
|
388
|
+
return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
389
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("g", { clipPath: "url(#icon-outline-chevron-right)", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
390
|
+
"path",
|
|
391
|
+
{
|
|
392
|
+
fillRule: "evenodd",
|
|
393
|
+
clipRule: "evenodd",
|
|
394
|
+
d: "M14.8417 11.9697C15.1346 12.2626 15.1346 12.7374 14.8417 13.0303L10.219 17.6531C9.92607 17.946 9.45119 17.946 9.1583 17.6531C8.86541 17.3602 8.86541 16.8853 9.1583 16.5924L13.2507 12.5L9.1583 8.40753C8.86541 8.11463 8.86541 7.63976 9.1583 7.34687C9.45119 7.05397 9.92607 7.05397 10.219 7.34687L14.8417 11.9697Z",
|
|
395
|
+
fill: color
|
|
396
|
+
}
|
|
397
|
+
) }),
|
|
398
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("clipPath", { id: "icon-outline-chevron-right", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("rect", { width: "24", height: "24", fill: "white", transform: "translate(0 0.5)" }) }) })
|
|
399
|
+
] });
|
|
400
|
+
};
|
|
401
|
+
var chevron_right_default = ChevronRight;
|
|
402
|
+
|
|
403
|
+
// src/icons/v2/outline/chevron-right-large.tsx
|
|
404
|
+
var import_jsx_runtime15 = require("react/jsx-runtime");
|
|
405
|
+
var ChevronRightLarge = (props) => {
|
|
406
|
+
const { color, ...svgProps } = use_icon_props_default(props);
|
|
407
|
+
return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("svg", { viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
279
408
|
"path",
|
|
280
409
|
{
|
|
281
410
|
d: "M16.7591 11.3636C17.1106 11.7151 17.1106 12.285 16.7591 12.6364L9.51359 19.882C9.16211 20.2334 8.59227 20.2334 8.24079 19.882C7.88932 19.5305 7.88932 18.9606 8.24079 18.6092L14.8499 12L8.24079 5.39089C7.88932 5.03941 7.88932 4.46956 8.2408 4.11809C8.59227 3.76662 9.16212 3.76662 9.51359 4.1181L16.7591 11.3636Z",
|
|
@@ -283,13 +412,32 @@ var ChevronRight = (props) => {
|
|
|
283
412
|
}
|
|
284
413
|
) });
|
|
285
414
|
};
|
|
286
|
-
var
|
|
415
|
+
var chevron_right_large_default = ChevronRightLarge;
|
|
287
416
|
|
|
288
417
|
// src/icons/v2/outline/chevron-up.tsx
|
|
289
|
-
var
|
|
290
|
-
var
|
|
418
|
+
var import_jsx_runtime16 = require("react/jsx-runtime");
|
|
419
|
+
var ChevronUp3 = (props) => {
|
|
420
|
+
const { color, ...svgProps } = use_icon_props_default(props);
|
|
421
|
+
return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
422
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("g", { clipPath: "url(#icon-outline-chevron-up)", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
423
|
+
"path",
|
|
424
|
+
{
|
|
425
|
+
fillRule: "evenodd",
|
|
426
|
+
clipRule: "evenodd",
|
|
427
|
+
d: "M12.5303 9.65827C12.2374 9.36538 11.7626 9.36538 11.4697 9.65827L6.8469 14.281C6.55401 14.5739 6.55401 15.0488 6.8469 15.3417C7.1398 15.6346 7.61467 15.6346 7.90757 15.3417L12 11.2493L16.0925 15.3417C16.3854 15.6346 16.8602 15.6346 17.1531 15.3417C17.446 15.0488 17.446 14.5739 17.1531 14.281L12.5303 9.65827Z",
|
|
428
|
+
fill: color
|
|
429
|
+
}
|
|
430
|
+
) }),
|
|
431
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("clipPath", { id: "icon-outline-chevron-up", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("rect", { width: "24", height: "24", fill: "white", transform: "translate(0 0.5)" }) }) })
|
|
432
|
+
] });
|
|
433
|
+
};
|
|
434
|
+
var chevron_up_default = ChevronUp3;
|
|
435
|
+
|
|
436
|
+
// src/icons/v2/outline/chevron-up-large.tsx
|
|
437
|
+
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
438
|
+
var ChevronUpLarge = (props) => {
|
|
291
439
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
292
|
-
return /* @__PURE__ */ (0,
|
|
440
|
+
return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("svg", { viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
293
441
|
"path",
|
|
294
442
|
{
|
|
295
443
|
d: "M11.8636 7.74084C12.2151 7.38937 12.785 7.38937 13.1364 7.74084L20.382 14.9864C20.7334 15.3378 20.7334 15.9077 20.382 16.2591C20.0305 16.6106 19.4606 16.6106 19.1092 16.2591L12.5 9.65002L5.89089 16.2591C5.53941 16.6106 4.96957 16.6106 4.61809 16.2591C4.26662 15.9077 4.26662 15.3378 4.6181 14.9864L11.8636 7.74084Z",
|
|
@@ -297,21 +445,40 @@ var ChevronUp2 = (props) => {
|
|
|
297
445
|
}
|
|
298
446
|
) });
|
|
299
447
|
};
|
|
300
|
-
var
|
|
448
|
+
var chevron_up_large_default = ChevronUpLarge;
|
|
301
449
|
|
|
302
450
|
// src/icons/v2/outline/close.tsx
|
|
303
|
-
var
|
|
451
|
+
var import_jsx_runtime18 = require("react/jsx-runtime");
|
|
304
452
|
var Close = (props) => {
|
|
305
453
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
306
|
-
return /* @__PURE__ */ (0,
|
|
307
|
-
/* @__PURE__ */ (0,
|
|
454
|
+
return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
455
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("g", { clipPath: "url(#icon-outline-close)", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
456
|
+
"path",
|
|
457
|
+
{
|
|
458
|
+
fillRule: "evenodd",
|
|
459
|
+
clipRule: "evenodd",
|
|
460
|
+
d: "M16.7903 8.76983C17.0832 8.47694 17.0832 8.00206 16.7903 7.70917C16.4974 7.41628 16.0226 7.41628 15.7297 7.70917L12 11.4389L8.27031 7.70922C7.97742 7.41633 7.50254 7.41633 7.20965 7.70922C6.91676 8.00212 6.91676 8.47699 7.20965 8.76989L10.9393 12.4995L7.20954 16.2294C6.91664 16.5223 6.91665 16.9971 7.20954 17.29C7.50243 17.5829 7.97731 17.5829 8.2702 17.29L12 13.5602L15.7298 17.29C16.0227 17.5829 16.4976 17.5829 16.7905 17.29C17.0834 16.9971 17.0834 16.5222 16.7905 16.2294L13.0607 12.4995L16.7903 8.76983Z",
|
|
461
|
+
fill: color
|
|
462
|
+
}
|
|
463
|
+
) }),
|
|
464
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("clipPath", { id: "icon-outline-close", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("rect", { width: "24", height: "24", fill: "white", transform: "translate(0 0.5)" }) }) })
|
|
465
|
+
] });
|
|
466
|
+
};
|
|
467
|
+
var close_default = Close;
|
|
468
|
+
|
|
469
|
+
// src/icons/v2/outline/close-large.tsx
|
|
470
|
+
var import_jsx_runtime19 = require("react/jsx-runtime");
|
|
471
|
+
var CloseLarge = (props) => {
|
|
472
|
+
const { color, ...svgProps } = use_icon_props_default(props);
|
|
473
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("svg", { viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
474
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
308
475
|
"path",
|
|
309
476
|
{
|
|
310
477
|
d: "M4.60857 4.11486C4.96004 3.76339 5.52989 3.76339 5.88136 4.11486L20.3915 18.6249C20.743 18.9764 20.743 19.5462 20.3915 19.8977C20.04 20.2492 19.4702 20.2492 19.1187 19.8977L4.60858 5.38766C4.2571 5.03618 4.2571 4.46634 4.60857 4.11486Z",
|
|
311
478
|
fill: color
|
|
312
479
|
}
|
|
313
480
|
),
|
|
314
|
-
/* @__PURE__ */ (0,
|
|
481
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
315
482
|
"path",
|
|
316
483
|
{
|
|
317
484
|
d: "M20.3914 4.1148C20.7429 4.46627 20.7429 5.03612 20.3914 5.38759L5.88138 19.8977C5.52991 20.2492 4.96006 20.2492 4.60859 19.8977C4.25711 19.5463 4.25711 18.9764 4.60858 18.6249L19.1186 4.1148C19.4701 3.76333 20.04 3.76333 20.3914 4.1148Z",
|
|
@@ -320,14 +487,14 @@ var Close = (props) => {
|
|
|
320
487
|
)
|
|
321
488
|
] });
|
|
322
489
|
};
|
|
323
|
-
var
|
|
490
|
+
var close_large_default = CloseLarge;
|
|
324
491
|
|
|
325
492
|
// src/icons/v2/outline/contact-book.tsx
|
|
326
|
-
var
|
|
493
|
+
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
327
494
|
var ContactBook = (props) => {
|
|
328
495
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
329
|
-
return /* @__PURE__ */ (0,
|
|
330
|
-
/* @__PURE__ */ (0,
|
|
496
|
+
return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("svg", { viewBox: "0 0 25 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
497
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
331
498
|
"path",
|
|
332
499
|
{
|
|
333
500
|
fillRule: "evenodd",
|
|
@@ -336,7 +503,7 @@ var ContactBook = (props) => {
|
|
|
336
503
|
fill: color
|
|
337
504
|
}
|
|
338
505
|
),
|
|
339
|
-
/* @__PURE__ */ (0,
|
|
506
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
340
507
|
"path",
|
|
341
508
|
{
|
|
342
509
|
fillRule: "evenodd",
|
|
@@ -345,7 +512,7 @@ var ContactBook = (props) => {
|
|
|
345
512
|
fill: color
|
|
346
513
|
}
|
|
347
514
|
),
|
|
348
|
-
/* @__PURE__ */ (0,
|
|
515
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
349
516
|
"path",
|
|
350
517
|
{
|
|
351
518
|
fillRule: "evenodd",
|
|
@@ -354,7 +521,7 @@ var ContactBook = (props) => {
|
|
|
354
521
|
fill: color
|
|
355
522
|
}
|
|
356
523
|
),
|
|
357
|
-
/* @__PURE__ */ (0,
|
|
524
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
358
525
|
"path",
|
|
359
526
|
{
|
|
360
527
|
fillRule: "evenodd",
|
|
@@ -363,7 +530,7 @@ var ContactBook = (props) => {
|
|
|
363
530
|
fill: color
|
|
364
531
|
}
|
|
365
532
|
),
|
|
366
|
-
/* @__PURE__ */ (0,
|
|
533
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
367
534
|
"path",
|
|
368
535
|
{
|
|
369
536
|
fillRule: "evenodd",
|
|
@@ -372,7 +539,7 @@ var ContactBook = (props) => {
|
|
|
372
539
|
fill: color
|
|
373
540
|
}
|
|
374
541
|
),
|
|
375
|
-
/* @__PURE__ */ (0,
|
|
542
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
376
543
|
"path",
|
|
377
544
|
{
|
|
378
545
|
fillRule: "evenodd",
|
|
@@ -386,11 +553,11 @@ var ContactBook = (props) => {
|
|
|
386
553
|
var contact_book_default = ContactBook;
|
|
387
554
|
|
|
388
555
|
// src/icons/v2/outline/eye-close.tsx
|
|
389
|
-
var
|
|
556
|
+
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
390
557
|
var EyeClose = (props) => {
|
|
391
558
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
392
|
-
return /* @__PURE__ */ (0,
|
|
393
|
-
/* @__PURE__ */ (0,
|
|
559
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("svg", { viewBox: "0 0 25 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
560
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
394
561
|
"path",
|
|
395
562
|
{
|
|
396
563
|
fillRule: "evenodd",
|
|
@@ -399,7 +566,7 @@ var EyeClose = (props) => {
|
|
|
399
566
|
fill: color
|
|
400
567
|
}
|
|
401
568
|
),
|
|
402
|
-
/* @__PURE__ */ (0,
|
|
569
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
403
570
|
"path",
|
|
404
571
|
{
|
|
405
572
|
fillRule: "evenodd",
|
|
@@ -408,7 +575,7 @@ var EyeClose = (props) => {
|
|
|
408
575
|
fill: color
|
|
409
576
|
}
|
|
410
577
|
),
|
|
411
|
-
/* @__PURE__ */ (0,
|
|
578
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
412
579
|
"path",
|
|
413
580
|
{
|
|
414
581
|
fillRule: "evenodd",
|
|
@@ -422,11 +589,11 @@ var EyeClose = (props) => {
|
|
|
422
589
|
var eye_close_default = EyeClose;
|
|
423
590
|
|
|
424
591
|
// src/icons/v2/outline/eye-open.tsx
|
|
425
|
-
var
|
|
592
|
+
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
426
593
|
var EyeOpen = (props) => {
|
|
427
594
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
428
|
-
return /* @__PURE__ */ (0,
|
|
429
|
-
/* @__PURE__ */ (0,
|
|
595
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
596
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
430
597
|
"path",
|
|
431
598
|
{
|
|
432
599
|
fillRule: "evenodd",
|
|
@@ -435,7 +602,7 @@ var EyeOpen = (props) => {
|
|
|
435
602
|
fill: color
|
|
436
603
|
}
|
|
437
604
|
),
|
|
438
|
-
/* @__PURE__ */ (0,
|
|
605
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
439
606
|
"path",
|
|
440
607
|
{
|
|
441
608
|
fillRule: "evenodd",
|
|
@@ -449,11 +616,11 @@ var EyeOpen = (props) => {
|
|
|
449
616
|
var eye_open_default = EyeOpen;
|
|
450
617
|
|
|
451
618
|
// src/icons/v2/outline/filter.tsx
|
|
452
|
-
var
|
|
619
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
453
620
|
var Filter = (props) => {
|
|
454
621
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
455
|
-
return /* @__PURE__ */ (0,
|
|
456
|
-
/* @__PURE__ */ (0,
|
|
622
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("svg", { viewBox: "0 0 24 24", fill: color, xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
623
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
457
624
|
"path",
|
|
458
625
|
{
|
|
459
626
|
fillRule: "evenodd",
|
|
@@ -462,7 +629,7 @@ var Filter = (props) => {
|
|
|
462
629
|
fill: color
|
|
463
630
|
}
|
|
464
631
|
),
|
|
465
|
-
/* @__PURE__ */ (0,
|
|
632
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
466
633
|
"path",
|
|
467
634
|
{
|
|
468
635
|
fillRule: "evenodd",
|
|
@@ -471,7 +638,7 @@ var Filter = (props) => {
|
|
|
471
638
|
fill: color
|
|
472
639
|
}
|
|
473
640
|
),
|
|
474
|
-
/* @__PURE__ */ (0,
|
|
641
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
475
642
|
"path",
|
|
476
643
|
{
|
|
477
644
|
fillRule: "evenodd",
|
|
@@ -484,13 +651,71 @@ var Filter = (props) => {
|
|
|
484
651
|
};
|
|
485
652
|
var filter_default = Filter;
|
|
486
653
|
|
|
654
|
+
// src/icons/v2/outline/heart.tsx
|
|
655
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
656
|
+
var Heart = (props) => {
|
|
657
|
+
const { color, ...svgProps } = use_icon_props_default(props);
|
|
658
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
659
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("g", { clipPath: "url(#icon-outline-heart)", children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
660
|
+
"path",
|
|
661
|
+
{
|
|
662
|
+
fillRule: "evenodd",
|
|
663
|
+
clipRule: "evenodd",
|
|
664
|
+
d: "M3.34541 5.43669C4.14221 4.3735 5.39384 3.49731 7.20462 3.49731C9.63638 3.49731 11.1645 4.75312 12 5.97035C12.8356 4.75317 14.3637 3.49747 16.7954 3.49747C18.6062 3.49747 19.8578 4.37365 20.6546 5.43685C21.4201 6.45822 21.7792 7.6615 21.884 8.49088C22.2364 10.1182 21.639 13.804 17.5251 17.5434C16.8499 18.1853 14.9261 19.8057 12.398 21.3884C12.1546 21.5408 11.8455 21.5408 11.6021 21.3884C9.07394 19.8057 7.15011 18.1851 6.47489 17.5432C2.361 13.8038 1.76363 10.1181 2.116 8.49074C2.22083 7.66136 2.57995 6.45807 3.34541 5.43669ZM4.54573 6.33627C3.95849 7.11984 3.67494 8.07989 3.60077 8.70657C3.59754 8.73381 3.59283 8.76085 3.58664 8.78757C3.36871 9.729 3.62204 12.9261 7.48987 16.4387L7.50297 16.4509C8.06563 16.987 9.7473 18.4135 12 19.8643C14.2528 18.4135 15.9344 16.9871 16.4971 16.4511L16.5102 16.4389C20.378 12.9263 20.6313 9.72916 20.4134 8.78772C20.4072 8.761 20.4025 8.73397 20.3993 8.70673C20.3251 8.08005 20.0415 7.12 19.4543 6.33642C18.8861 5.57832 18.0497 4.99747 16.7954 4.99747C14.1766 4.99747 12.9859 6.92845 12.7217 7.86328C12.6305 8.1863 12.3357 8.40934 12 8.40934C11.6643 8.40934 11.3695 8.1863 11.2783 7.86328C11.0141 6.92841 9.8234 4.99731 7.20462 4.99731C5.95035 4.99731 5.11388 5.57817 4.54573 6.33627Z",
|
|
665
|
+
fill: color
|
|
666
|
+
}
|
|
667
|
+
) }),
|
|
668
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("clipPath", { id: "icon-outline-heart", children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("rect", { width: "24", height: "24", fill: "white", transform: "translate(0 0.5)" }) }) })
|
|
669
|
+
] });
|
|
670
|
+
};
|
|
671
|
+
var heart_default = Heart;
|
|
672
|
+
|
|
673
|
+
// src/icons/v2/outline/logout.tsx
|
|
674
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
675
|
+
var Logout = (props) => {
|
|
676
|
+
const { color, ...svgProps } = use_icon_props_default(props);
|
|
677
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
678
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsxs)("g", { clipPath: "url(#icon-outline-logout)", children: [
|
|
679
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
680
|
+
"path",
|
|
681
|
+
{
|
|
682
|
+
fillRule: "evenodd",
|
|
683
|
+
clipRule: "evenodd",
|
|
684
|
+
d: "M12.7307 19.743C12.7295 19.8819 12.8418 19.9951 12.9807 19.9951L19.2276 19.9951C19.3656 19.9951 19.4776 19.8832 19.4776 19.7451L19.4776 5.25476C19.4776 5.11669 19.3656 5.00476 19.2276 5.00476L12.9807 5.00476C12.8418 5.00476 12.7295 5.118 12.7307 5.25691L12.7499 7.49349C12.7535 7.90769 12.4206 8.24635 12.0064 8.24991C11.5922 8.25347 11.2536 7.92058 11.25 7.50638L11.2308 5.2698C11.2224 4.29746 12.0083 3.50476 12.9807 3.50476L19.2276 3.50476C20.1941 3.50476 20.9776 4.28826 20.9776 5.25476L20.9776 19.7451C20.9776 20.7116 20.1941 21.4951 19.2276 21.4951L12.9807 21.4951C12.0083 21.4951 11.2224 20.7024 11.2308 19.7301L11.25 17.4935C11.2536 17.0793 11.5922 16.7464 12.0064 16.75C12.4206 16.7535 12.7535 17.0922 12.7499 17.5064L12.7307 19.743Z",
|
|
685
|
+
fill: color
|
|
686
|
+
}
|
|
687
|
+
),
|
|
688
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
689
|
+
"path",
|
|
690
|
+
{
|
|
691
|
+
fillRule: "evenodd",
|
|
692
|
+
clipRule: "evenodd",
|
|
693
|
+
d: "M4.46967 13.0303C4.17678 12.7374 4.17678 12.2625 4.46967 11.9696L8.18966 8.24964C8.48255 7.95675 8.95743 7.95675 9.25032 8.24964C9.54321 8.54253 9.54321 9.01741 9.25032 9.3103L6.06066 12.5L9.25032 15.6896C9.54321 15.9825 9.54321 16.4574 9.25032 16.7503C8.95743 17.0432 8.48255 17.0432 8.18966 16.7503L4.46967 13.0303Z",
|
|
694
|
+
fill: color
|
|
695
|
+
}
|
|
696
|
+
),
|
|
697
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
698
|
+
"path",
|
|
699
|
+
{
|
|
700
|
+
fillRule: "evenodd",
|
|
701
|
+
clipRule: "evenodd",
|
|
702
|
+
d: "M4.9126 12.5C4.9126 12.0858 5.24838 11.75 5.6626 11.75L15.22 11.75C15.6342 11.75 15.97 12.0858 15.97 12.5C15.97 12.9142 15.6342 13.25 15.22 13.25L5.6626 13.25C5.24838 13.25 4.9126 12.9142 4.9126 12.5Z",
|
|
703
|
+
fill: color
|
|
704
|
+
}
|
|
705
|
+
)
|
|
706
|
+
] }),
|
|
707
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("clipPath", { id: "icon-outline-logout", children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("rect", { width: "24", height: "24", fill: "white", transform: "translate(0 0.5)" }) }) })
|
|
708
|
+
] });
|
|
709
|
+
};
|
|
710
|
+
var logout_default = Logout;
|
|
711
|
+
|
|
487
712
|
// src/icons/v2/outline/map-marker.tsx
|
|
488
|
-
var
|
|
713
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
489
714
|
var MapMarker = (props) => {
|
|
490
715
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
491
|
-
return /* @__PURE__ */ (0,
|
|
492
|
-
/* @__PURE__ */ (0,
|
|
493
|
-
/* @__PURE__ */ (0,
|
|
716
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
717
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("g", { clipPath: "url(#map-marker)", children: [
|
|
718
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
494
719
|
"path",
|
|
495
720
|
{
|
|
496
721
|
fillRule: "evenodd",
|
|
@@ -499,7 +724,7 @@ var MapMarker = (props) => {
|
|
|
499
724
|
fill: color
|
|
500
725
|
}
|
|
501
726
|
),
|
|
502
|
-
/* @__PURE__ */ (0,
|
|
727
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
503
728
|
"path",
|
|
504
729
|
{
|
|
505
730
|
fillRule: "evenodd",
|
|
@@ -509,16 +734,35 @@ var MapMarker = (props) => {
|
|
|
509
734
|
}
|
|
510
735
|
)
|
|
511
736
|
] }),
|
|
512
|
-
/* @__PURE__ */ (0,
|
|
737
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("clipPath", { id: "map-marker", children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("rect", { width: "24", height: "24", fill: "white", transform: "translate(0 0.5)" }) }) })
|
|
513
738
|
] });
|
|
514
739
|
};
|
|
515
740
|
var map_marker_default = MapMarker;
|
|
516
741
|
|
|
517
742
|
// src/icons/v2/outline/minus.tsx
|
|
518
|
-
var
|
|
743
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
519
744
|
var Minus = (props) => {
|
|
520
745
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
521
|
-
return /* @__PURE__ */ (0,
|
|
746
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
747
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("g", { clipPath: "url(#icon-outline-minus)", children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
748
|
+
"path",
|
|
749
|
+
{
|
|
750
|
+
fillRule: "evenodd",
|
|
751
|
+
clipRule: "evenodd",
|
|
752
|
+
d: "M7.01098 12.5C7.01098 12.0858 7.34676 11.75 7.76098 11.75L16.2699 11.75C16.6841 11.75 17.0199 12.0858 17.0199 12.5C17.0199 12.9142 16.6841 13.25 16.2699 13.25L7.76098 13.25C7.34676 13.25 7.01098 12.9142 7.01098 12.5Z",
|
|
753
|
+
fill: color
|
|
754
|
+
}
|
|
755
|
+
) }),
|
|
756
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("clipPath", { id: "icon-outline-minus", children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("rect", { width: "24", height: "24", fill: "white", transform: "translate(0 0.5)" }) }) })
|
|
757
|
+
] });
|
|
758
|
+
};
|
|
759
|
+
var minus_default = Minus;
|
|
760
|
+
|
|
761
|
+
// src/icons/v2/outline/minus-large.tsx
|
|
762
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
763
|
+
var MinusLarge = (props) => {
|
|
764
|
+
const { color, ...svgProps } = use_icon_props_default(props);
|
|
765
|
+
return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("svg", { viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
522
766
|
"path",
|
|
523
767
|
{
|
|
524
768
|
fillRule: "evenodd",
|
|
@@ -528,21 +772,67 @@ var Minus = (props) => {
|
|
|
528
772
|
}
|
|
529
773
|
) });
|
|
530
774
|
};
|
|
531
|
-
var
|
|
775
|
+
var minus_large_default = MinusLarge;
|
|
776
|
+
|
|
777
|
+
// src/icons/v2/outline/order-history.tsx
|
|
778
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
779
|
+
var OrderHistory = (props) => {
|
|
780
|
+
const { color, ...svgProps } = use_icon_props_default(props);
|
|
781
|
+
return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
782
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
783
|
+
"path",
|
|
784
|
+
{
|
|
785
|
+
fillRule: "evenodd",
|
|
786
|
+
clipRule: "evenodd",
|
|
787
|
+
d: "M19.4766 13.5142C19.5264 13.5516 19.5637 13.5889 19.6135 13.6138L18.9913 9.22122C18.8544 8.23818 18.0083 7.50401 17.0128 7.50401H16.1791V7.2427C16.1791 7.23025 16.1791 7.23026 16.1791 7.21781C16.1791 4.61712 14.0761 2.51416 11.4754 2.51416C8.94941 2.51416 6.89622 4.49268 6.77179 6.98138C6.7469 7.05604 6.72202 7.14315 6.72202 7.2427V7.50401H5.9505C4.95502 7.50401 4.10887 8.23818 3.972 9.22122L2.54099 19.2134C2.36678 20.4204 3.30003 21.4905 4.5195 21.4905H13.4788C13.4664 21.4781 13.454 21.4656 13.4415 21.4532C14.2877 22.1003 15.3329 22.486 16.4777 22.486C19.2402 22.486 21.48 20.2462 21.48 17.4837C21.4676 15.8785 20.6837 14.4351 19.4766 13.5142ZM8.22767 7.23025H8.26501C8.26501 5.46327 9.69602 4.01983 11.4754 4.01983C13.2424 4.01983 14.6859 5.45083 14.6859 7.23025C14.6859 7.2427 14.6859 7.2427 14.6859 7.25514V7.51646H8.22767V7.25514C8.22767 7.25514 8.22767 7.2427 8.22767 7.23025ZM4.5195 20.0097C4.22085 20.0097 3.98443 19.736 4.02176 19.4373L5.45276 9.4452C5.49009 9.19633 5.70163 9.02212 5.9505 9.02212H6.72202V9.51986C6.72202 9.9305 7.058 10.2665 7.46864 10.2665C7.87927 10.2665 8.21525 9.9305 8.21525 9.51986V9.02212H14.6734V9.51986C14.6734 9.9305 15.0094 10.2665 15.42 10.2665C15.8307 10.2665 16.1666 9.9305 16.1666 9.51986V9.02212H17.0004C17.2492 9.02212 17.4608 9.20878 17.4981 9.45765L17.971 12.7552C18.4314 12.9045 18.8669 13.116 19.2651 13.3774C18.4687 12.8423 17.5105 12.5187 16.4777 12.5187C13.7153 12.5187 11.4754 14.7586 11.4754 17.521C11.4754 18.4543 11.7243 19.3254 12.1723 20.072C12.1598 20.0595 12.1474 20.0471 12.1474 20.0222H4.5195V20.0097ZM19.4642 13.5018C19.402 13.452 19.3397 13.4147 19.2775 13.3649C19.3397 13.4147 19.402 13.4645 19.4642 13.5018ZM12.2345 20.1715C12.2594 20.2088 12.2718 20.2337 12.2967 20.2711C12.2843 20.2337 12.2594 20.1964 12.2345 20.1715ZM12.3838 20.3831C12.4087 20.4079 12.4212 20.4453 12.446 20.4702C12.4212 20.4328 12.3963 20.4079 12.3838 20.3831ZM12.5331 20.5822C12.558 20.607 12.5705 20.6319 12.5954 20.6568C12.5705 20.6319 12.5456 20.607 12.5331 20.5822ZM12.6825 20.7812C12.7073 20.8061 12.7198 20.831 12.7447 20.8559C12.7322 20.8186 12.7073 20.7937 12.6825 20.7812ZM13.2175 21.3039C13.2424 21.3163 13.2549 21.3412 13.2798 21.3536C13.2549 21.3412 13.2424 21.3288 13.2175 21.3039ZM13.0309 21.1297C13.0558 21.1546 13.0807 21.167 13.0931 21.1919C13.0682 21.1794 13.0558 21.1546 13.0309 21.1297ZM16.4653 21.2168C14.4245 21.2168 12.7696 19.5618 12.7696 17.521C12.7696 15.4803 14.4245 13.8253 16.4653 13.8253C18.506 13.8253 20.161 15.4803 20.161 17.521C20.1735 19.5493 18.5185 21.2168 16.4653 21.2168Z",
|
|
788
|
+
fill: color
|
|
789
|
+
}
|
|
790
|
+
),
|
|
791
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
792
|
+
"path",
|
|
793
|
+
{
|
|
794
|
+
fillRule: "evenodd",
|
|
795
|
+
clipRule: "evenodd",
|
|
796
|
+
d: "M18.1576 17.4588H16.8137V15.7541C16.8137 15.3932 16.5275 15.107 16.1666 15.107C15.8058 15.107 15.5196 15.3932 15.5196 15.7541V18.1183C15.5196 18.4792 15.8058 18.7654 16.1666 18.7654H18.1701C18.5309 18.7654 18.8171 18.4792 18.8171 18.1183C18.8171 17.7575 18.5185 17.4588 18.1576 17.4588Z",
|
|
797
|
+
fill: color
|
|
798
|
+
}
|
|
799
|
+
)
|
|
800
|
+
] });
|
|
801
|
+
};
|
|
802
|
+
var order_history_default = OrderHistory;
|
|
532
803
|
|
|
533
804
|
// src/icons/v2/outline/plus.tsx
|
|
534
|
-
var
|
|
805
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
535
806
|
var Plus = (props) => {
|
|
536
807
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
537
|
-
return /* @__PURE__ */ (0,
|
|
538
|
-
/* @__PURE__ */ (0,
|
|
808
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
809
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("g", { clipPath: "url(#icon-outline-plus)", children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
810
|
+
"path",
|
|
811
|
+
{
|
|
812
|
+
fillRule: "evenodd",
|
|
813
|
+
clipRule: "evenodd",
|
|
814
|
+
d: "M12.7656 8.24414C12.7656 7.82992 12.4298 7.49414 12.0156 7.49414C11.6014 7.49414 11.2656 7.82993 11.2656 8.24414L11.2656 11.75L7.75989 11.75C7.34567 11.75 7.00989 12.0858 7.00989 12.5C7.00989 12.9142 7.34568 13.25 7.75989 13.25L11.2656 13.25L11.2657 16.7558C11.2657 17.17 11.6014 17.5058 12.0157 17.5058C12.4299 17.5058 12.7657 17.17 12.7657 16.7558L12.7656 13.25L16.2715 13.25C16.6857 13.25 17.0215 12.9142 17.0215 12.5C17.0215 12.0858 16.6857 11.75 16.2715 11.75L12.7656 11.75L12.7656 8.24414Z",
|
|
815
|
+
fill: color
|
|
816
|
+
}
|
|
817
|
+
) }),
|
|
818
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("clipPath", { id: "icon-outline-plus", children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("rect", { width: "24", height: "24", fill: "white", transform: "translate(0 0.5)" }) }) })
|
|
819
|
+
] });
|
|
820
|
+
};
|
|
821
|
+
var plus_default = Plus;
|
|
822
|
+
|
|
823
|
+
// src/icons/v2/outline/plus-large.tsx
|
|
824
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
825
|
+
var PlusLarge = (props) => {
|
|
826
|
+
const { color, ...svgProps } = use_icon_props_default(props);
|
|
827
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("svg", { viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
828
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
539
829
|
"path",
|
|
540
830
|
{
|
|
541
831
|
d: "M3.7731 12.0058C3.7731 11.4535 4.22081 11.0058 4.7731 11.0058L19.2582 11.0058C19.8104 11.0058 20.2582 11.4535 20.2582 12.0058C20.2582 12.558 19.8104 13.0058 19.2582 13.0058L4.7731 13.0058C4.22082 13.0058 3.7731 12.5581 3.7731 12.0058Z",
|
|
542
832
|
fill: color
|
|
543
833
|
}
|
|
544
834
|
),
|
|
545
|
-
/* @__PURE__ */ (0,
|
|
835
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
546
836
|
"path",
|
|
547
837
|
{
|
|
548
838
|
d: "M12.0156 3.76321C12.5679 3.76321 13.0156 4.21092 13.0156 4.76321L13.0157 19.2483C13.0157 19.8006 12.568 20.2483 12.0157 20.2483C11.4634 20.2483 11.0157 19.8006 11.0157 19.2483L11.0156 4.76322C11.0156 4.21093 11.4633 3.76321 12.0156 3.76321Z",
|
|
@@ -551,14 +841,44 @@ var Plus = (props) => {
|
|
|
551
841
|
)
|
|
552
842
|
] });
|
|
553
843
|
};
|
|
554
|
-
var
|
|
844
|
+
var plus_large_default = PlusLarge;
|
|
845
|
+
|
|
846
|
+
// src/icons/v2/outline/profile.tsx
|
|
847
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
848
|
+
var Profile = (props) => {
|
|
849
|
+
const { color, ...svgProps } = use_icon_props_default(props);
|
|
850
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
851
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("g", { clipPath: "url(#icon-outline-profile)", children: [
|
|
852
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
853
|
+
"path",
|
|
854
|
+
{
|
|
855
|
+
fillRule: "evenodd",
|
|
856
|
+
clipRule: "evenodd",
|
|
857
|
+
d: "M12.0001 12.0148C14.4882 12.0148 16.5035 9.99945 16.5035 7.51141C16.5035 5.02337 14.4882 3.00806 12.0001 3.00806C9.51207 3.00806 7.49677 5.02337 7.49677 7.51141C7.49677 9.99945 9.52451 12.0148 12.0001 12.0148ZM12.0001 4.52576C13.6547 4.52576 14.9982 5.8693 14.9982 7.52385C14.9982 9.1784 13.6547 10.5219 12.0001 10.5219C10.3456 10.5219 9.00203 9.1784 9.00203 7.52385C9.00203 5.8693 10.3456 4.52576 12.0001 4.52576Z",
|
|
858
|
+
fill: color
|
|
859
|
+
}
|
|
860
|
+
),
|
|
861
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
862
|
+
"path",
|
|
863
|
+
{
|
|
864
|
+
fillRule: "evenodd",
|
|
865
|
+
clipRule: "evenodd",
|
|
866
|
+
d: "M19.8499 19.0559C18.8795 15.6971 15.7197 13.2588 12.0001 13.2588C8.28049 13.2588 5.13312 15.6971 4.15034 19.0559C3.91398 19.8645 4.16278 20.6234 4.64795 21.1583C5.12068 21.6808 5.84221 21.9918 6.58862 21.9918H17.3992C18.158 21.9918 18.8671 21.6808 19.3398 21.1583C19.8374 20.6234 20.0862 19.8645 19.8499 19.0559ZM18.2451 20.1507C18.0585 20.3497 17.7599 20.499 17.4116 20.499H6.60106C6.25273 20.499 5.94173 20.3497 5.76757 20.1507C5.59341 19.9641 5.5312 19.7401 5.60584 19.4789C6.38957 16.7669 8.95225 14.7641 12.0125 14.7641C15.0728 14.7641 17.6355 16.7669 18.4192 19.4789C18.4814 19.7277 18.4192 19.9641 18.2451 20.1507Z",
|
|
867
|
+
fill: color
|
|
868
|
+
}
|
|
869
|
+
)
|
|
870
|
+
] }),
|
|
871
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("clipPath", { id: "icon-outline-profile", children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("rect", { width: "24", height: "24", fill: "white", transform: "translate(0 0.5)" }) }) })
|
|
872
|
+
] });
|
|
873
|
+
};
|
|
874
|
+
var profile_default = Profile;
|
|
555
875
|
|
|
556
876
|
// src/icons/v2/outline/search.tsx
|
|
557
|
-
var
|
|
877
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
558
878
|
var Search = (props) => {
|
|
559
879
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
560
|
-
return /* @__PURE__ */ (0,
|
|
561
|
-
/* @__PURE__ */ (0,
|
|
880
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("svg", { viewBox: "0 0 25 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
881
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
562
882
|
"path",
|
|
563
883
|
{
|
|
564
884
|
fillRule: "evenodd",
|
|
@@ -567,7 +887,7 @@ var Search = (props) => {
|
|
|
567
887
|
fill: color
|
|
568
888
|
}
|
|
569
889
|
),
|
|
570
|
-
/* @__PURE__ */ (0,
|
|
890
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
571
891
|
"path",
|
|
572
892
|
{
|
|
573
893
|
fillRule: "evenodd",
|
|
@@ -581,11 +901,11 @@ var Search = (props) => {
|
|
|
581
901
|
var search_default = Search;
|
|
582
902
|
|
|
583
903
|
// src/icons/v2/outline/share.tsx
|
|
584
|
-
var
|
|
904
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
585
905
|
var Bag2 = (props) => {
|
|
586
906
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
587
|
-
return /* @__PURE__ */ (0,
|
|
588
|
-
/* @__PURE__ */ (0,
|
|
907
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 25", fill: color, ...svgProps, children: [
|
|
908
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
589
909
|
"path",
|
|
590
910
|
{
|
|
591
911
|
fillRule: "evenodd",
|
|
@@ -594,7 +914,7 @@ var Bag2 = (props) => {
|
|
|
594
914
|
fill: color
|
|
595
915
|
}
|
|
596
916
|
),
|
|
597
|
-
/* @__PURE__ */ (0,
|
|
917
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
598
918
|
"path",
|
|
599
919
|
{
|
|
600
920
|
fillRule: "evenodd",
|
|
@@ -603,7 +923,7 @@ var Bag2 = (props) => {
|
|
|
603
923
|
fill: color
|
|
604
924
|
}
|
|
605
925
|
),
|
|
606
|
-
/* @__PURE__ */ (0,
|
|
926
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
607
927
|
"path",
|
|
608
928
|
{
|
|
609
929
|
fillRule: "evenodd",
|
|
@@ -617,11 +937,11 @@ var Bag2 = (props) => {
|
|
|
617
937
|
var share_default = Bag2;
|
|
618
938
|
|
|
619
939
|
// src/icons/v2/outline/sort.tsx
|
|
620
|
-
var
|
|
940
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
621
941
|
var Sort = (props) => {
|
|
622
942
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
623
|
-
return /* @__PURE__ */ (0,
|
|
624
|
-
/* @__PURE__ */ (0,
|
|
943
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("svg", { viewBox: "0 0 24 25", fill: color, xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
944
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
625
945
|
"path",
|
|
626
946
|
{
|
|
627
947
|
fillRule: "evenodd",
|
|
@@ -630,7 +950,7 @@ var Sort = (props) => {
|
|
|
630
950
|
fill: color
|
|
631
951
|
}
|
|
632
952
|
),
|
|
633
|
-
/* @__PURE__ */ (0,
|
|
953
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
634
954
|
"path",
|
|
635
955
|
{
|
|
636
956
|
fillRule: "evenodd",
|
|
@@ -644,25 +964,25 @@ var Sort = (props) => {
|
|
|
644
964
|
var sort_default = Sort;
|
|
645
965
|
|
|
646
966
|
// src/icons/v2/outline/store-complete.tsx
|
|
647
|
-
var
|
|
967
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
648
968
|
var StoreComplete = (props) => {
|
|
649
969
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
650
|
-
return /* @__PURE__ */ (0,
|
|
651
|
-
/* @__PURE__ */ (0,
|
|
970
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
971
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
652
972
|
"path",
|
|
653
973
|
{
|
|
654
974
|
d: "M4.41675 3C4.00253 3 3.66675 3.33579 3.66675 3.75C3.66675 4.16421 4.00253 4.5 4.41675 4.5H19.5833C19.9975 4.5 20.3333 4.16421 20.3333 3.75C20.3333 3.33579 19.9975 3 19.5833 3H4.41675Z",
|
|
655
975
|
fill: color
|
|
656
976
|
}
|
|
657
977
|
),
|
|
658
|
-
/* @__PURE__ */ (0,
|
|
978
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
659
979
|
"path",
|
|
660
980
|
{
|
|
661
981
|
d: "M19.0898 16.5493C19.3437 16.8032 19.3437 17.2147 19.0898 17.4686L17.0898 19.4686C16.836 19.7224 16.4244 19.7224 16.1706 19.4686L14.9104 18.2084C14.6565 17.9545 14.6565 17.543 14.9103 17.2891C15.1642 17.0353 15.5757 17.0353 15.8296 17.2891L16.6302 18.0897L18.1706 16.5493C18.4244 16.2955 18.836 16.2955 19.0898 16.5493Z",
|
|
662
982
|
fill: color
|
|
663
983
|
}
|
|
664
984
|
),
|
|
665
|
-
/* @__PURE__ */ (0,
|
|
985
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
666
986
|
"path",
|
|
667
987
|
{
|
|
668
988
|
fillRule: "evenodd",
|
|
@@ -676,11 +996,11 @@ var StoreComplete = (props) => {
|
|
|
676
996
|
var store_complete_default = StoreComplete;
|
|
677
997
|
|
|
678
998
|
// src/icons/v2/outline/truck.tsx
|
|
679
|
-
var
|
|
999
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
680
1000
|
var Truck = (props) => {
|
|
681
1001
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
682
|
-
return /* @__PURE__ */ (0,
|
|
683
|
-
/* @__PURE__ */ (0,
|
|
1002
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
1003
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("g", { clipPath: "url(#truck)", children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
684
1004
|
"path",
|
|
685
1005
|
{
|
|
686
1006
|
fillRule: "evenodd",
|
|
@@ -689,19 +1009,19 @@ var Truck = (props) => {
|
|
|
689
1009
|
fill: color
|
|
690
1010
|
}
|
|
691
1011
|
) }),
|
|
692
|
-
/* @__PURE__ */ (0,
|
|
1012
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("clipPath", { id: "truck", children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("rect", { width: "24", height: "24", fill: "white" }) }) })
|
|
693
1013
|
] });
|
|
694
1014
|
};
|
|
695
1015
|
var truck_default = Truck;
|
|
696
1016
|
|
|
697
1017
|
// src/icons/v2/solid/direction.tsx
|
|
698
|
-
var
|
|
1018
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
699
1019
|
var Direction = (props) => {
|
|
700
1020
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
701
|
-
return /* @__PURE__ */ (0,
|
|
702
|
-
/* @__PURE__ */ (0,
|
|
703
|
-
/* @__PURE__ */ (0,
|
|
704
|
-
/* @__PURE__ */ (0,
|
|
1021
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("svg", { viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: [
|
|
1022
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("g", { clipPath: "url(#direction)", children: [
|
|
1023
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "M12.4255 3.52369L8.7556 14.4828L6.37194 9.64529L1.50808 7.3158L12.4255 3.52369Z", fill: color }),
|
|
1024
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
705
1025
|
"path",
|
|
706
1026
|
{
|
|
707
1027
|
fillRule: "evenodd",
|
|
@@ -711,16 +1031,16 @@ var Direction = (props) => {
|
|
|
711
1031
|
}
|
|
712
1032
|
)
|
|
713
1033
|
] }),
|
|
714
|
-
/* @__PURE__ */ (0,
|
|
1034
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("clipPath", { id: "direction", children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
715
1035
|
] });
|
|
716
1036
|
};
|
|
717
1037
|
var direction_default = Direction;
|
|
718
1038
|
|
|
719
1039
|
// src/icons/v2/solid/hand.tsx
|
|
720
|
-
var
|
|
1040
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
721
1041
|
var Hand = (props) => {
|
|
722
1042
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
723
|
-
return /* @__PURE__ */ (0,
|
|
1043
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("g", { id: "Solid / Hand", children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
724
1044
|
"path",
|
|
725
1045
|
{
|
|
726
1046
|
id: "Vector 650",
|
|
@@ -732,11 +1052,11 @@ var Hand = (props) => {
|
|
|
732
1052
|
var hand_default = Hand;
|
|
733
1053
|
|
|
734
1054
|
// src/icons/v2/solid/trend-up.tsx
|
|
735
|
-
var
|
|
1055
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
736
1056
|
var TrendUp = (props) => {
|
|
737
1057
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
738
|
-
return /* @__PURE__ */ (0,
|
|
739
|
-
/* @__PURE__ */ (0,
|
|
1058
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("g", { id: "Solid / Trend Up", children: /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)("g", { id: "Vector", children: [
|
|
1059
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
740
1060
|
"path",
|
|
741
1061
|
{
|
|
742
1062
|
fillRule: "evenodd",
|
|
@@ -745,14 +1065,14 @@ var TrendUp = (props) => {
|
|
|
745
1065
|
fill: color
|
|
746
1066
|
}
|
|
747
1067
|
),
|
|
748
|
-
/* @__PURE__ */ (0,
|
|
1068
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
749
1069
|
"path",
|
|
750
1070
|
{
|
|
751
1071
|
d: "M16.0599 20.2002C16.4686 20.2002 16.7999 19.8689 16.7999 19.4602C16.7999 19.0515 16.4686 18.7202 16.0599 18.7202C15.6513 18.7202 15.3199 19.0515 15.3199 19.4602C15.3199 19.8689 15.6513 20.2002 16.0599 20.2002Z",
|
|
752
1072
|
fill: color
|
|
753
1073
|
}
|
|
754
1074
|
),
|
|
755
|
-
/* @__PURE__ */ (0,
|
|
1075
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
756
1076
|
"path",
|
|
757
1077
|
{
|
|
758
1078
|
fillRule: "evenodd",
|
|
@@ -765,11 +1085,27 @@ var TrendUp = (props) => {
|
|
|
765
1085
|
};
|
|
766
1086
|
var trend_up_default = TrendUp;
|
|
767
1087
|
|
|
1088
|
+
// src/icons/v2/solid/voucher.tsx
|
|
1089
|
+
var import_jsx_runtime41 = require("react/jsx-runtime");
|
|
1090
|
+
var Voucher = (props) => {
|
|
1091
|
+
const { color, ...svgProps } = use_icon_props_default(props);
|
|
1092
|
+
return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
1093
|
+
"path",
|
|
1094
|
+
{
|
|
1095
|
+
fillRule: "evenodd",
|
|
1096
|
+
clipRule: "evenodd",
|
|
1097
|
+
d: "M2 7.25C2 5.73122 3.23122 4.5 4.75 4.5H19.2402C20.759 4.5 21.9902 5.73122 21.9902 7.25V9.29969C21.9902 9.83687 21.5616 10.2236 21.0895 10.2546C19.9175 10.3318 18.9902 11.3078 18.9902 12.4997C18.9902 13.6916 19.9175 14.6676 21.0895 14.7448C21.5616 14.7758 21.9902 15.1625 21.9902 15.6997V17.7494C21.9902 19.2682 20.759 20.4994 19.2402 20.4994H4.75C3.23122 20.4994 2 19.2682 2 17.7494V15.6997C2 15.1625 2.42868 14.7758 2.90077 14.7448C4.07274 14.6676 5 13.6916 5 12.4997C5 11.3078 4.07274 10.3318 2.90077 10.2546C2.42868 10.2236 2 9.83687 2 9.2997V7.25ZM10.6527 6.21592C10.6527 5.85693 10.3617 5.56592 10.0027 5.56592C9.64371 5.56592 9.35269 5.85693 9.35269 6.21592V7.79796C9.35269 8.15695 9.64371 8.44796 10.0027 8.44796C10.3617 8.44796 10.6527 8.15695 10.6527 7.79796V6.21592ZM10.6527 10.9621C10.6527 10.6031 10.3617 10.3121 10.0027 10.3121C9.64371 10.3121 9.35269 10.6031 9.35269 10.9621L9.35269 14.1262C9.35269 14.4851 9.64371 14.7762 10.0027 14.7762C10.3617 14.7762 10.6527 14.4851 10.6527 14.1262V10.9621ZM10.6527 17.2902C10.6527 16.9313 10.3617 16.6402 10.0027 16.6402C9.64371 16.6402 9.35269 16.9313 9.35269 17.2902V18.8723C9.35269 19.2313 9.64371 19.5223 10.0027 19.5223C10.3617 19.5223 10.6527 19.2313 10.6527 18.8723V17.2902Z",
|
|
1098
|
+
fill: color
|
|
1099
|
+
}
|
|
1100
|
+
) });
|
|
1101
|
+
};
|
|
1102
|
+
var voucher_default = Voucher;
|
|
1103
|
+
|
|
768
1104
|
// src/icons/v2/solid/wallet.tsx
|
|
769
|
-
var
|
|
1105
|
+
var import_jsx_runtime42 = require("react/jsx-runtime");
|
|
770
1106
|
var Wallet = (props) => {
|
|
771
1107
|
const { color, ...svgProps } = use_icon_props_default(props);
|
|
772
|
-
return /* @__PURE__ */ (0,
|
|
1108
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("svg", { viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...svgProps, children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("g", { id: "24x24", children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
773
1109
|
"path",
|
|
774
1110
|
{
|
|
775
1111
|
id: "Subtract",
|
|
@@ -784,31 +1120,46 @@ var wallet_default = Wallet;
|
|
|
784
1120
|
// Annotate the CommonJS export names for ESM import in node:
|
|
785
1121
|
0 && (module.exports = {
|
|
786
1122
|
ArrowLeft,
|
|
1123
|
+
ArrowLeftLarge,
|
|
787
1124
|
ArrowRight,
|
|
1125
|
+
ArrowRightLarge,
|
|
788
1126
|
Bag,
|
|
789
1127
|
Calendar,
|
|
790
1128
|
CalendarEvent,
|
|
791
1129
|
Check,
|
|
1130
|
+
CheckLarge,
|
|
792
1131
|
ChevronDown,
|
|
1132
|
+
ChevronDownLarge,
|
|
793
1133
|
ChevronLeft,
|
|
1134
|
+
ChevronLeftLarge,
|
|
794
1135
|
ChevronRight,
|
|
1136
|
+
ChevronRightLarge,
|
|
795
1137
|
ChevronUp,
|
|
1138
|
+
ChevronUpLarge,
|
|
796
1139
|
Close,
|
|
1140
|
+
CloseLarge,
|
|
797
1141
|
ContactBook,
|
|
798
1142
|
Direction,
|
|
799
1143
|
EyeClose,
|
|
800
1144
|
EyeOpen,
|
|
801
1145
|
Filter,
|
|
802
1146
|
Hand,
|
|
1147
|
+
Heart,
|
|
1148
|
+
Logout,
|
|
803
1149
|
MapMarker,
|
|
804
1150
|
Minus,
|
|
1151
|
+
MinusLarge,
|
|
1152
|
+
OrderHistory,
|
|
805
1153
|
Plus,
|
|
1154
|
+
PlusLarge,
|
|
1155
|
+
Profile,
|
|
806
1156
|
Search,
|
|
807
1157
|
Share,
|
|
808
1158
|
Sort,
|
|
809
1159
|
StoreComplete,
|
|
810
1160
|
TrendUp,
|
|
811
1161
|
Truck,
|
|
1162
|
+
Voucher,
|
|
812
1163
|
Wallet
|
|
813
1164
|
});
|
|
814
1165
|
//# sourceMappingURL=v2.js.map
|