huspy-icons 0.3.5 → 0.3.6
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/fonts/HuspyIcons.css +65 -62
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +59 -58
- package/dist/fonts/HuspyIcons.ts +61 -58
- package/dist/fonts/HuspyIcons.ttf +0 -0
- package/dist/fonts/HuspyIcons.woff +0 -0
- package/dist/fonts/HuspyIcons.woff2 +0 -0
- package/dist/native/index.d.ts +1 -1
- package/dist/native/index.js +59 -58
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +4 -2
- package/dist/react/index.d.ts +4 -2
- package/dist/react/index.js +129 -87
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +116 -74
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/native/glyphMap.ts +60 -59
- package/src/react/Icon.tsx +4 -1
- package/src/react/PinMapSolid.tsx +26 -0
- package/src/react/index.ts +1 -0
- package/src/react/index.tsx +1 -0
package/dist/react/index.js
CHANGED
|
@@ -3119,20 +3119,58 @@ var init_PhoneLinear = __esm({
|
|
|
3119
3119
|
}
|
|
3120
3120
|
});
|
|
3121
3121
|
|
|
3122
|
+
// src/react/PinMapSolid.tsx
|
|
3123
|
+
var PinMapSolid_exports = {};
|
|
3124
|
+
__export(PinMapSolid_exports, {
|
|
3125
|
+
default: () => PinMapSolid_default
|
|
3126
|
+
});
|
|
3127
|
+
var React59, SvgPinMapSolid, PinMapSolid_default;
|
|
3128
|
+
var init_PinMapSolid = __esm({
|
|
3129
|
+
"src/react/PinMapSolid.tsx"() {
|
|
3130
|
+
"use strict";
|
|
3131
|
+
React59 = __toESM(require("react"));
|
|
3132
|
+
init_types();
|
|
3133
|
+
SvgPinMapSolid = ({ size = 16, ...props }) => {
|
|
3134
|
+
const sizeValue = resolveSize(size);
|
|
3135
|
+
return /* @__PURE__ */ React59.createElement(
|
|
3136
|
+
"svg",
|
|
3137
|
+
{
|
|
3138
|
+
width: sizeValue,
|
|
3139
|
+
height: sizeValue,
|
|
3140
|
+
viewBox: "0 0 24 24",
|
|
3141
|
+
fill: "none",
|
|
3142
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3143
|
+
...props
|
|
3144
|
+
},
|
|
3145
|
+
/* @__PURE__ */ React59.createElement(
|
|
3146
|
+
"path",
|
|
3147
|
+
{
|
|
3148
|
+
fillRule: "evenodd",
|
|
3149
|
+
clipRule: "evenodd",
|
|
3150
|
+
d: "M12 1.5C16.6915 1.5 20.5 5.3085 20.5 10C20.5 12.443 19.281 14.9575 17.7505 17.069C15.6135 20.018 12.941 22.168 12.941 22.168C12.3915 22.61 11.6085 22.6105 11.059 22.1685C11.059 22.1685 8.3865 20.018 6.2495 17.069C4.719 14.9575 3.5 12.443 3.5 10C3.5 5.3085 7.3085 1.5 12 1.5ZM12 6.5C13.9315 6.5 15.5 8.0685 15.5 10C15.5 11.9315 13.9315 13.5 12 13.5C10.0685 13.5 8.5 11.9315 8.5 10C8.5 8.0685 10.0685 6.5 12 6.5Z",
|
|
3151
|
+
fill: "currentColor"
|
|
3152
|
+
}
|
|
3153
|
+
)
|
|
3154
|
+
);
|
|
3155
|
+
};
|
|
3156
|
+
PinMapSolid_default = SvgPinMapSolid;
|
|
3157
|
+
}
|
|
3158
|
+
});
|
|
3159
|
+
|
|
3122
3160
|
// src/react/Plus.tsx
|
|
3123
3161
|
var Plus_exports = {};
|
|
3124
3162
|
__export(Plus_exports, {
|
|
3125
3163
|
default: () => Plus_default
|
|
3126
3164
|
});
|
|
3127
|
-
var
|
|
3165
|
+
var React60, SvgPlus, Plus_default;
|
|
3128
3166
|
var init_Plus = __esm({
|
|
3129
3167
|
"src/react/Plus.tsx"() {
|
|
3130
3168
|
"use strict";
|
|
3131
|
-
|
|
3169
|
+
React60 = __toESM(require("react"));
|
|
3132
3170
|
init_types();
|
|
3133
3171
|
SvgPlus = ({ size = 16, ...props }) => {
|
|
3134
3172
|
const sizeValue = resolveSize(size);
|
|
3135
|
-
return /* @__PURE__ */
|
|
3173
|
+
return /* @__PURE__ */ React60.createElement(
|
|
3136
3174
|
"svg",
|
|
3137
3175
|
{
|
|
3138
3176
|
width: sizeValue,
|
|
@@ -3142,7 +3180,7 @@ var init_Plus = __esm({
|
|
|
3142
3180
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3143
3181
|
...props
|
|
3144
3182
|
},
|
|
3145
|
-
/* @__PURE__ */
|
|
3183
|
+
/* @__PURE__ */ React60.createElement(
|
|
3146
3184
|
"path",
|
|
3147
3185
|
{
|
|
3148
3186
|
d: "M11 19V13H5C4.44772 13 4 12.5523 4 12C4 11.4477 4.44772 11 5 11H11V5C11 4.44772 11.4477 4 12 4C12.5523 4 13 4.44772 13 5V11H19C19.5523 11 20 11.4477 20 12C20 12.5523 19.5523 13 19 13H13V19C13 19.5523 12.5523 20 12 20C11.4477 20 11 19.5523 11 19Z",
|
|
@@ -3160,15 +3198,15 @@ var Promotion_exports = {};
|
|
|
3160
3198
|
__export(Promotion_exports, {
|
|
3161
3199
|
default: () => Promotion_default
|
|
3162
3200
|
});
|
|
3163
|
-
var
|
|
3201
|
+
var React61, SvgPromotion, Promotion_default;
|
|
3164
3202
|
var init_Promotion = __esm({
|
|
3165
3203
|
"src/react/Promotion.tsx"() {
|
|
3166
3204
|
"use strict";
|
|
3167
|
-
|
|
3205
|
+
React61 = __toESM(require("react"));
|
|
3168
3206
|
init_types();
|
|
3169
3207
|
SvgPromotion = ({ size = 16, ...props }) => {
|
|
3170
3208
|
const sizeValue = resolveSize(size);
|
|
3171
|
-
return /* @__PURE__ */
|
|
3209
|
+
return /* @__PURE__ */ React61.createElement(
|
|
3172
3210
|
"svg",
|
|
3173
3211
|
{
|
|
3174
3212
|
width: sizeValue,
|
|
@@ -3178,7 +3216,7 @@ var init_Promotion = __esm({
|
|
|
3178
3216
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3179
3217
|
...props
|
|
3180
3218
|
},
|
|
3181
|
-
/* @__PURE__ */
|
|
3219
|
+
/* @__PURE__ */ React61.createElement(
|
|
3182
3220
|
"path",
|
|
3183
3221
|
{
|
|
3184
3222
|
fillRule: "evenodd",
|
|
@@ -3187,7 +3225,7 @@ var init_Promotion = __esm({
|
|
|
3187
3225
|
fill: "currentColor"
|
|
3188
3226
|
}
|
|
3189
3227
|
),
|
|
3190
|
-
/* @__PURE__ */
|
|
3228
|
+
/* @__PURE__ */ React61.createElement(
|
|
3191
3229
|
"path",
|
|
3192
3230
|
{
|
|
3193
3231
|
fillRule: "evenodd",
|
|
@@ -3196,7 +3234,7 @@ var init_Promotion = __esm({
|
|
|
3196
3234
|
fill: "currentColor"
|
|
3197
3235
|
}
|
|
3198
3236
|
),
|
|
3199
|
-
/* @__PURE__ */
|
|
3237
|
+
/* @__PURE__ */ React61.createElement(
|
|
3200
3238
|
"path",
|
|
3201
3239
|
{
|
|
3202
3240
|
fillRule: "evenodd",
|
|
@@ -3205,7 +3243,7 @@ var init_Promotion = __esm({
|
|
|
3205
3243
|
fill: "currentColor"
|
|
3206
3244
|
}
|
|
3207
3245
|
),
|
|
3208
|
-
/* @__PURE__ */
|
|
3246
|
+
/* @__PURE__ */ React61.createElement(
|
|
3209
3247
|
"path",
|
|
3210
3248
|
{
|
|
3211
3249
|
fillRule: "evenodd",
|
|
@@ -3225,15 +3263,15 @@ var PropertiesFilled_exports = {};
|
|
|
3225
3263
|
__export(PropertiesFilled_exports, {
|
|
3226
3264
|
default: () => PropertiesFilled_default
|
|
3227
3265
|
});
|
|
3228
|
-
var
|
|
3266
|
+
var React62, SvgPropertiesFilled, PropertiesFilled_default;
|
|
3229
3267
|
var init_PropertiesFilled = __esm({
|
|
3230
3268
|
"src/react/PropertiesFilled.tsx"() {
|
|
3231
3269
|
"use strict";
|
|
3232
|
-
|
|
3270
|
+
React62 = __toESM(require("react"));
|
|
3233
3271
|
init_types();
|
|
3234
3272
|
SvgPropertiesFilled = ({ size = 16, ...props }) => {
|
|
3235
3273
|
const sizeValue = resolveSize(size);
|
|
3236
|
-
return /* @__PURE__ */
|
|
3274
|
+
return /* @__PURE__ */ React62.createElement(
|
|
3237
3275
|
"svg",
|
|
3238
3276
|
{
|
|
3239
3277
|
width: sizeValue,
|
|
@@ -3243,7 +3281,7 @@ var init_PropertiesFilled = __esm({
|
|
|
3243
3281
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3244
3282
|
...props
|
|
3245
3283
|
},
|
|
3246
|
-
/* @__PURE__ */
|
|
3284
|
+
/* @__PURE__ */ React62.createElement(
|
|
3247
3285
|
"path",
|
|
3248
3286
|
{
|
|
3249
3287
|
fillRule: "evenodd",
|
|
@@ -3252,7 +3290,7 @@ var init_PropertiesFilled = __esm({
|
|
|
3252
3290
|
fill: "currentColor"
|
|
3253
3291
|
}
|
|
3254
3292
|
),
|
|
3255
|
-
/* @__PURE__ */
|
|
3293
|
+
/* @__PURE__ */ React62.createElement(
|
|
3256
3294
|
"path",
|
|
3257
3295
|
{
|
|
3258
3296
|
fillRule: "evenodd",
|
|
@@ -3261,7 +3299,7 @@ var init_PropertiesFilled = __esm({
|
|
|
3261
3299
|
fill: "currentColor"
|
|
3262
3300
|
}
|
|
3263
3301
|
),
|
|
3264
|
-
/* @__PURE__ */
|
|
3302
|
+
/* @__PURE__ */ React62.createElement(
|
|
3265
3303
|
"path",
|
|
3266
3304
|
{
|
|
3267
3305
|
d: "M16.0356 0.902344C17.6923 0.902608 19.0356 2.24565 19.0356 3.90234V19.999C19.0356 21.6559 17.6915 22.999 16.0347 22.999H8.00049C6.34363 22.999 5.00049 21.6559 5.00049 19.999V3.90234C5.00049 2.24549 6.34363 0.902344 8.00049 0.902344H16.0356ZM10.0005 17C9.4482 17 9.00049 17.4477 9.00049 18C9.00051 18.5523 9.44822 19 10.0005 19H14.0005C14.5525 18.9997 15.0005 18.5521 15.0005 18C15.0005 17.4479 14.5525 17.0003 14.0005 17H10.0005ZM10.0005 13C9.4482 13 9.00049 13.4477 9.00049 14C9.00051 14.5523 9.44822 15 10.0005 15H14.0005C14.5525 14.9997 15.0005 14.5521 15.0005 14C15.0005 13.4479 14.5525 13.0003 14.0005 13H10.0005ZM10.0005 9C9.4482 9 9.00049 9.44771 9.00049 10C9.00051 10.5523 9.44822 11 10.0005 11H14.0005C14.5525 10.9997 15.0005 10.5521 15.0005 10C15.0005 9.44788 14.5525 9.00026 14.0005 9H10.0005ZM10.0005 5C9.4482 5 9.00049 5.44772 9.00049 6C9.00051 6.55226 9.44822 7 10.0005 7H14.0005C14.5525 6.99974 15.0005 6.5521 15.0005 6C15.0005 5.44788 14.5525 5.00026 14.0005 5H10.0005Z",
|
|
@@ -3279,15 +3317,15 @@ var PropertiesLinear_exports = {};
|
|
|
3279
3317
|
__export(PropertiesLinear_exports, {
|
|
3280
3318
|
default: () => PropertiesLinear_default
|
|
3281
3319
|
});
|
|
3282
|
-
var
|
|
3320
|
+
var React63, SvgPropertiesLinear, PropertiesLinear_default;
|
|
3283
3321
|
var init_PropertiesLinear = __esm({
|
|
3284
3322
|
"src/react/PropertiesLinear.tsx"() {
|
|
3285
3323
|
"use strict";
|
|
3286
|
-
|
|
3324
|
+
React63 = __toESM(require("react"));
|
|
3287
3325
|
init_types();
|
|
3288
3326
|
SvgPropertiesLinear = ({ size = 16, ...props }) => {
|
|
3289
3327
|
const sizeValue = resolveSize(size);
|
|
3290
|
-
return /* @__PURE__ */
|
|
3328
|
+
return /* @__PURE__ */ React63.createElement(
|
|
3291
3329
|
"svg",
|
|
3292
3330
|
{
|
|
3293
3331
|
width: sizeValue,
|
|
@@ -3297,7 +3335,7 @@ var init_PropertiesLinear = __esm({
|
|
|
3297
3335
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3298
3336
|
...props
|
|
3299
3337
|
},
|
|
3300
|
-
/* @__PURE__ */
|
|
3338
|
+
/* @__PURE__ */ React63.createElement(
|
|
3301
3339
|
"path",
|
|
3302
3340
|
{
|
|
3303
3341
|
fillRule: "evenodd",
|
|
@@ -3306,7 +3344,7 @@ var init_PropertiesLinear = __esm({
|
|
|
3306
3344
|
fill: "currentColor"
|
|
3307
3345
|
}
|
|
3308
3346
|
),
|
|
3309
|
-
/* @__PURE__ */
|
|
3347
|
+
/* @__PURE__ */ React63.createElement(
|
|
3310
3348
|
"path",
|
|
3311
3349
|
{
|
|
3312
3350
|
fillRule: "evenodd",
|
|
@@ -3315,7 +3353,7 @@ var init_PropertiesLinear = __esm({
|
|
|
3315
3353
|
fill: "currentColor"
|
|
3316
3354
|
}
|
|
3317
3355
|
),
|
|
3318
|
-
/* @__PURE__ */
|
|
3356
|
+
/* @__PURE__ */ React63.createElement(
|
|
3319
3357
|
"path",
|
|
3320
3358
|
{
|
|
3321
3359
|
fillRule: "evenodd",
|
|
@@ -3324,7 +3362,7 @@ var init_PropertiesLinear = __esm({
|
|
|
3324
3362
|
fill: "currentColor"
|
|
3325
3363
|
}
|
|
3326
3364
|
),
|
|
3327
|
-
/* @__PURE__ */
|
|
3365
|
+
/* @__PURE__ */ React63.createElement(
|
|
3328
3366
|
"path",
|
|
3329
3367
|
{
|
|
3330
3368
|
fillRule: "evenodd",
|
|
@@ -3333,7 +3371,7 @@ var init_PropertiesLinear = __esm({
|
|
|
3333
3371
|
fill: "currentColor"
|
|
3334
3372
|
}
|
|
3335
3373
|
),
|
|
3336
|
-
/* @__PURE__ */
|
|
3374
|
+
/* @__PURE__ */ React63.createElement(
|
|
3337
3375
|
"path",
|
|
3338
3376
|
{
|
|
3339
3377
|
fillRule: "evenodd",
|
|
@@ -3342,7 +3380,7 @@ var init_PropertiesLinear = __esm({
|
|
|
3342
3380
|
fill: "currentColor"
|
|
3343
3381
|
}
|
|
3344
3382
|
),
|
|
3345
|
-
/* @__PURE__ */
|
|
3383
|
+
/* @__PURE__ */ React63.createElement(
|
|
3346
3384
|
"path",
|
|
3347
3385
|
{
|
|
3348
3386
|
fillRule: "evenodd",
|
|
@@ -3351,7 +3389,7 @@ var init_PropertiesLinear = __esm({
|
|
|
3351
3389
|
fill: "currentColor"
|
|
3352
3390
|
}
|
|
3353
3391
|
),
|
|
3354
|
-
/* @__PURE__ */
|
|
3392
|
+
/* @__PURE__ */ React63.createElement(
|
|
3355
3393
|
"path",
|
|
3356
3394
|
{
|
|
3357
3395
|
fillRule: "evenodd",
|
|
@@ -3371,15 +3409,15 @@ var Rent_exports = {};
|
|
|
3371
3409
|
__export(Rent_exports, {
|
|
3372
3410
|
default: () => Rent_default
|
|
3373
3411
|
});
|
|
3374
|
-
var
|
|
3412
|
+
var React64, SvgRent, Rent_default;
|
|
3375
3413
|
var init_Rent = __esm({
|
|
3376
3414
|
"src/react/Rent.tsx"() {
|
|
3377
3415
|
"use strict";
|
|
3378
|
-
|
|
3416
|
+
React64 = __toESM(require("react"));
|
|
3379
3417
|
init_types();
|
|
3380
3418
|
SvgRent = ({ size = 16, ...props }) => {
|
|
3381
3419
|
const sizeValue = resolveSize(size);
|
|
3382
|
-
return /* @__PURE__ */
|
|
3420
|
+
return /* @__PURE__ */ React64.createElement(
|
|
3383
3421
|
"svg",
|
|
3384
3422
|
{
|
|
3385
3423
|
width: sizeValue,
|
|
@@ -3389,7 +3427,7 @@ var init_Rent = __esm({
|
|
|
3389
3427
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3390
3428
|
...props
|
|
3391
3429
|
},
|
|
3392
|
-
/* @__PURE__ */
|
|
3430
|
+
/* @__PURE__ */ React64.createElement(
|
|
3393
3431
|
"path",
|
|
3394
3432
|
{
|
|
3395
3433
|
fillRule: "evenodd",
|
|
@@ -3398,7 +3436,7 @@ var init_Rent = __esm({
|
|
|
3398
3436
|
fill: "currentColor"
|
|
3399
3437
|
}
|
|
3400
3438
|
),
|
|
3401
|
-
/* @__PURE__ */
|
|
3439
|
+
/* @__PURE__ */ React64.createElement(
|
|
3402
3440
|
"path",
|
|
3403
3441
|
{
|
|
3404
3442
|
fillRule: "evenodd",
|
|
@@ -3407,7 +3445,7 @@ var init_Rent = __esm({
|
|
|
3407
3445
|
fill: "currentColor"
|
|
3408
3446
|
}
|
|
3409
3447
|
),
|
|
3410
|
-
/* @__PURE__ */
|
|
3448
|
+
/* @__PURE__ */ React64.createElement(
|
|
3411
3449
|
"path",
|
|
3412
3450
|
{
|
|
3413
3451
|
fillRule: "evenodd",
|
|
@@ -3427,15 +3465,15 @@ var Sale_exports = {};
|
|
|
3427
3465
|
__export(Sale_exports, {
|
|
3428
3466
|
default: () => Sale_default
|
|
3429
3467
|
});
|
|
3430
|
-
var
|
|
3468
|
+
var React65, SvgSale, Sale_default;
|
|
3431
3469
|
var init_Sale = __esm({
|
|
3432
3470
|
"src/react/Sale.tsx"() {
|
|
3433
3471
|
"use strict";
|
|
3434
|
-
|
|
3472
|
+
React65 = __toESM(require("react"));
|
|
3435
3473
|
init_types();
|
|
3436
3474
|
SvgSale = ({ size = 16, ...props }) => {
|
|
3437
3475
|
const sizeValue = resolveSize(size);
|
|
3438
|
-
return /* @__PURE__ */
|
|
3476
|
+
return /* @__PURE__ */ React65.createElement(
|
|
3439
3477
|
"svg",
|
|
3440
3478
|
{
|
|
3441
3479
|
width: sizeValue,
|
|
@@ -3445,7 +3483,7 @@ var init_Sale = __esm({
|
|
|
3445
3483
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3446
3484
|
...props
|
|
3447
3485
|
},
|
|
3448
|
-
/* @__PURE__ */
|
|
3486
|
+
/* @__PURE__ */ React65.createElement(
|
|
3449
3487
|
"path",
|
|
3450
3488
|
{
|
|
3451
3489
|
fillRule: "evenodd",
|
|
@@ -3454,7 +3492,7 @@ var init_Sale = __esm({
|
|
|
3454
3492
|
fill: "currentColor"
|
|
3455
3493
|
}
|
|
3456
3494
|
),
|
|
3457
|
-
/* @__PURE__ */
|
|
3495
|
+
/* @__PURE__ */ React65.createElement(
|
|
3458
3496
|
"path",
|
|
3459
3497
|
{
|
|
3460
3498
|
fillRule: "evenodd",
|
|
@@ -3463,7 +3501,7 @@ var init_Sale = __esm({
|
|
|
3463
3501
|
fill: "currentColor"
|
|
3464
3502
|
}
|
|
3465
3503
|
),
|
|
3466
|
-
/* @__PURE__ */
|
|
3504
|
+
/* @__PURE__ */ React65.createElement(
|
|
3467
3505
|
"path",
|
|
3468
3506
|
{
|
|
3469
3507
|
fillRule: "evenodd",
|
|
@@ -3483,15 +3521,15 @@ var Search_exports = {};
|
|
|
3483
3521
|
__export(Search_exports, {
|
|
3484
3522
|
default: () => Search_default
|
|
3485
3523
|
});
|
|
3486
|
-
var
|
|
3524
|
+
var React66, SvgSearch, Search_default;
|
|
3487
3525
|
var init_Search = __esm({
|
|
3488
3526
|
"src/react/Search.tsx"() {
|
|
3489
3527
|
"use strict";
|
|
3490
|
-
|
|
3528
|
+
React66 = __toESM(require("react"));
|
|
3491
3529
|
init_types();
|
|
3492
3530
|
SvgSearch = ({ size = 16, ...props }) => {
|
|
3493
3531
|
const sizeValue = resolveSize(size);
|
|
3494
|
-
return /* @__PURE__ */
|
|
3532
|
+
return /* @__PURE__ */ React66.createElement(
|
|
3495
3533
|
"svg",
|
|
3496
3534
|
{
|
|
3497
3535
|
width: sizeValue,
|
|
@@ -3501,7 +3539,7 @@ var init_Search = __esm({
|
|
|
3501
3539
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3502
3540
|
...props
|
|
3503
3541
|
},
|
|
3504
|
-
/* @__PURE__ */
|
|
3542
|
+
/* @__PURE__ */ React66.createElement(
|
|
3505
3543
|
"path",
|
|
3506
3544
|
{
|
|
3507
3545
|
fillRule: "evenodd",
|
|
@@ -3510,7 +3548,7 @@ var init_Search = __esm({
|
|
|
3510
3548
|
fill: "currentColor"
|
|
3511
3549
|
}
|
|
3512
3550
|
),
|
|
3513
|
-
/* @__PURE__ */
|
|
3551
|
+
/* @__PURE__ */ React66.createElement(
|
|
3514
3552
|
"path",
|
|
3515
3553
|
{
|
|
3516
3554
|
fillRule: "evenodd",
|
|
@@ -3530,15 +3568,15 @@ var SearchX_exports = {};
|
|
|
3530
3568
|
__export(SearchX_exports, {
|
|
3531
3569
|
default: () => SearchX_default
|
|
3532
3570
|
});
|
|
3533
|
-
var
|
|
3571
|
+
var React67, SvgSearchX, SearchX_default;
|
|
3534
3572
|
var init_SearchX = __esm({
|
|
3535
3573
|
"src/react/SearchX.tsx"() {
|
|
3536
3574
|
"use strict";
|
|
3537
|
-
|
|
3575
|
+
React67 = __toESM(require("react"));
|
|
3538
3576
|
init_types();
|
|
3539
3577
|
SvgSearchX = ({ size = 16, ...props }) => {
|
|
3540
3578
|
const sizeValue = resolveSize(size);
|
|
3541
|
-
return /* @__PURE__ */
|
|
3579
|
+
return /* @__PURE__ */ React67.createElement(
|
|
3542
3580
|
"svg",
|
|
3543
3581
|
{
|
|
3544
3582
|
width: sizeValue,
|
|
@@ -3548,7 +3586,7 @@ var init_SearchX = __esm({
|
|
|
3548
3586
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3549
3587
|
...props
|
|
3550
3588
|
},
|
|
3551
|
-
/* @__PURE__ */
|
|
3589
|
+
/* @__PURE__ */ React67.createElement(
|
|
3552
3590
|
"path",
|
|
3553
3591
|
{
|
|
3554
3592
|
fillRule: "evenodd",
|
|
@@ -3557,7 +3595,7 @@ var init_SearchX = __esm({
|
|
|
3557
3595
|
fill: "currentColor"
|
|
3558
3596
|
}
|
|
3559
3597
|
),
|
|
3560
|
-
/* @__PURE__ */
|
|
3598
|
+
/* @__PURE__ */ React67.createElement(
|
|
3561
3599
|
"path",
|
|
3562
3600
|
{
|
|
3563
3601
|
fillRule: "evenodd",
|
|
@@ -3566,7 +3604,7 @@ var init_SearchX = __esm({
|
|
|
3566
3604
|
fill: "currentColor"
|
|
3567
3605
|
}
|
|
3568
3606
|
),
|
|
3569
|
-
/* @__PURE__ */
|
|
3607
|
+
/* @__PURE__ */ React67.createElement(
|
|
3570
3608
|
"path",
|
|
3571
3609
|
{
|
|
3572
3610
|
fillRule: "evenodd",
|
|
@@ -3575,7 +3613,7 @@ var init_SearchX = __esm({
|
|
|
3575
3613
|
fill: "currentColor"
|
|
3576
3614
|
}
|
|
3577
3615
|
),
|
|
3578
|
-
/* @__PURE__ */
|
|
3616
|
+
/* @__PURE__ */ React67.createElement(
|
|
3579
3617
|
"path",
|
|
3580
3618
|
{
|
|
3581
3619
|
fillRule: "evenodd",
|
|
@@ -3595,15 +3633,15 @@ var Share_exports = {};
|
|
|
3595
3633
|
__export(Share_exports, {
|
|
3596
3634
|
default: () => Share_default
|
|
3597
3635
|
});
|
|
3598
|
-
var
|
|
3636
|
+
var React68, SvgShare, Share_default;
|
|
3599
3637
|
var init_Share = __esm({
|
|
3600
3638
|
"src/react/Share.tsx"() {
|
|
3601
3639
|
"use strict";
|
|
3602
|
-
|
|
3640
|
+
React68 = __toESM(require("react"));
|
|
3603
3641
|
init_types();
|
|
3604
3642
|
SvgShare = ({ size = 16, ...props }) => {
|
|
3605
3643
|
const sizeValue = resolveSize(size);
|
|
3606
|
-
return /* @__PURE__ */
|
|
3644
|
+
return /* @__PURE__ */ React68.createElement(
|
|
3607
3645
|
"svg",
|
|
3608
3646
|
{
|
|
3609
3647
|
width: sizeValue,
|
|
@@ -3613,7 +3651,7 @@ var init_Share = __esm({
|
|
|
3613
3651
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3614
3652
|
...props
|
|
3615
3653
|
},
|
|
3616
|
-
/* @__PURE__ */
|
|
3654
|
+
/* @__PURE__ */ React68.createElement(
|
|
3617
3655
|
"path",
|
|
3618
3656
|
{
|
|
3619
3657
|
fillRule: "evenodd",
|
|
@@ -3622,7 +3660,7 @@ var init_Share = __esm({
|
|
|
3622
3660
|
fill: "currentColor"
|
|
3623
3661
|
}
|
|
3624
3662
|
),
|
|
3625
|
-
/* @__PURE__ */
|
|
3663
|
+
/* @__PURE__ */ React68.createElement(
|
|
3626
3664
|
"path",
|
|
3627
3665
|
{
|
|
3628
3666
|
fillRule: "evenodd",
|
|
@@ -3631,7 +3669,7 @@ var init_Share = __esm({
|
|
|
3631
3669
|
fill: "currentColor"
|
|
3632
3670
|
}
|
|
3633
3671
|
),
|
|
3634
|
-
/* @__PURE__ */
|
|
3672
|
+
/* @__PURE__ */ React68.createElement(
|
|
3635
3673
|
"path",
|
|
3636
3674
|
{
|
|
3637
3675
|
fillRule: "evenodd",
|
|
@@ -3651,15 +3689,15 @@ var Size3D_exports = {};
|
|
|
3651
3689
|
__export(Size3D_exports, {
|
|
3652
3690
|
default: () => Size3D_default
|
|
3653
3691
|
});
|
|
3654
|
-
var
|
|
3692
|
+
var React69, SvgSize3D, Size3D_default;
|
|
3655
3693
|
var init_Size3D = __esm({
|
|
3656
3694
|
"src/react/Size3D.tsx"() {
|
|
3657
3695
|
"use strict";
|
|
3658
|
-
|
|
3696
|
+
React69 = __toESM(require("react"));
|
|
3659
3697
|
init_types();
|
|
3660
3698
|
SvgSize3D = ({ size = 16, ...props }) => {
|
|
3661
3699
|
const sizeValue = resolveSize(size);
|
|
3662
|
-
return /* @__PURE__ */
|
|
3700
|
+
return /* @__PURE__ */ React69.createElement(
|
|
3663
3701
|
"svg",
|
|
3664
3702
|
{
|
|
3665
3703
|
width: sizeValue,
|
|
@@ -3669,7 +3707,7 @@ var init_Size3D = __esm({
|
|
|
3669
3707
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3670
3708
|
...props
|
|
3671
3709
|
},
|
|
3672
|
-
/* @__PURE__ */
|
|
3710
|
+
/* @__PURE__ */ React69.createElement(
|
|
3673
3711
|
"path",
|
|
3674
3712
|
{
|
|
3675
3713
|
fillRule: "evenodd",
|
|
@@ -3678,7 +3716,7 @@ var init_Size3D = __esm({
|
|
|
3678
3716
|
fill: "currentColor"
|
|
3679
3717
|
}
|
|
3680
3718
|
),
|
|
3681
|
-
/* @__PURE__ */
|
|
3719
|
+
/* @__PURE__ */ React69.createElement(
|
|
3682
3720
|
"path",
|
|
3683
3721
|
{
|
|
3684
3722
|
fillRule: "evenodd",
|
|
@@ -3687,7 +3725,7 @@ var init_Size3D = __esm({
|
|
|
3687
3725
|
fill: "currentColor"
|
|
3688
3726
|
}
|
|
3689
3727
|
),
|
|
3690
|
-
/* @__PURE__ */
|
|
3728
|
+
/* @__PURE__ */ React69.createElement(
|
|
3691
3729
|
"path",
|
|
3692
3730
|
{
|
|
3693
3731
|
fillRule: "evenodd",
|
|
@@ -3696,7 +3734,7 @@ var init_Size3D = __esm({
|
|
|
3696
3734
|
fill: "currentColor"
|
|
3697
3735
|
}
|
|
3698
3736
|
),
|
|
3699
|
-
/* @__PURE__ */
|
|
3737
|
+
/* @__PURE__ */ React69.createElement(
|
|
3700
3738
|
"path",
|
|
3701
3739
|
{
|
|
3702
3740
|
fillRule: "evenodd",
|
|
@@ -3716,15 +3754,15 @@ var Trash2_exports = {};
|
|
|
3716
3754
|
__export(Trash2_exports, {
|
|
3717
3755
|
default: () => Trash2_default
|
|
3718
3756
|
});
|
|
3719
|
-
var
|
|
3757
|
+
var React70, SvgTrash2, Trash2_default;
|
|
3720
3758
|
var init_Trash2 = __esm({
|
|
3721
3759
|
"src/react/Trash2.tsx"() {
|
|
3722
3760
|
"use strict";
|
|
3723
|
-
|
|
3761
|
+
React70 = __toESM(require("react"));
|
|
3724
3762
|
init_types();
|
|
3725
3763
|
SvgTrash2 = ({ size = 16, ...props }) => {
|
|
3726
3764
|
const sizeValue = resolveSize(size);
|
|
3727
|
-
return /* @__PURE__ */
|
|
3765
|
+
return /* @__PURE__ */ React70.createElement(
|
|
3728
3766
|
"svg",
|
|
3729
3767
|
{
|
|
3730
3768
|
width: sizeValue,
|
|
@@ -3734,7 +3772,7 @@ var init_Trash2 = __esm({
|
|
|
3734
3772
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3735
3773
|
...props
|
|
3736
3774
|
},
|
|
3737
|
-
/* @__PURE__ */
|
|
3775
|
+
/* @__PURE__ */ React70.createElement(
|
|
3738
3776
|
"path",
|
|
3739
3777
|
{
|
|
3740
3778
|
fillRule: "evenodd",
|
|
@@ -3743,7 +3781,7 @@ var init_Trash2 = __esm({
|
|
|
3743
3781
|
fill: "currentColor"
|
|
3744
3782
|
}
|
|
3745
3783
|
),
|
|
3746
|
-
/* @__PURE__ */
|
|
3784
|
+
/* @__PURE__ */ React70.createElement(
|
|
3747
3785
|
"path",
|
|
3748
3786
|
{
|
|
3749
3787
|
fillRule: "evenodd",
|
|
@@ -3752,7 +3790,7 @@ var init_Trash2 = __esm({
|
|
|
3752
3790
|
fill: "currentColor"
|
|
3753
3791
|
}
|
|
3754
3792
|
),
|
|
3755
|
-
/* @__PURE__ */
|
|
3793
|
+
/* @__PURE__ */ React70.createElement(
|
|
3756
3794
|
"path",
|
|
3757
3795
|
{
|
|
3758
3796
|
fillRule: "evenodd",
|
|
@@ -3761,7 +3799,7 @@ var init_Trash2 = __esm({
|
|
|
3761
3799
|
fill: "currentColor"
|
|
3762
3800
|
}
|
|
3763
3801
|
),
|
|
3764
|
-
/* @__PURE__ */
|
|
3802
|
+
/* @__PURE__ */ React70.createElement(
|
|
3765
3803
|
"path",
|
|
3766
3804
|
{
|
|
3767
3805
|
fillRule: "evenodd",
|
|
@@ -3770,7 +3808,7 @@ var init_Trash2 = __esm({
|
|
|
3770
3808
|
fill: "currentColor"
|
|
3771
3809
|
}
|
|
3772
3810
|
),
|
|
3773
|
-
/* @__PURE__ */
|
|
3811
|
+
/* @__PURE__ */ React70.createElement(
|
|
3774
3812
|
"path",
|
|
3775
3813
|
{
|
|
3776
3814
|
fillRule: "evenodd",
|
|
@@ -3790,15 +3828,15 @@ var User_exports = {};
|
|
|
3790
3828
|
__export(User_exports, {
|
|
3791
3829
|
default: () => User_default
|
|
3792
3830
|
});
|
|
3793
|
-
var
|
|
3831
|
+
var React71, SvgUser, User_default;
|
|
3794
3832
|
var init_User = __esm({
|
|
3795
3833
|
"src/react/User.tsx"() {
|
|
3796
3834
|
"use strict";
|
|
3797
|
-
|
|
3835
|
+
React71 = __toESM(require("react"));
|
|
3798
3836
|
init_types();
|
|
3799
3837
|
SvgUser = ({ size = 16, ...props }) => {
|
|
3800
3838
|
const sizeValue = resolveSize(size);
|
|
3801
|
-
return /* @__PURE__ */
|
|
3839
|
+
return /* @__PURE__ */ React71.createElement(
|
|
3802
3840
|
"svg",
|
|
3803
3841
|
{
|
|
3804
3842
|
width: sizeValue,
|
|
@@ -3808,7 +3846,7 @@ var init_User = __esm({
|
|
|
3808
3846
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3809
3847
|
...props
|
|
3810
3848
|
},
|
|
3811
|
-
/* @__PURE__ */
|
|
3849
|
+
/* @__PURE__ */ React71.createElement(
|
|
3812
3850
|
"path",
|
|
3813
3851
|
{
|
|
3814
3852
|
fillRule: "evenodd",
|
|
@@ -3817,7 +3855,7 @@ var init_User = __esm({
|
|
|
3817
3855
|
fill: "currentColor"
|
|
3818
3856
|
}
|
|
3819
3857
|
),
|
|
3820
|
-
/* @__PURE__ */
|
|
3858
|
+
/* @__PURE__ */ React71.createElement(
|
|
3821
3859
|
"path",
|
|
3822
3860
|
{
|
|
3823
3861
|
fillRule: "evenodd",
|
|
@@ -3837,15 +3875,15 @@ var Whatsapp_exports = {};
|
|
|
3837
3875
|
__export(Whatsapp_exports, {
|
|
3838
3876
|
default: () => Whatsapp_default
|
|
3839
3877
|
});
|
|
3840
|
-
var
|
|
3878
|
+
var React72, SvgWhatsapp, Whatsapp_default;
|
|
3841
3879
|
var init_Whatsapp = __esm({
|
|
3842
3880
|
"src/react/Whatsapp.tsx"() {
|
|
3843
3881
|
"use strict";
|
|
3844
|
-
|
|
3882
|
+
React72 = __toESM(require("react"));
|
|
3845
3883
|
init_types();
|
|
3846
3884
|
SvgWhatsapp = ({ size = 16, ...props }) => {
|
|
3847
3885
|
const sizeValue = resolveSize(size);
|
|
3848
|
-
return /* @__PURE__ */
|
|
3886
|
+
return /* @__PURE__ */ React72.createElement(
|
|
3849
3887
|
"svg",
|
|
3850
3888
|
{
|
|
3851
3889
|
width: sizeValue,
|
|
@@ -3855,7 +3893,7 @@ var init_Whatsapp = __esm({
|
|
|
3855
3893
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3856
3894
|
...props
|
|
3857
3895
|
},
|
|
3858
|
-
/* @__PURE__ */
|
|
3896
|
+
/* @__PURE__ */ React72.createElement(
|
|
3859
3897
|
"path",
|
|
3860
3898
|
{
|
|
3861
3899
|
fillRule: "evenodd",
|
|
@@ -3933,6 +3971,7 @@ __export(react_exports, {
|
|
|
3933
3971
|
Payments: () => Payments_default,
|
|
3934
3972
|
PencilLine: () => PencilLine_default,
|
|
3935
3973
|
PhoneLinear: () => PhoneLinear_default,
|
|
3974
|
+
PinMapSolid: () => PinMapSolid_default,
|
|
3936
3975
|
Plus: () => Plus_default,
|
|
3937
3976
|
Promotion: () => Promotion_default,
|
|
3938
3977
|
PropertiesFilled: () => PropertiesFilled_default,
|
|
@@ -4007,6 +4046,7 @@ init_Notes();
|
|
|
4007
4046
|
init_Payments();
|
|
4008
4047
|
init_PencilLine();
|
|
4009
4048
|
init_PhoneLinear();
|
|
4049
|
+
init_PinMapSolid();
|
|
4010
4050
|
init_Plus();
|
|
4011
4051
|
init_Promotion();
|
|
4012
4052
|
init_PropertiesFilled();
|
|
@@ -4022,7 +4062,7 @@ init_User();
|
|
|
4022
4062
|
init_Whatsapp();
|
|
4023
4063
|
|
|
4024
4064
|
// src/react/Icon.tsx
|
|
4025
|
-
var
|
|
4065
|
+
var React73 = __toESM(require("react"));
|
|
4026
4066
|
function loadIcon(name) {
|
|
4027
4067
|
switch (name) {
|
|
4028
4068
|
case "add-note":
|
|
@@ -4141,6 +4181,8 @@ function loadIcon(name) {
|
|
|
4141
4181
|
return Promise.resolve().then(() => (init_PencilLine(), PencilLine_exports)).then((m) => m.default);
|
|
4142
4182
|
case "phone-linear":
|
|
4143
4183
|
return Promise.resolve().then(() => (init_PhoneLinear(), PhoneLinear_exports)).then((m) => m.default);
|
|
4184
|
+
case "pin-map-solid":
|
|
4185
|
+
return Promise.resolve().then(() => (init_PinMapSolid(), PinMapSolid_exports)).then((m) => m.default);
|
|
4144
4186
|
case "plus":
|
|
4145
4187
|
return Promise.resolve().then(() => (init_Plus(), Plus_exports)).then((m) => m.default);
|
|
4146
4188
|
case "promotion":
|
|
@@ -4172,10 +4214,10 @@ function loadIcon(name) {
|
|
|
4172
4214
|
}
|
|
4173
4215
|
}
|
|
4174
4216
|
var Icon = ({ name, size = 16, color, ...props }) => {
|
|
4175
|
-
const [IconComponent, setIconComponent] =
|
|
4176
|
-
const [loading, setLoading] =
|
|
4177
|
-
const [error, setError] =
|
|
4178
|
-
|
|
4217
|
+
const [IconComponent, setIconComponent] = React73.useState(null);
|
|
4218
|
+
const [loading, setLoading] = React73.useState(true);
|
|
4219
|
+
const [error, setError] = React73.useState(null);
|
|
4220
|
+
React73.useEffect(() => {
|
|
4179
4221
|
setLoading(true);
|
|
4180
4222
|
setError(null);
|
|
4181
4223
|
loadIcon(name).then((Component) => {
|
|
@@ -4194,7 +4236,7 @@ var Icon = ({ name, size = 16, color, ...props }) => {
|
|
|
4194
4236
|
return null;
|
|
4195
4237
|
}
|
|
4196
4238
|
const style = color ? { ...props.style, color } : props.style;
|
|
4197
|
-
return /* @__PURE__ */
|
|
4239
|
+
return /* @__PURE__ */ React73.createElement(IconComponent, { size, ...props, style });
|
|
4198
4240
|
};
|
|
4199
4241
|
var Icon_default = Icon;
|
|
4200
4242
|
|