@tabler/icons 1.42.0 → 1.43.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/iconfont/fonts/tabler-icons.eot +0 -0
- package/iconfont/fonts/tabler-icons.svg +114 -60
- package/iconfont/fonts/tabler-icons.ttf +0 -0
- package/iconfont/fonts/tabler-icons.woff +0 -0
- package/iconfont/fonts/tabler-icons.woff2 +0 -0
- package/iconfont/tabler-icons.css +73 -1
- package/iconfont/tabler-icons.html +164 -2
- package/iconfont/tabler-icons.min.css +2 -2
- package/iconfont/tabler-icons.scss +37 -1
- package/icons/axis-x.svg +10 -0
- package/icons/axis-y.svg +10 -0
- package/icons/backpack.svg +8 -0
- package/icons/bath.svg +9 -0
- package/icons/brand-mastercard.svg +8 -0
- package/icons/brand-stack-ofverflow.svg +10 -0
- package/icons/currency-dogecoin.svg +8 -0
- package/icons/door-enter.svg +9 -0
- package/icons/door-exit.svg +9 -0
- package/icons/door.svg +8 -0
- package/icons/hand-click.svg +13 -0
- package/icons/hand-move.svg +11 -0
- package/icons/lock-square.svg +8 -0
- package/icons/pig.svg +7 -0
- package/icons/scale-outline.svg +7 -0
- package/icons/spacing-horizontal.svg +8 -0
- package/icons/spacing-vertical.svg +8 -0
- package/icons/wallpaper.svg +8 -0
- package/icons-png/axis-x.png +0 -0
- package/icons-png/axis-y.png +0 -0
- package/icons-png/backpack.png +0 -0
- package/icons-png/bath.png +0 -0
- package/icons-png/brand-mastercard.png +0 -0
- package/icons-png/brand-stack-ofverflow.png +0 -0
- package/icons-png/currency-dogecoin.png +0 -0
- package/icons-png/door-enter.png +0 -0
- package/icons-png/door-exit.png +0 -0
- package/icons-png/door.png +0 -0
- package/icons-png/hand-click.png +0 -0
- package/icons-png/hand-move.png +0 -0
- package/icons-png/lock-square.png +0 -0
- package/icons-png/pig.png +0 -0
- package/icons-png/scale-outline.png +0 -0
- package/icons-png/spacing-horizontal.png +0 -0
- package/icons-png/spacing-vertical.png +0 -0
- package/icons-png/wallpaper.png +0 -0
- package/icons-react/dist/index.cjs.js +644 -0
- package/icons-react/dist/index.cjs.js.map +1 -1
- package/icons-react/dist/index.cjs.min.js +1 -1
- package/icons-react/dist/index.cjs.min.js.map +1 -1
- package/icons-react/dist/index.esm.js +627 -1
- package/icons-react/dist/index.esm.js.map +1 -1
- package/icons-react/dist/index.esm.min.js +1 -1
- package/icons-react/dist/index.esm.min.js.map +1 -1
- package/icons-react/dist/index.umd.js +644 -0
- package/icons-react/dist/index.umd.js.map +1 -1
- package/icons-react/dist/index.umd.min.js +1 -1
- package/icons-react/dist/index.umd.min.js.map +1 -1
- package/icons-react/index.d.ts +18 -0
- package/package.json +1 -1
- package/tabler-sprite-nostroke.svg +1 -1
- package/tabler-sprite.svg +1 -1
- package/tags.json +195 -24
|
@@ -5242,6 +5242,78 @@ function IconAward(_ref) {
|
|
|
5242
5242
|
}));
|
|
5243
5243
|
}
|
|
5244
5244
|
|
|
5245
|
+
function IconAxisX(_ref) {
|
|
5246
|
+
var _ref$size = _ref.size,
|
|
5247
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
5248
|
+
_ref$color = _ref.color,
|
|
5249
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
5250
|
+
_ref$stroke = _ref.stroke,
|
|
5251
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
5252
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
5253
|
+
|
|
5254
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
5255
|
+
className: "icon icon-tabler icon-tabler-axis-x",
|
|
5256
|
+
width: size,
|
|
5257
|
+
height: size,
|
|
5258
|
+
viewBox: "0 0 24 24",
|
|
5259
|
+
strokeWidth: stroke,
|
|
5260
|
+
stroke: color,
|
|
5261
|
+
fill: "none",
|
|
5262
|
+
strokeLinecap: "round",
|
|
5263
|
+
strokeLinejoin: "round"
|
|
5264
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
5265
|
+
stroke: "none",
|
|
5266
|
+
d: "M0 0h24v24H0z",
|
|
5267
|
+
fill: "none"
|
|
5268
|
+
}), /*#__PURE__*/createElement("path", {
|
|
5269
|
+
d: "M4 13v.01"
|
|
5270
|
+
}), /*#__PURE__*/createElement("path", {
|
|
5271
|
+
d: "M4 9v.01"
|
|
5272
|
+
}), /*#__PURE__*/createElement("path", {
|
|
5273
|
+
d: "M4 5v.01"
|
|
5274
|
+
}), /*#__PURE__*/createElement("path", {
|
|
5275
|
+
d: "M17 20l3 -3l-3 -3"
|
|
5276
|
+
}), /*#__PURE__*/createElement("path", {
|
|
5277
|
+
d: "M4 17h16"
|
|
5278
|
+
}));
|
|
5279
|
+
}
|
|
5280
|
+
|
|
5281
|
+
function IconAxisY(_ref) {
|
|
5282
|
+
var _ref$size = _ref.size,
|
|
5283
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
5284
|
+
_ref$color = _ref.color,
|
|
5285
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
5286
|
+
_ref$stroke = _ref.stroke,
|
|
5287
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
5288
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
5289
|
+
|
|
5290
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
5291
|
+
className: "icon icon-tabler icon-tabler-axis-y",
|
|
5292
|
+
width: size,
|
|
5293
|
+
height: size,
|
|
5294
|
+
viewBox: "0 0 24 24",
|
|
5295
|
+
strokeWidth: stroke,
|
|
5296
|
+
stroke: color,
|
|
5297
|
+
fill: "none",
|
|
5298
|
+
strokeLinecap: "round",
|
|
5299
|
+
strokeLinejoin: "round"
|
|
5300
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
5301
|
+
stroke: "none",
|
|
5302
|
+
d: "M0 0h24v24H0z",
|
|
5303
|
+
fill: "none"
|
|
5304
|
+
}), /*#__PURE__*/createElement("path", {
|
|
5305
|
+
d: "M11 20h-.01"
|
|
5306
|
+
}), /*#__PURE__*/createElement("path", {
|
|
5307
|
+
d: "M15 20h-.01"
|
|
5308
|
+
}), /*#__PURE__*/createElement("path", {
|
|
5309
|
+
d: "M19 20h-.01"
|
|
5310
|
+
}), /*#__PURE__*/createElement("path", {
|
|
5311
|
+
d: "M4 7l3 -3l3 3"
|
|
5312
|
+
}), /*#__PURE__*/createElement("path", {
|
|
5313
|
+
d: "M7 20v-16"
|
|
5314
|
+
}));
|
|
5315
|
+
}
|
|
5316
|
+
|
|
5245
5317
|
function IconBackhoe(_ref) {
|
|
5246
5318
|
var _ref$size = _ref.size,
|
|
5247
5319
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -5294,6 +5366,38 @@ function IconBackhoe(_ref) {
|
|
|
5294
5366
|
}));
|
|
5295
5367
|
}
|
|
5296
5368
|
|
|
5369
|
+
function IconBackpack(_ref) {
|
|
5370
|
+
var _ref$size = _ref.size,
|
|
5371
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
5372
|
+
_ref$color = _ref.color,
|
|
5373
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
5374
|
+
_ref$stroke = _ref.stroke,
|
|
5375
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
5376
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
5377
|
+
|
|
5378
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
5379
|
+
className: "icon icon-tabler icon-tabler-backpack",
|
|
5380
|
+
width: size,
|
|
5381
|
+
height: size,
|
|
5382
|
+
viewBox: "0 0 24 24",
|
|
5383
|
+
strokeWidth: stroke,
|
|
5384
|
+
stroke: color,
|
|
5385
|
+
fill: "none",
|
|
5386
|
+
strokeLinecap: "round",
|
|
5387
|
+
strokeLinejoin: "round"
|
|
5388
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
5389
|
+
stroke: "none",
|
|
5390
|
+
d: "M0 0h24v24H0z",
|
|
5391
|
+
fill: "none"
|
|
5392
|
+
}), /*#__PURE__*/createElement("path", {
|
|
5393
|
+
d: "M11 7h2a6 6 0 0 1 6 6v6a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1v-6a6 6 0 0 1 6 -6z"
|
|
5394
|
+
}), /*#__PURE__*/createElement("path", {
|
|
5395
|
+
d: "M10 7v-1a2 2 0 1 1 4 0v1"
|
|
5396
|
+
}), /*#__PURE__*/createElement("path", {
|
|
5397
|
+
d: "M10 15h4"
|
|
5398
|
+
}));
|
|
5399
|
+
}
|
|
5400
|
+
|
|
5297
5401
|
function IconBackspace(_ref) {
|
|
5298
5402
|
var _ref$size = _ref.size,
|
|
5299
5403
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -5817,6 +5921,40 @@ function IconBasket(_ref) {
|
|
|
5817
5921
|
}));
|
|
5818
5922
|
}
|
|
5819
5923
|
|
|
5924
|
+
function IconBath(_ref) {
|
|
5925
|
+
var _ref$size = _ref.size,
|
|
5926
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
5927
|
+
_ref$color = _ref.color,
|
|
5928
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
5929
|
+
_ref$stroke = _ref.stroke,
|
|
5930
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
5931
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
5932
|
+
|
|
5933
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
5934
|
+
className: "icon icon-tabler icon-tabler-bath",
|
|
5935
|
+
width: size,
|
|
5936
|
+
height: size,
|
|
5937
|
+
viewBox: "0 0 24 24",
|
|
5938
|
+
strokeWidth: stroke,
|
|
5939
|
+
stroke: color,
|
|
5940
|
+
fill: "none",
|
|
5941
|
+
strokeLinecap: "round",
|
|
5942
|
+
strokeLinejoin: "round"
|
|
5943
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
5944
|
+
stroke: "none",
|
|
5945
|
+
d: "M0 0h24v24H0z",
|
|
5946
|
+
fill: "none"
|
|
5947
|
+
}), /*#__PURE__*/createElement("path", {
|
|
5948
|
+
d: "M4 12h16a1 1 0 0 1 1 1v3a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1z"
|
|
5949
|
+
}), /*#__PURE__*/createElement("path", {
|
|
5950
|
+
d: "M6 12v-7a2 2 0 0 1 2 -2h3v2.25"
|
|
5951
|
+
}), /*#__PURE__*/createElement("path", {
|
|
5952
|
+
d: "M4 21l1 -1.5"
|
|
5953
|
+
}), /*#__PURE__*/createElement("path", {
|
|
5954
|
+
d: "M20 21l-1 -1.5"
|
|
5955
|
+
}));
|
|
5956
|
+
}
|
|
5957
|
+
|
|
5820
5958
|
function IconBattery1(_ref) {
|
|
5821
5959
|
var _ref$size = _ref.size,
|
|
5822
5960
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -10344,6 +10482,44 @@ function IconBrandLinkedin(_ref) {
|
|
|
10344
10482
|
}));
|
|
10345
10483
|
}
|
|
10346
10484
|
|
|
10485
|
+
function IconBrandMastercard(_ref) {
|
|
10486
|
+
var _ref$size = _ref.size,
|
|
10487
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
10488
|
+
_ref$color = _ref.color,
|
|
10489
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
10490
|
+
_ref$stroke = _ref.stroke,
|
|
10491
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
10492
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
10493
|
+
|
|
10494
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
10495
|
+
className: "icon icon-tabler icon-tabler-brand-mastercard",
|
|
10496
|
+
width: size,
|
|
10497
|
+
height: size,
|
|
10498
|
+
viewBox: "0 0 24 24",
|
|
10499
|
+
strokeWidth: stroke,
|
|
10500
|
+
stroke: color,
|
|
10501
|
+
fill: "none",
|
|
10502
|
+
strokeLinecap: "round",
|
|
10503
|
+
strokeLinejoin: "round"
|
|
10504
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
10505
|
+
stroke: "none",
|
|
10506
|
+
d: "M0 0h24v24H0z",
|
|
10507
|
+
fill: "none"
|
|
10508
|
+
}), /*#__PURE__*/createElement("circle", {
|
|
10509
|
+
cx: 14,
|
|
10510
|
+
cy: 12,
|
|
10511
|
+
r: 3
|
|
10512
|
+
}), /*#__PURE__*/createElement("path", {
|
|
10513
|
+
d: "M12.001 9.765a3 3 0 1 0 0 4.47"
|
|
10514
|
+
}), /*#__PURE__*/createElement("rect", {
|
|
10515
|
+
x: 3,
|
|
10516
|
+
y: 5,
|
|
10517
|
+
width: 18,
|
|
10518
|
+
height: 14,
|
|
10519
|
+
rx: 2
|
|
10520
|
+
}));
|
|
10521
|
+
}
|
|
10522
|
+
|
|
10347
10523
|
function IconBrandMedium(_ref) {
|
|
10348
10524
|
var _ref$size = _ref.size,
|
|
10349
10525
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -11119,6 +11295,42 @@ function IconBrandSpotify(_ref) {
|
|
|
11119
11295
|
}));
|
|
11120
11296
|
}
|
|
11121
11297
|
|
|
11298
|
+
function IconBrandStackOfverflow(_ref) {
|
|
11299
|
+
var _ref$size = _ref.size,
|
|
11300
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
11301
|
+
_ref$color = _ref.color,
|
|
11302
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
11303
|
+
_ref$stroke = _ref.stroke,
|
|
11304
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
11305
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
11306
|
+
|
|
11307
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
11308
|
+
className: "icon icon-tabler icon-tabler-brand-stack-ofverflow",
|
|
11309
|
+
width: size,
|
|
11310
|
+
height: size,
|
|
11311
|
+
viewBox: "0 0 24 24",
|
|
11312
|
+
strokeWidth: stroke,
|
|
11313
|
+
stroke: color,
|
|
11314
|
+
fill: "none",
|
|
11315
|
+
strokeLinecap: "round",
|
|
11316
|
+
strokeLinejoin: "round"
|
|
11317
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
11318
|
+
stroke: "none",
|
|
11319
|
+
d: "M0 0h24v24H0z",
|
|
11320
|
+
fill: "none"
|
|
11321
|
+
}), /*#__PURE__*/createElement("path", {
|
|
11322
|
+
d: "M4 17v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-1"
|
|
11323
|
+
}), /*#__PURE__*/createElement("path", {
|
|
11324
|
+
d: "M8 16h8"
|
|
11325
|
+
}), /*#__PURE__*/createElement("path", {
|
|
11326
|
+
d: "M8.322 12.582l7.956 .836"
|
|
11327
|
+
}), /*#__PURE__*/createElement("path", {
|
|
11328
|
+
d: "M8.787 9.168l7.826 1.664"
|
|
11329
|
+
}), /*#__PURE__*/createElement("path", {
|
|
11330
|
+
d: "M10.096 5.764l7.608 2.472"
|
|
11331
|
+
}));
|
|
11332
|
+
}
|
|
11333
|
+
|
|
11122
11334
|
function IconBrandSteam(_ref) {
|
|
11123
11335
|
var _ref$size = _ref.size,
|
|
11124
11336
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -19208,6 +19420,38 @@ function IconCurrencyDirham(_ref) {
|
|
|
19208
19420
|
}));
|
|
19209
19421
|
}
|
|
19210
19422
|
|
|
19423
|
+
function IconCurrencyDogecoin(_ref) {
|
|
19424
|
+
var _ref$size = _ref.size,
|
|
19425
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
19426
|
+
_ref$color = _ref.color,
|
|
19427
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
19428
|
+
_ref$stroke = _ref.stroke,
|
|
19429
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
19430
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
19431
|
+
|
|
19432
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
19433
|
+
className: "icon icon-tabler icon-tabler-currency-dogecoin",
|
|
19434
|
+
width: size,
|
|
19435
|
+
height: size,
|
|
19436
|
+
viewBox: "0 0 24 24",
|
|
19437
|
+
strokeWidth: stroke,
|
|
19438
|
+
stroke: color,
|
|
19439
|
+
fill: "none",
|
|
19440
|
+
strokeLinecap: "round",
|
|
19441
|
+
strokeLinejoin: "round"
|
|
19442
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
19443
|
+
stroke: "none",
|
|
19444
|
+
d: "M0 0h24v24H0z",
|
|
19445
|
+
fill: "none"
|
|
19446
|
+
}), /*#__PURE__*/createElement("path", {
|
|
19447
|
+
d: "M6 12h6"
|
|
19448
|
+
}), /*#__PURE__*/createElement("path", {
|
|
19449
|
+
d: "M8 5v14"
|
|
19450
|
+
}), /*#__PURE__*/createElement("path", {
|
|
19451
|
+
d: "M5 19h7a7 7 0 0 0 0 -14h-7"
|
|
19452
|
+
}));
|
|
19453
|
+
}
|
|
19454
|
+
|
|
19211
19455
|
function IconCurrencyDollarAustralian(_ref) {
|
|
19212
19456
|
var _ref$size = _ref.size,
|
|
19213
19457
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -21914,6 +22158,106 @@ function IconDogBowl(_ref) {
|
|
|
21914
22158
|
}));
|
|
21915
22159
|
}
|
|
21916
22160
|
|
|
22161
|
+
function IconDoorEnter(_ref) {
|
|
22162
|
+
var _ref$size = _ref.size,
|
|
22163
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
22164
|
+
_ref$color = _ref.color,
|
|
22165
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
22166
|
+
_ref$stroke = _ref.stroke,
|
|
22167
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
22168
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
22169
|
+
|
|
22170
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
22171
|
+
className: "icon icon-tabler icon-tabler-door-enter",
|
|
22172
|
+
width: size,
|
|
22173
|
+
height: size,
|
|
22174
|
+
viewBox: "0 0 24 24",
|
|
22175
|
+
strokeWidth: stroke,
|
|
22176
|
+
stroke: color,
|
|
22177
|
+
fill: "none",
|
|
22178
|
+
strokeLinecap: "round",
|
|
22179
|
+
strokeLinejoin: "round"
|
|
22180
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
22181
|
+
stroke: "none",
|
|
22182
|
+
d: "M0 0h24v24H0z",
|
|
22183
|
+
fill: "none"
|
|
22184
|
+
}), /*#__PURE__*/createElement("path", {
|
|
22185
|
+
d: "M13 12v.01"
|
|
22186
|
+
}), /*#__PURE__*/createElement("path", {
|
|
22187
|
+
d: "M3 21h18"
|
|
22188
|
+
}), /*#__PURE__*/createElement("path", {
|
|
22189
|
+
d: "M5 21v-16a2 2 0 0 1 2 -2h6m4 10.5v7.5"
|
|
22190
|
+
}), /*#__PURE__*/createElement("path", {
|
|
22191
|
+
d: "M21 7h-7m3 -3l-3 3l3 3"
|
|
22192
|
+
}));
|
|
22193
|
+
}
|
|
22194
|
+
|
|
22195
|
+
function IconDoorExit(_ref) {
|
|
22196
|
+
var _ref$size = _ref.size,
|
|
22197
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
22198
|
+
_ref$color = _ref.color,
|
|
22199
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
22200
|
+
_ref$stroke = _ref.stroke,
|
|
22201
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
22202
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
22203
|
+
|
|
22204
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
22205
|
+
className: "icon icon-tabler icon-tabler-door-exit",
|
|
22206
|
+
width: size,
|
|
22207
|
+
height: size,
|
|
22208
|
+
viewBox: "0 0 24 24",
|
|
22209
|
+
strokeWidth: stroke,
|
|
22210
|
+
stroke: color,
|
|
22211
|
+
fill: "none",
|
|
22212
|
+
strokeLinecap: "round",
|
|
22213
|
+
strokeLinejoin: "round"
|
|
22214
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
22215
|
+
stroke: "none",
|
|
22216
|
+
d: "M0 0h24v24H0z",
|
|
22217
|
+
fill: "none"
|
|
22218
|
+
}), /*#__PURE__*/createElement("path", {
|
|
22219
|
+
d: "M13 12v.01"
|
|
22220
|
+
}), /*#__PURE__*/createElement("path", {
|
|
22221
|
+
d: "M3 21h18"
|
|
22222
|
+
}), /*#__PURE__*/createElement("path", {
|
|
22223
|
+
d: "M5 21v-16a2 2 0 0 1 2 -2h7.5m2.5 10.5v7.5"
|
|
22224
|
+
}), /*#__PURE__*/createElement("path", {
|
|
22225
|
+
d: "M14 7h7m-3 -3l3 3l-3 3"
|
|
22226
|
+
}));
|
|
22227
|
+
}
|
|
22228
|
+
|
|
22229
|
+
function IconDoor(_ref) {
|
|
22230
|
+
var _ref$size = _ref.size,
|
|
22231
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
22232
|
+
_ref$color = _ref.color,
|
|
22233
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
22234
|
+
_ref$stroke = _ref.stroke,
|
|
22235
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
22236
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
22237
|
+
|
|
22238
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
22239
|
+
className: "icon icon-tabler icon-tabler-door",
|
|
22240
|
+
width: size,
|
|
22241
|
+
height: size,
|
|
22242
|
+
viewBox: "0 0 24 24",
|
|
22243
|
+
strokeWidth: stroke,
|
|
22244
|
+
stroke: color,
|
|
22245
|
+
fill: "none",
|
|
22246
|
+
strokeLinecap: "round",
|
|
22247
|
+
strokeLinejoin: "round"
|
|
22248
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
22249
|
+
stroke: "none",
|
|
22250
|
+
d: "M0 0h24v24H0z",
|
|
22251
|
+
fill: "none"
|
|
22252
|
+
}), /*#__PURE__*/createElement("path", {
|
|
22253
|
+
d: "M14 12v.01"
|
|
22254
|
+
}), /*#__PURE__*/createElement("path", {
|
|
22255
|
+
d: "M3 21h18"
|
|
22256
|
+
}), /*#__PURE__*/createElement("path", {
|
|
22257
|
+
d: "M6 21v-16a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v16"
|
|
22258
|
+
}));
|
|
22259
|
+
}
|
|
22260
|
+
|
|
21917
22261
|
function IconDotsCircleHorizontal(_ref) {
|
|
21918
22262
|
var _ref$size = _ref.size,
|
|
21919
22263
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -26999,6 +27343,48 @@ function IconH6(_ref) {
|
|
|
26999
27343
|
}));
|
|
27000
27344
|
}
|
|
27001
27345
|
|
|
27346
|
+
function IconHandClick(_ref) {
|
|
27347
|
+
var _ref$size = _ref.size,
|
|
27348
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
27349
|
+
_ref$color = _ref.color,
|
|
27350
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
27351
|
+
_ref$stroke = _ref.stroke,
|
|
27352
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
27353
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
27354
|
+
|
|
27355
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
27356
|
+
className: "icon icon-tabler icon-tabler-hand-click",
|
|
27357
|
+
width: size,
|
|
27358
|
+
height: size,
|
|
27359
|
+
viewBox: "0 0 24 24",
|
|
27360
|
+
strokeWidth: stroke,
|
|
27361
|
+
stroke: color,
|
|
27362
|
+
fill: "none",
|
|
27363
|
+
strokeLinecap: "round",
|
|
27364
|
+
strokeLinejoin: "round"
|
|
27365
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
27366
|
+
stroke: "none",
|
|
27367
|
+
d: "M0 0h24v24H0z",
|
|
27368
|
+
fill: "none"
|
|
27369
|
+
}), /*#__PURE__*/createElement("path", {
|
|
27370
|
+
d: "M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"
|
|
27371
|
+
}), /*#__PURE__*/createElement("path", {
|
|
27372
|
+
d: "M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"
|
|
27373
|
+
}), /*#__PURE__*/createElement("path", {
|
|
27374
|
+
d: "M14 10.5a1.5 1.5 0 0 1 3 0v1.5"
|
|
27375
|
+
}), /*#__PURE__*/createElement("path", {
|
|
27376
|
+
d: "M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"
|
|
27377
|
+
}), /*#__PURE__*/createElement("path", {
|
|
27378
|
+
d: "M5 3l-1 -1"
|
|
27379
|
+
}), /*#__PURE__*/createElement("path", {
|
|
27380
|
+
d: "M4 7h-1"
|
|
27381
|
+
}), /*#__PURE__*/createElement("path", {
|
|
27382
|
+
d: "M14 3l1 -1"
|
|
27383
|
+
}), /*#__PURE__*/createElement("path", {
|
|
27384
|
+
d: "M15 6h1"
|
|
27385
|
+
}));
|
|
27386
|
+
}
|
|
27387
|
+
|
|
27002
27388
|
function IconHandFinger(_ref) {
|
|
27003
27389
|
var _ref$size = _ref.size,
|
|
27004
27390
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -27101,6 +27487,44 @@ function IconHandMiddleFinger(_ref) {
|
|
|
27101
27487
|
}));
|
|
27102
27488
|
}
|
|
27103
27489
|
|
|
27490
|
+
function IconHandMove(_ref) {
|
|
27491
|
+
var _ref$size = _ref.size,
|
|
27492
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
27493
|
+
_ref$color = _ref.color,
|
|
27494
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
27495
|
+
_ref$stroke = _ref.stroke,
|
|
27496
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
27497
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
27498
|
+
|
|
27499
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
27500
|
+
className: "icon icon-tabler icon-tabler-hand-move",
|
|
27501
|
+
width: size,
|
|
27502
|
+
height: size,
|
|
27503
|
+
viewBox: "0 0 24 24",
|
|
27504
|
+
strokeWidth: stroke,
|
|
27505
|
+
stroke: color,
|
|
27506
|
+
fill: "none",
|
|
27507
|
+
strokeLinecap: "round",
|
|
27508
|
+
strokeLinejoin: "round"
|
|
27509
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
27510
|
+
stroke: "none",
|
|
27511
|
+
d: "M0 0h24v24H0z",
|
|
27512
|
+
fill: "none"
|
|
27513
|
+
}), /*#__PURE__*/createElement("path", {
|
|
27514
|
+
d: "M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"
|
|
27515
|
+
}), /*#__PURE__*/createElement("path", {
|
|
27516
|
+
d: "M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"
|
|
27517
|
+
}), /*#__PURE__*/createElement("path", {
|
|
27518
|
+
d: "M14 10.5a1.5 1.5 0 0 1 3 0v1.5"
|
|
27519
|
+
}), /*#__PURE__*/createElement("path", {
|
|
27520
|
+
d: "M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"
|
|
27521
|
+
}), /*#__PURE__*/createElement("path", {
|
|
27522
|
+
d: "M2.541 5.594a13.487 13.487 0 0 1 2.46 -1.427"
|
|
27523
|
+
}), /*#__PURE__*/createElement("path", {
|
|
27524
|
+
d: "M14.001 3.458c1.32 .354 2.558 .902 3.685 1.612"
|
|
27525
|
+
}));
|
|
27526
|
+
}
|
|
27527
|
+
|
|
27104
27528
|
function IconHandOff(_ref) {
|
|
27105
27529
|
var _ref$size = _ref.size,
|
|
27106
27530
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -31864,6 +32288,46 @@ function IconLockOpen(_ref) {
|
|
|
31864
32288
|
}));
|
|
31865
32289
|
}
|
|
31866
32290
|
|
|
32291
|
+
function IconLockSquare(_ref) {
|
|
32292
|
+
var _ref$size = _ref.size,
|
|
32293
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
32294
|
+
_ref$color = _ref.color,
|
|
32295
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
32296
|
+
_ref$stroke = _ref.stroke,
|
|
32297
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
32298
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
32299
|
+
|
|
32300
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
32301
|
+
className: "icon icon-tabler icon-tabler-lock-square",
|
|
32302
|
+
width: size,
|
|
32303
|
+
height: size,
|
|
32304
|
+
viewBox: "0 0 24 24",
|
|
32305
|
+
strokeWidth: stroke,
|
|
32306
|
+
stroke: color,
|
|
32307
|
+
fill: "none",
|
|
32308
|
+
strokeLinecap: "round",
|
|
32309
|
+
strokeLinejoin: "round"
|
|
32310
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
32311
|
+
stroke: "none",
|
|
32312
|
+
d: "M0 0h24v24H0z",
|
|
32313
|
+
fill: "none"
|
|
32314
|
+
}), /*#__PURE__*/createElement("rect", {
|
|
32315
|
+
x: 8,
|
|
32316
|
+
y: 11,
|
|
32317
|
+
width: 8,
|
|
32318
|
+
height: 5,
|
|
32319
|
+
rx: 1
|
|
32320
|
+
}), /*#__PURE__*/createElement("path", {
|
|
32321
|
+
d: "M10 11v-2a2 2 0 1 1 4 0v2"
|
|
32322
|
+
}), /*#__PURE__*/createElement("rect", {
|
|
32323
|
+
x: 4,
|
|
32324
|
+
y: 4,
|
|
32325
|
+
width: 16,
|
|
32326
|
+
height: 16,
|
|
32327
|
+
rx: 2
|
|
32328
|
+
}));
|
|
32329
|
+
}
|
|
32330
|
+
|
|
31867
32331
|
function IconLock(_ref) {
|
|
31868
32332
|
var _ref$size = _ref.size,
|
|
31869
32333
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -36732,6 +37196,36 @@ function IconPictureInPicture(_ref) {
|
|
|
36732
37196
|
}));
|
|
36733
37197
|
}
|
|
36734
37198
|
|
|
37199
|
+
function IconPig(_ref) {
|
|
37200
|
+
var _ref$size = _ref.size,
|
|
37201
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
37202
|
+
_ref$color = _ref.color,
|
|
37203
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
37204
|
+
_ref$stroke = _ref.stroke,
|
|
37205
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
37206
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
37207
|
+
|
|
37208
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
37209
|
+
className: "icon icon-tabler icon-tabler-pig",
|
|
37210
|
+
width: size,
|
|
37211
|
+
height: size,
|
|
37212
|
+
viewBox: "0 0 24 24",
|
|
37213
|
+
strokeWidth: stroke,
|
|
37214
|
+
stroke: color,
|
|
37215
|
+
fill: "none",
|
|
37216
|
+
strokeLinecap: "round",
|
|
37217
|
+
strokeLinejoin: "round"
|
|
37218
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
37219
|
+
stroke: "none",
|
|
37220
|
+
d: "M0 0h24v24H0z",
|
|
37221
|
+
fill: "none"
|
|
37222
|
+
}), /*#__PURE__*/createElement("path", {
|
|
37223
|
+
d: "M15 11v.01"
|
|
37224
|
+
}), /*#__PURE__*/createElement("path", {
|
|
37225
|
+
d: "M16 3l.001 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342a6.008 6.008 0 0 1 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l.001 -.027a6 6 0 0 1 3.999 -10.473h2.5l4.5 -3z"
|
|
37226
|
+
}));
|
|
37227
|
+
}
|
|
37228
|
+
|
|
36735
37229
|
function IconPill(_ref) {
|
|
36736
37230
|
var _ref$size = _ref.size,
|
|
36737
37231
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -40001,6 +40495,40 @@ function IconSausage(_ref) {
|
|
|
40001
40495
|
}));
|
|
40002
40496
|
}
|
|
40003
40497
|
|
|
40498
|
+
function IconScaleOutline(_ref) {
|
|
40499
|
+
var _ref$size = _ref.size,
|
|
40500
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
40501
|
+
_ref$color = _ref.color,
|
|
40502
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
40503
|
+
_ref$stroke = _ref.stroke,
|
|
40504
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
40505
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
40506
|
+
|
|
40507
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
40508
|
+
className: "icon icon-tabler icon-tabler-scale-outline",
|
|
40509
|
+
width: size,
|
|
40510
|
+
height: size,
|
|
40511
|
+
viewBox: "0 0 24 24",
|
|
40512
|
+
strokeWidth: stroke,
|
|
40513
|
+
stroke: color,
|
|
40514
|
+
fill: "none",
|
|
40515
|
+
strokeLinecap: "round",
|
|
40516
|
+
strokeLinejoin: "round"
|
|
40517
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
40518
|
+
stroke: "none",
|
|
40519
|
+
d: "M0 0h24v24H0z",
|
|
40520
|
+
fill: "none"
|
|
40521
|
+
}), /*#__PURE__*/createElement("rect", {
|
|
40522
|
+
x: 3,
|
|
40523
|
+
y: 3,
|
|
40524
|
+
width: 18,
|
|
40525
|
+
height: 18,
|
|
40526
|
+
rx: 4
|
|
40527
|
+
}), /*#__PURE__*/createElement("path", {
|
|
40528
|
+
d: "M12 7c1.956 0 3.724 .802 4.994 2.095l-2.956 2.904a3 3 0 0 0 -2.038 -.799a3 3 0 0 0 -2.038 .798l-2.956 -2.903a6.979 6.979 0 0 1 4.994 -2.095z"
|
|
40529
|
+
}));
|
|
40530
|
+
}
|
|
40531
|
+
|
|
40004
40532
|
function IconScale(_ref) {
|
|
40005
40533
|
var _ref$size = _ref.size,
|
|
40006
40534
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -42431,6 +42959,70 @@ function IconSpace(_ref) {
|
|
|
42431
42959
|
}));
|
|
42432
42960
|
}
|
|
42433
42961
|
|
|
42962
|
+
function IconSpacingHorizontal(_ref) {
|
|
42963
|
+
var _ref$size = _ref.size,
|
|
42964
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
42965
|
+
_ref$color = _ref.color,
|
|
42966
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
42967
|
+
_ref$stroke = _ref.stroke,
|
|
42968
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
42969
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
42970
|
+
|
|
42971
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
42972
|
+
className: "icon icon-tabler icon-tabler-spacing-horizontal",
|
|
42973
|
+
width: size,
|
|
42974
|
+
height: size,
|
|
42975
|
+
viewBox: "0 0 24 24",
|
|
42976
|
+
strokeWidth: stroke,
|
|
42977
|
+
stroke: color,
|
|
42978
|
+
fill: "none",
|
|
42979
|
+
strokeLinecap: "round",
|
|
42980
|
+
strokeLinejoin: "round"
|
|
42981
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
42982
|
+
stroke: "none",
|
|
42983
|
+
d: "M0 0h24v24H0z",
|
|
42984
|
+
fill: "none"
|
|
42985
|
+
}), /*#__PURE__*/createElement("path", {
|
|
42986
|
+
d: "M20 20h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h2"
|
|
42987
|
+
}), /*#__PURE__*/createElement("path", {
|
|
42988
|
+
d: "M4 20h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"
|
|
42989
|
+
}), /*#__PURE__*/createElement("path", {
|
|
42990
|
+
d: "M12 8v8"
|
|
42991
|
+
}));
|
|
42992
|
+
}
|
|
42993
|
+
|
|
42994
|
+
function IconSpacingVertical(_ref) {
|
|
42995
|
+
var _ref$size = _ref.size,
|
|
42996
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
42997
|
+
_ref$color = _ref.color,
|
|
42998
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
42999
|
+
_ref$stroke = _ref.stroke,
|
|
43000
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
43001
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
43002
|
+
|
|
43003
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
43004
|
+
className: "icon icon-tabler icon-tabler-spacing-vertical",
|
|
43005
|
+
width: size,
|
|
43006
|
+
height: size,
|
|
43007
|
+
viewBox: "0 0 24 24",
|
|
43008
|
+
strokeWidth: stroke,
|
|
43009
|
+
stroke: color,
|
|
43010
|
+
fill: "none",
|
|
43011
|
+
strokeLinecap: "round",
|
|
43012
|
+
strokeLinejoin: "round"
|
|
43013
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
43014
|
+
stroke: "none",
|
|
43015
|
+
d: "M0 0h24v24H0z",
|
|
43016
|
+
fill: "none"
|
|
43017
|
+
}), /*#__PURE__*/createElement("path", {
|
|
43018
|
+
d: "M4 20v-2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2"
|
|
43019
|
+
}), /*#__PURE__*/createElement("path", {
|
|
43020
|
+
d: "M4 4v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"
|
|
43021
|
+
}), /*#__PURE__*/createElement("path", {
|
|
43022
|
+
d: "M16 12h-8"
|
|
43023
|
+
}));
|
|
43024
|
+
}
|
|
43025
|
+
|
|
42434
43026
|
function IconSpeakerphone(_ref) {
|
|
42435
43027
|
var _ref$size = _ref.size,
|
|
42436
43028
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -48588,6 +49180,40 @@ function IconWallet(_ref) {
|
|
|
48588
49180
|
}));
|
|
48589
49181
|
}
|
|
48590
49182
|
|
|
49183
|
+
function IconWallpaper(_ref) {
|
|
49184
|
+
var _ref$size = _ref.size,
|
|
49185
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
49186
|
+
_ref$color = _ref.color,
|
|
49187
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
49188
|
+
_ref$stroke = _ref.stroke,
|
|
49189
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
49190
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
49191
|
+
|
|
49192
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
49193
|
+
className: "icon icon-tabler icon-tabler-wallpaper",
|
|
49194
|
+
width: size,
|
|
49195
|
+
height: size,
|
|
49196
|
+
viewBox: "0 0 24 24",
|
|
49197
|
+
strokeWidth: stroke,
|
|
49198
|
+
stroke: color,
|
|
49199
|
+
fill: "none",
|
|
49200
|
+
strokeLinecap: "round",
|
|
49201
|
+
strokeLinejoin: "round"
|
|
49202
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
49203
|
+
stroke: "none",
|
|
49204
|
+
d: "M0 0h24v24H0z",
|
|
49205
|
+
fill: "none"
|
|
49206
|
+
}), /*#__PURE__*/createElement("path", {
|
|
49207
|
+
d: "M8 6h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-12"
|
|
49208
|
+
}), /*#__PURE__*/createElement("circle", {
|
|
49209
|
+
cx: 6,
|
|
49210
|
+
cy: 18,
|
|
49211
|
+
r: 2
|
|
49212
|
+
}), /*#__PURE__*/createElement("path", {
|
|
49213
|
+
d: "M8 18v-12a2 2 0 1 0 -4 0v12"
|
|
49214
|
+
}));
|
|
49215
|
+
}
|
|
49216
|
+
|
|
48591
49217
|
function IconWand(_ref) {
|
|
48592
49218
|
var _ref$size = _ref.size,
|
|
48593
49219
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -50014,5 +50640,5 @@ function IconZoomMoney(_ref) {
|
|
|
50014
50640
|
}));
|
|
50015
50641
|
}
|
|
50016
50642
|
|
|
50017
|
-
export { Icon2fa, Icon3dCubeSphere, IconAB, IconAccessPoint, IconAccessPointOff, IconAccessible, IconActivity, IconAd, IconAd2, IconAdjustments, IconAdjustmentsAlt, IconAdjustmentsHorizontal, IconAerialLift, IconAffiliate, IconAlarm, IconAlertCircle, IconAlertOctagon, IconAlertTriangle, IconAlien, IconAlignCenter, IconAlignJustified, IconAlignLeft, IconAlignRight, IconAmbulance, IconAnchor, IconAngle, IconAntennaBars1, IconAntennaBars2, IconAntennaBars3, IconAntennaBars4, IconAntennaBars5, IconAperture, IconApple, IconApps, IconArchive, IconArrowAutofitContent, IconArrowAutofitDown, IconArrowAutofitHeight, IconArrowAutofitLeft, IconArrowAutofitRight, IconArrowAutofitUp, IconArrowAutofitWidth, IconArrowBack, IconArrowBackUp, IconArrowBarDown, IconArrowBarLeft, IconArrowBarRight, IconArrowBarToDown, IconArrowBarToLeft, IconArrowBarToRight, IconArrowBarToUp, IconArrowBarUp, IconArrowBigDown, IconArrowBigLeft, IconArrowBigRight, IconArrowBigTop, IconArrowBottomBar, IconArrowBottomCircle, IconArrowBottomSquare, IconArrowBottomTail, IconArrowDown, IconArrowDownCircle, IconArrowDownLeft, IconArrowDownLeftCircle, IconArrowDownRight, IconArrowDownRightCircle, IconArrowForward, IconArrowForwardUp, IconArrowLeft, IconArrowLeftBar, IconArrowLeftCircle, IconArrowLeftSquare, IconArrowLeftTail, IconArrowLoopLeft, IconArrowLoopRight, IconArrowNarrowDown, IconArrowNarrowLeft, IconArrowNarrowRight, IconArrowNarrowUp, IconArrowRampLeft, IconArrowRampRight, IconArrowRight, IconArrowRightBar, IconArrowRightCircle, IconArrowRightSquare, IconArrowRightTail, IconArrowTopBar, IconArrowTopCircle, IconArrowTopSquare, IconArrowTopTail, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpLeftCircle, IconArrowUpRight, IconArrowUpRightCircle, IconArrowWaveLeftDown, IconArrowWaveLeftUp, IconArrowWaveRightDown, IconArrowWaveRightUp, IconArrowsDiagonal, IconArrowsDiagonal2, IconArrowsDiagonalMinimize, IconArrowsDiagonalMinimize2, IconArrowsDoubleNeSw, IconArrowsDoubleNwSe, IconArrowsDoubleSeNw, IconArrowsDoubleSwNe, IconArrowsDown, IconArrowsDownUp, IconArrowsHorizontal, IconArrowsJoin, IconArrowsJoin2, IconArrowsLeft, IconArrowsLeftDown, IconArrowsLeftRight, IconArrowsMaximize, IconArrowsMinimize, IconArrowsRight, IconArrowsRightDown, IconArrowsRightLeft, IconArrowsSort, IconArrowsSplit, IconArrowsSplit2, IconArrowsUp, IconArrowsUpDown, IconArrowsUpLeft, IconArrowsUpRight, IconArrowsVertical, IconArtboard, IconAspectRatio, IconAt, IconAtom, IconAtom2, IconAward, IconBackhoe, IconBackspace, IconBallAmericanFootball, IconBallBasketball, IconBallBowling, IconBallFootball, IconBallFootballOff, IconBallTennis, IconBallVolleyball, IconBallon, IconBan, IconBandage, IconBarcode, IconBasket, IconBattery, IconBattery1, IconBattery2, IconBattery3, IconBattery4, IconBatteryAutomotive, IconBatteryCharging, IconBatteryCharging2, IconBatteryEco, IconBatteryOff, IconBeach, IconBed, IconBell, IconBellMinus, IconBellOff, IconBellPlus, IconBellRinging, IconBellRinging2, IconBellX, IconBike, IconBinary, IconBiohazard, IconBlockquote, IconBluetooth, IconBluetoothConnected, IconBluetoothOff, IconBold, IconBolt, IconBoltOff, IconBone, IconBook, IconBookmark, IconBookmarkOff, IconBookmarks, IconBorderAll, IconBorderBottom, IconBorderHorizontal, IconBorderInner, IconBorderLeft, IconBorderNone, IconBorderOuter, IconBorderRadius, IconBorderRight, IconBorderStyle, IconBorderStyle2, IconBorderTop, IconBorderVertical, IconBottle, IconBox, IconBoxMargin, IconBoxModel, IconBoxModel2, IconBoxMultiple, IconBoxMultiple0, IconBoxMultiple1, IconBoxMultiple2, IconBoxMultiple3, IconBoxMultiple4, IconBoxMultiple5, IconBoxMultiple6, IconBoxMultiple7, IconBoxMultiple8, IconBoxMultiple9, IconBoxPadding, IconBraces, IconBrackets, IconBrandAirbnb, IconBrandAndroid, IconBrandApple, IconBrandAppleArcade, IconBrandAppstore, IconBrandAsana, IconBrandBehance, IconBrandBing, IconBrandBitbucket, IconBrandBooking, IconBrandBootstrap, IconBrandChrome, IconBrandCodepen, IconBrandCodesandbox, IconBrandCss3, IconBrandDeviantart, IconBrandDiscord, IconBrandDisqus, IconBrandDocker, IconBrandDribbble, IconBrandEdge, IconBrandFacebook, IconBrandFigma, IconBrandFirefox, IconBrandFlickr, IconBrandFoursquare, IconBrandFramer, IconBrandGithub, IconBrandGitlab, IconBrandGoogle, IconBrandGoogleAnalytics, IconBrandGoogleDrive, IconBrandGooglePlay, IconBrandGravatar, IconBrandHipchat, IconBrandHtml5, IconBrandInstagram, IconBrandJavascript, IconBrandKickstarter, IconBrandKotlin, IconBrandLinkedin, IconBrandMedium, IconBrandMessenger, IconBrandNetflix, IconBrandOpenSource, IconBrandOpera, IconBrandPagekit, IconBrandPatreon, IconBrandPaypal, IconBrandPinterest, IconBrandPocket, IconBrandProducthunt, IconBrandPython, IconBrandReddit, IconBrandSafari, IconBrandSass, IconBrandSentry, IconBrandShazam, IconBrandSketch, IconBrandSkype, IconBrandSlack, IconBrandSnapchat, IconBrandSoundcloud, IconBrandSpotify, IconBrandSteam, IconBrandStripe, IconBrandTabler, IconBrandTailwind, IconBrandTelegram, IconBrandTidal, IconBrandTiktok, IconBrandTinder, IconBrandTumblr, IconBrandTwitch, IconBrandTwitter, IconBrandUnsplash, IconBrandVercel, IconBrandVimeo, IconBrandVk, IconBrandWhatsapp, IconBrandWindows, IconBrandYahoo, IconBrandYcombinator, IconBrandYoutube, IconBriefcase, IconBrightness, IconBrightness2, IconBrightnessDown, IconBrightnessHalf, IconBrightnessUp, IconBrowser, IconBrush, IconBucket, IconBug, IconBuilding, IconBuildingArch, IconBuildingBank, IconBuildingBridge, IconBuildingBridge2, IconBuildingCarousel, IconBuildingCastle, IconBuildingChurch, IconBuildingCommunity, IconBuildingCottage, IconBuildingFactory, IconBuildingFortress, IconBuildingHospital, IconBuildingLighthouse, IconBuildingMonument, IconBuildingPavilon, IconBuildingSkyscraper, IconBuildingStore, IconBuildingWarehouse, IconBulb, IconBulbOff, IconBulldozer, IconBus, IconBusinessplan, IconCalculator, IconCalendar, IconCalendarEvent, IconCalendarMinus, IconCalendarOff, IconCalendarPlus, IconCalendarStats, IconCalendarTime, IconCamera, IconCameraMinus, IconCameraOff, IconCameraPlus, IconCameraRotate, IconCameraSelfie, IconCandy, IconCapture, IconCar, IconCarCrane, IconCaravan, IconCardboards, IconCaretDown, IconCaretLeft, IconCaretRight, IconCaretUp, IconCash, IconCashBanknote, IconCashBanknoteOff, IconCast, IconCe, IconCertificate, IconChargingPile, IconChartArcs, IconChartArcs3, IconChartArea, IconChartAreaLine, IconChartArrows, IconChartArrowsVertical, IconChartBar, IconChartBubble, IconChartCandle, IconChartCircles, IconChartDonut, IconChartDonut2, IconChartDonut3, IconChartDonut4, IconChartDots, IconChartInfographic, IconChartLine, IconChartPie, IconChartPie2, IconChartPie3, IconChartPie4, IconChartRadar, IconCheck, IconCheckbox, IconChecks, IconCheese, IconChevronDown, IconChevronDownLeft, IconChevronDownRight, IconChevronLeft, IconChevronRight, IconChevronUp, IconChevronUpLeft, IconChevronUpRight, IconChevronsDown, IconChevronsDownLeft, IconChevronsDownRight, IconChevronsLeft, IconChevronsRight, IconChevronsUp, IconChevronsUpLeft, IconChevronsUpRight, IconChristmasTree, IconCircle, IconCircle0, IconCircle1, IconCircle2, IconCircle3, IconCircle4, IconCircle5, IconCircle6, IconCircle7, IconCircle8, IconCircle9, IconCircleCheck, IconCircleDashed, IconCircleDotted, IconCircleHalf, IconCircleHalfVertical, IconCircleMinus, IconCircleOff, IconCirclePlus, IconCircleSquare, IconCircleX, IconCircles, IconClearAll, IconClearFormatting, IconClick, IconClipboard, IconClipboardCheck, IconClipboardList, IconClipboardX, IconClock, IconCloud, IconCloudDownload, IconCloudFog, IconCloudOff, IconCloudRain, IconCloudSnow, IconCloudStorm, IconCloudUpload, IconCode, IconCodeMinus, IconCodePlus, IconCoffee, IconCoin, IconColorPicker, IconColorSwatch, IconColumnInsertLeft, IconColumnInsertRight, IconColumns, IconComet, IconCommand, IconCompass, IconConfetti, IconContainer, IconContrast, IconCookie, IconCopy, IconCopyleft, IconCopyright, IconCornerDownLeft, IconCornerDownLeftDouble, IconCornerDownRight, IconCornerDownRightDouble, IconCornerLeftDown, IconCornerLeftDownDouble, IconCornerLeftUp, IconCornerLeftUpDouble, IconCornerRightDown, IconCornerRightDownDouble, IconCornerRightUp, IconCornerRightUpDouble, IconCornerUpLeft, IconCornerUpLeftDouble, IconCornerUpRight, IconCornerUpRightDouble, IconCrane, IconCreditCard, IconCreditCardOff, IconCrop, IconCrosshair, IconCrown, IconCrownOff, IconCup, IconCurlyLoop, IconCurrencyBahraini, IconCurrencyBath, IconCurrencyBitcoin, IconCurrencyCent, IconCurrencyDinar, IconCurrencyDirham, IconCurrencyDollar, IconCurrencyDollarAustralian, IconCurrencyDollarCanadian, IconCurrencyDollarSingapore, IconCurrencyEthereum, IconCurrencyEuro, IconCurrencyForint, IconCurrencyFrank, IconCurrencyKroneCzech, IconCurrencyKroneDanish, IconCurrencyKroneSwedish, IconCurrencyLeu, IconCurrencyLira, IconCurrencyLitecoin, IconCurrencyNaira, IconCurrencyPound, IconCurrencyReal, IconCurrencyRenminbi, IconCurrencyRipple, IconCurrencyRiyal, IconCurrencyRubel, IconCurrencyRupee, IconCurrencyShekel, IconCurrencyTaka, IconCurrencyTugrik, IconCurrencyWon, IconCurrencyYen, IconCurrencyZloty, IconCurrentLocation, IconCursorText, IconCut, IconDashboard, IconDatabase, IconDatabaseExport, IconDatabaseImport, IconDatabaseOff, IconDetails, IconDeviceAnalytics, IconDeviceAudioTape, IconDeviceCctv, IconDeviceComputerCamera, IconDeviceComputerCameraOff, IconDeviceDesktop, IconDeviceDesktopAnalytics, IconDeviceDesktopOff, IconDeviceFloppy, IconDeviceGamepad, IconDeviceLaptop, IconDeviceMobile, IconDeviceMobileMessage, IconDeviceMobileRotated, IconDeviceMobileVibration, IconDeviceSpeaker, IconDeviceTablet, IconDeviceTv, IconDeviceWatch, IconDevices, IconDevices2, IconDevicesPc, IconDiamond, IconDice, IconDimensions, IconDirection, IconDirectionHorizontal, IconDirections, IconDisabled, IconDisabled2, IconDisc, IconDiscount, IconDiscount2, IconDivide, IconDna, IconDogBowl, IconDots, IconDotsCircleHorizontal, IconDotsDiagonal, IconDotsDiagonal2, IconDotsVertical, IconDownload, IconDragDrop, IconDragDrop2, IconDrone, IconDroneOff, IconDroplet, IconDropletFilled, IconDropletFilled2, IconDropletHalf, IconDropletHalf2, IconDropletOff, IconEar, IconEarOff, IconEdit, IconEditCircle, IconEgg, IconEmphasis, IconEqual, IconEqualNot, IconEraser, IconExchange, IconExposure, IconExternalLink, IconEye, IconEyeCheck, IconEyeOff, IconEyeglass, IconEyeglass2, IconFaceId, IconFall, IconFeather, IconFence, IconFile, IconFileAlert, IconFileAnalytics, IconFileCertificate, IconFileCheck, IconFileCode, IconFileCode2, IconFileDiff, IconFileDislike, IconFileDownload, IconFileExport, IconFileHorizontal, IconFileImport, IconFileInfo, IconFileInvoice, IconFileLike, IconFileMinus, IconFileMusic, IconFileOff, IconFilePhone, IconFilePlus, IconFileReport, IconFileSearch, IconFileShredder, IconFileSymlink, IconFileText, IconFileUpload, IconFileX, IconFileZip, IconFiles, IconFilesOff, IconFilter, IconFilterOff, IconFingerprint, IconFiretruck, IconFish, IconFlag, IconFlag2, IconFlag3, IconFlame, IconFlare, IconFlask, IconFlipHorizontal, IconFlipVertical, IconFloatCenter, IconFloatLeft, IconFloatNone, IconFloatRight, IconFocus, IconFocus2, IconFold, IconFoldDown, IconFoldUp, IconFolder, IconFolderMinus, IconFolderOff, IconFolderPlus, IconFolderX, IconFolders, IconForbid, IconForbid2, IconForklift, IconForms, IconFrame, IconFriends, IconGasStation, IconGauge, IconGeometry, IconGhost, IconGift, IconGitBranch, IconGitCommit, IconGitCompare, IconGitFork, IconGitMerge, IconGitPullRequest, IconGlass, IconGlassFull, IconGlassOff, IconGlobe, IconGolf, IconGps, IconGrain, IconGridDots, IconGripHorizontal, IconGripVertical, IconGrowth, IconH1, IconH2, IconH3, IconH4, IconH5, IconH6, IconHandFinger, IconHandLittleFinger, IconHandMiddleFinger, IconHandOff, IconHandRingFinger, IconHandRock, IconHandStop, IconHandThreeFingers, IconHandTwoFingers, IconHanger, IconHash, IconHeading, IconHeadphones, IconHeadphonesOff, IconHeadset, IconHeart, IconHeartBroken, IconHelicopter, IconHelicopterLanding, IconHelp, IconHexagon, IconHexagonOff, IconHierarchy, IconHierarchy2, IconHighlight, IconHistory, IconHome, IconHome2, IconIceCream, IconIceCream2, IconId, IconInbox, IconIndentDecrease, IconIndentIncrease, IconInfinity, IconInfoCircle, IconInfoSquare, IconItalic, IconJumpRope, IconKarate, IconKey, IconKeyboard, IconKeyboardHide, IconKeyboardOff, IconKeyboardShow, IconLanguage, IconLayersDifference, IconLayersIntersect, IconLayersLinked, IconLayersSubtract, IconLayersUnion, IconLayout, IconLayout2, IconLayoutAlignBottom, IconLayoutAlignCenter, IconLayoutAlignLeft, IconLayoutAlignMiddle, IconLayoutAlignRight, IconLayoutAlignTop, IconLayoutBottombar, IconLayoutCards, IconLayoutColumns, IconLayoutDistributeHorizontal, IconLayoutDistributeVertical, IconLayoutGrid, IconLayoutGridAdd, IconLayoutKanban, IconLayoutList, IconLayoutNavbar, IconLayoutRows, IconLayoutSidebar, IconLayoutSidebarRight, IconLeaf, IconLego, IconLemon, IconLetterA, IconLetterB, IconLetterC, IconLetterCase, IconLetterCaseLower, IconLetterCaseToggle, IconLetterCaseUpper, IconLetterD, IconLetterE, IconLetterF, IconLetterG, IconLetterH, IconLetterI, IconLetterJ, IconLetterK, IconLetterL, IconLetterM, IconLetterN, IconLetterO, IconLetterP, IconLetterQ, IconLetterR, IconLetterS, IconLetterSpacing, IconLetterT, IconLetterU, IconLetterV, IconLetterW, IconLetterX, IconLetterY, IconLetterZ, IconLettersCase, IconLicense, IconLifebuoy, IconLine, IconLineDashed, IconLineDotted, IconLineHeight, IconLink, IconList, IconListCheck, IconListDetails, IconListNumbers, IconListSearch, IconLivePhoto, IconLiveView, IconLoader, IconLoaderQuarter, IconLocation, IconLock, IconLockAccess, IconLockOff, IconLockOpen, IconLogin, IconLogout, IconMacro, IconMagnet, IconMail, IconMailForward, IconMailOpened, IconMailbox, IconMan, IconManualGearbox, IconMap, IconMap2, IconMapPin, IconMapPinOff, IconMapPins, IconMarkdown, IconMarquee, IconMarquee2, IconMars, IconMask, IconMaskOff, IconMassage, IconMath, IconMathFunction, IconMathSymbols, IconMaximize, IconMeat, IconMedal, IconMedicalCross, IconMenu, IconMenu2, IconMessage, IconMessage2, IconMessageCircle, IconMessageCircle2, IconMessageCircleOff, IconMessageDots, IconMessageOff, IconMessagePlus, IconMessageReport, IconMessages, IconMessagesOff, IconMicrophone, IconMicrophone2, IconMicrophoneOff, IconMilk, IconMinimize, IconMinus, IconMinusVertical, IconMist, IconMoodBoy, IconMoodConfuzed, IconMoodCrazyHappy, IconMoodCry, IconMoodEmpty, IconMoodHappy, IconMoodKid, IconMoodNeutral, IconMoodSad, IconMoodSmile, IconMoodSuprised, IconMoodTongue, IconMoon, IconMoon2, IconMoonStars, IconMoped, IconMotorbike, IconMouse, IconMovie, IconMug, IconMultiplier05x, IconMultiplier15x, IconMultiplier1x, IconMultiplier2x, IconMushroom, IconMusic, IconNewSection, IconNews, IconNfc, IconNote, IconNotebook, IconNotes, IconNotification, IconNumber0, IconNumber1, IconNumber2, IconNumber3, IconNumber4, IconNumber5, IconNumber6, IconNumber7, IconNumber8, IconNumber9, IconOctagon, IconOctagonOff, IconOld, IconOlympics, IconOmega, IconOutlet, IconOverline, IconPackage, IconPacman, IconPageBreak, IconPaint, IconPalette, IconPanoramaHorizontal, IconPanoramaVertical, IconPaperclip, IconParachute, IconParentheses, IconParking, IconPeace, IconPencil, IconPennant, IconPepper, IconPercentage, IconPerspective, IconPhone, IconPhoneCall, IconPhoneCalling, IconPhoneCheck, IconPhoneIncoming, IconPhoneOff, IconPhoneOutgoing, IconPhonePause, IconPhonePlus, IconPhoneX, IconPhoto, IconPhotoOff, IconPhysotherapist, IconPictureInPicture, IconPictureInPictureOff, IconPictureInPictureOn, IconPill, IconPin, IconPinned, IconPinnedOff, IconPizza, IconPlane, IconPlaneArrival, IconPlaneDeparture, IconPlanet, IconPlant, IconPlant2, IconPlayCard, IconPlayerPause, IconPlayerPlay, IconPlayerRecord, IconPlayerSkipBack, IconPlayerSkipForward, IconPlayerStop, IconPlayerTrackNext, IconPlayerTrackPrev, IconPlaylist, IconPlug, IconPlus, IconPoint, IconPokeball, IconPolaroid, IconPool, IconPower, IconPray, IconPresentation, IconPresentationAnalytics, IconPrinter, IconPrompt, IconPropeller, IconPuzzle, IconPyramid, IconQrcode, IconQuestionMark, IconRadio, IconRadioactive, IconRadiusBottomLeft, IconRadiusBottomRight, IconRadiusTopLeft, IconRadiusTopRight, IconRainbow, IconReceipt, IconReceipt2, IconReceiptOff, IconReceiptRefund, IconReceiptTax, IconRecharging, IconRecordMail, IconRectangle, IconRectangleVertical, IconRecycle, IconRefresh, IconRefreshAlert, IconRegistered, IconRelationManyToMany, IconRelationOneToMany, IconRelationOneToOne, IconRepeat, IconRepeatOnce, IconReplace, IconReport, IconReportAnalytics, IconReportMedical, IconReportMoney, IconResize, IconRipple, IconRoadSign, IconRocket, IconRotate, IconRotate2, IconRotateClockwise, IconRotateClockwise2, IconRotateRectangle, IconRoute, IconRouter, IconRowInsertBottom, IconRowInsertTop, IconRss, IconRuler, IconRuler2, IconRun, IconSailboat, IconSalt, IconSatellite, IconSausage, IconScale, IconScan, IconSchool, IconScissors, IconScooter, IconScooterElectric, IconScreenShare, IconScreenShareOff, IconScubaMask, IconSearch, IconSection, IconSeeding, IconSelect, IconSelector, IconSend, IconSeparator, IconSeparatorHorizontal, IconSeparatorVertical, IconServer, IconServicemark, IconSettings, IconSettingsAutomation, IconShadow, IconShadowOff, IconShape, IconShape2, IconShape3, IconShare, IconShield, IconShieldCheck, IconShieldLock, IconShieldOff, IconShieldX, IconShip, IconShirt, IconShoppingCart, IconShoppingCartDiscount, IconShoppingCartOff, IconShoppingCartPlus, IconShoppingCartX, IconShredder, IconSignature, IconSitemap, IconSkateboard, IconSlice, IconSlideshow, IconSmartHome, IconSmoking, IconSmokingNo, IconSnowflake, IconSoccerField, IconSocial, IconSock, IconSortAscending, IconSortAscending2, IconSortAscendingLetters, IconSortAscendingNumbers, IconSortDescending, IconSortDescending2, IconSortDescendingLetters, IconSortDescendingNumbers, IconSoup, IconSpace, IconSpeakerphone, IconSpeedboat, IconSportBillard, IconSquare, IconSquare0, IconSquare1, IconSquare2, IconSquare3, IconSquare4, IconSquare5, IconSquare6, IconSquare7, IconSquare8, IconSquare9, IconSquareCheck, IconSquareDot, IconSquareForbid, IconSquareForbid2, IconSquareMinus, IconSquareOff, IconSquarePlus, IconSquareRoot, IconSquareRoot2, IconSquareRotated, IconSquareRotatedOff, IconSquareToggle, IconSquareToggleHorizontal, IconSquareX, IconSquaresDiagonal, IconSquaresFilled, IconStack, IconStack2, IconStairs, IconStairsDown, IconStairsUp, IconStar, IconStarHalf, IconStarOff, IconStars, IconSteeringWheel, IconStepInto, IconStepOut, IconStethoscope, IconSticker, IconStrikethrough, IconSubmarine, IconSubscript, IconSubtask, IconSum, IconSun, IconSunOff, IconSunrise, IconSunset, IconSuperscript, IconSwimming, IconSwitch, IconSwitch2, IconSwitch3, IconSwitchHorizontal, IconSwitchVertical, IconTable, IconTableExport, IconTableImport, IconTableOff, IconTag, IconTallymark1, IconTallymark2, IconTallymark3, IconTallymark4, IconTallymarks, IconTank, IconTarget, IconTemperature, IconTemperatureCelsius, IconTemperatureFahrenheit, IconTemperatureMinus, IconTemperaturePlus, IconTemplate, IconTent, IconTerminal, IconTerminal2, IconTestPipe, IconTextDirectionLtr, IconTextDirectionRtl, IconTextWrap, IconTextWrapDisabled, IconThumbDown, IconThumbUp, IconTicket, IconTiltShift, IconTir, IconToggleLeft, IconToggleRight, IconTool, IconTools, IconToolsKitchen, IconToolsKitchen2, IconTornado, IconTournament, IconTrack, IconTractor, IconTrademark, IconTrafficCone, IconTrafficLights, IconTrain, IconTransferIn, IconTransferOut, IconTrash, IconTrashOff, IconTree, IconTrees, IconTrendingDown, IconTrendingDown2, IconTrendingDown3, IconTrendingUp, IconTrendingUp2, IconTrendingUp3, IconTriangle, IconTriangleOff, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTruck, IconTruckDelivery, IconTruckOff, IconTruckReturn, IconTypography, IconUmbrella, IconUnderline, IconUnlink, IconUpload, IconUrgent, IconUser, IconUserCheck, IconUserExclamation, IconUserMinus, IconUserOff, IconUserPlus, IconUserX, IconUsers, IconVaccine, IconVariable, IconVector, IconVectorBeizer2, IconVectorBezier, IconVectorTriangle, IconVenus, IconVersions, IconVideo, IconVideoMinus, IconVideoOff, IconVideoPlus, IconView360, IconViewfinder, IconViewportNarrow, IconViewportWide, IconVirus, IconVirusOff, IconVirusSearch, IconVocabulary, IconVolume, IconVolume2, IconVolume3, IconWalk, IconWallet, IconWand, IconWaveSawTool, IconWaveSine, IconWaveSquare, IconWifi, IconWifi0, IconWifi1, IconWifi2, IconWifiOff, IconWind, IconWindmill, IconWindow, IconWiper, IconWiperWash, IconWoman, IconWorld, IconWorldLatitude, IconWorldLongitude, IconWreckingBall, IconWriting, IconWritingSign, IconX, IconYinYang, IconZodiacAquarius, IconZodiacAries, IconZodiacCancer, IconZodiacCapricorn, IconZodiacGemini, IconZodiacLeo, IconZodiacLibra, IconZodiacPisces, IconZodiacSagittarius, IconZodiacScorpio, IconZodiacTaurus, IconZodiacVirgo, IconZoomCancel, IconZoomCheck, IconZoomIn, IconZoomMoney };
|
|
50643
|
+
export { Icon2fa, Icon3dCubeSphere, IconAB, IconAccessPoint, IconAccessPointOff, IconAccessible, IconActivity, IconAd, IconAd2, IconAdjustments, IconAdjustmentsAlt, IconAdjustmentsHorizontal, IconAerialLift, IconAffiliate, IconAlarm, IconAlertCircle, IconAlertOctagon, IconAlertTriangle, IconAlien, IconAlignCenter, IconAlignJustified, IconAlignLeft, IconAlignRight, IconAmbulance, IconAnchor, IconAngle, IconAntennaBars1, IconAntennaBars2, IconAntennaBars3, IconAntennaBars4, IconAntennaBars5, IconAperture, IconApple, IconApps, IconArchive, IconArrowAutofitContent, IconArrowAutofitDown, IconArrowAutofitHeight, IconArrowAutofitLeft, IconArrowAutofitRight, IconArrowAutofitUp, IconArrowAutofitWidth, IconArrowBack, IconArrowBackUp, IconArrowBarDown, IconArrowBarLeft, IconArrowBarRight, IconArrowBarToDown, IconArrowBarToLeft, IconArrowBarToRight, IconArrowBarToUp, IconArrowBarUp, IconArrowBigDown, IconArrowBigLeft, IconArrowBigRight, IconArrowBigTop, IconArrowBottomBar, IconArrowBottomCircle, IconArrowBottomSquare, IconArrowBottomTail, IconArrowDown, IconArrowDownCircle, IconArrowDownLeft, IconArrowDownLeftCircle, IconArrowDownRight, IconArrowDownRightCircle, IconArrowForward, IconArrowForwardUp, IconArrowLeft, IconArrowLeftBar, IconArrowLeftCircle, IconArrowLeftSquare, IconArrowLeftTail, IconArrowLoopLeft, IconArrowLoopRight, IconArrowNarrowDown, IconArrowNarrowLeft, IconArrowNarrowRight, IconArrowNarrowUp, IconArrowRampLeft, IconArrowRampRight, IconArrowRight, IconArrowRightBar, IconArrowRightCircle, IconArrowRightSquare, IconArrowRightTail, IconArrowTopBar, IconArrowTopCircle, IconArrowTopSquare, IconArrowTopTail, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpLeftCircle, IconArrowUpRight, IconArrowUpRightCircle, IconArrowWaveLeftDown, IconArrowWaveLeftUp, IconArrowWaveRightDown, IconArrowWaveRightUp, IconArrowsDiagonal, IconArrowsDiagonal2, IconArrowsDiagonalMinimize, IconArrowsDiagonalMinimize2, IconArrowsDoubleNeSw, IconArrowsDoubleNwSe, IconArrowsDoubleSeNw, IconArrowsDoubleSwNe, IconArrowsDown, IconArrowsDownUp, IconArrowsHorizontal, IconArrowsJoin, IconArrowsJoin2, IconArrowsLeft, IconArrowsLeftDown, IconArrowsLeftRight, IconArrowsMaximize, IconArrowsMinimize, IconArrowsRight, IconArrowsRightDown, IconArrowsRightLeft, IconArrowsSort, IconArrowsSplit, IconArrowsSplit2, IconArrowsUp, IconArrowsUpDown, IconArrowsUpLeft, IconArrowsUpRight, IconArrowsVertical, IconArtboard, IconAspectRatio, IconAt, IconAtom, IconAtom2, IconAward, IconAxisX, IconAxisY, IconBackhoe, IconBackpack, IconBackspace, IconBallAmericanFootball, IconBallBasketball, IconBallBowling, IconBallFootball, IconBallFootballOff, IconBallTennis, IconBallVolleyball, IconBallon, IconBan, IconBandage, IconBarcode, IconBasket, IconBath, IconBattery, IconBattery1, IconBattery2, IconBattery3, IconBattery4, IconBatteryAutomotive, IconBatteryCharging, IconBatteryCharging2, IconBatteryEco, IconBatteryOff, IconBeach, IconBed, IconBell, IconBellMinus, IconBellOff, IconBellPlus, IconBellRinging, IconBellRinging2, IconBellX, IconBike, IconBinary, IconBiohazard, IconBlockquote, IconBluetooth, IconBluetoothConnected, IconBluetoothOff, IconBold, IconBolt, IconBoltOff, IconBone, IconBook, IconBookmark, IconBookmarkOff, IconBookmarks, IconBorderAll, IconBorderBottom, IconBorderHorizontal, IconBorderInner, IconBorderLeft, IconBorderNone, IconBorderOuter, IconBorderRadius, IconBorderRight, IconBorderStyle, IconBorderStyle2, IconBorderTop, IconBorderVertical, IconBottle, IconBox, IconBoxMargin, IconBoxModel, IconBoxModel2, IconBoxMultiple, IconBoxMultiple0, IconBoxMultiple1, IconBoxMultiple2, IconBoxMultiple3, IconBoxMultiple4, IconBoxMultiple5, IconBoxMultiple6, IconBoxMultiple7, IconBoxMultiple8, IconBoxMultiple9, IconBoxPadding, IconBraces, IconBrackets, IconBrandAirbnb, IconBrandAndroid, IconBrandApple, IconBrandAppleArcade, IconBrandAppstore, IconBrandAsana, IconBrandBehance, IconBrandBing, IconBrandBitbucket, IconBrandBooking, IconBrandBootstrap, IconBrandChrome, IconBrandCodepen, IconBrandCodesandbox, IconBrandCss3, IconBrandDeviantart, IconBrandDiscord, IconBrandDisqus, IconBrandDocker, IconBrandDribbble, IconBrandEdge, IconBrandFacebook, IconBrandFigma, IconBrandFirefox, IconBrandFlickr, IconBrandFoursquare, IconBrandFramer, IconBrandGithub, IconBrandGitlab, IconBrandGoogle, IconBrandGoogleAnalytics, IconBrandGoogleDrive, IconBrandGooglePlay, IconBrandGravatar, IconBrandHipchat, IconBrandHtml5, IconBrandInstagram, IconBrandJavascript, IconBrandKickstarter, IconBrandKotlin, IconBrandLinkedin, IconBrandMastercard, IconBrandMedium, IconBrandMessenger, IconBrandNetflix, IconBrandOpenSource, IconBrandOpera, IconBrandPagekit, IconBrandPatreon, IconBrandPaypal, IconBrandPinterest, IconBrandPocket, IconBrandProducthunt, IconBrandPython, IconBrandReddit, IconBrandSafari, IconBrandSass, IconBrandSentry, IconBrandShazam, IconBrandSketch, IconBrandSkype, IconBrandSlack, IconBrandSnapchat, IconBrandSoundcloud, IconBrandSpotify, IconBrandStackOfverflow, IconBrandSteam, IconBrandStripe, IconBrandTabler, IconBrandTailwind, IconBrandTelegram, IconBrandTidal, IconBrandTiktok, IconBrandTinder, IconBrandTumblr, IconBrandTwitch, IconBrandTwitter, IconBrandUnsplash, IconBrandVercel, IconBrandVimeo, IconBrandVk, IconBrandWhatsapp, IconBrandWindows, IconBrandYahoo, IconBrandYcombinator, IconBrandYoutube, IconBriefcase, IconBrightness, IconBrightness2, IconBrightnessDown, IconBrightnessHalf, IconBrightnessUp, IconBrowser, IconBrush, IconBucket, IconBug, IconBuilding, IconBuildingArch, IconBuildingBank, IconBuildingBridge, IconBuildingBridge2, IconBuildingCarousel, IconBuildingCastle, IconBuildingChurch, IconBuildingCommunity, IconBuildingCottage, IconBuildingFactory, IconBuildingFortress, IconBuildingHospital, IconBuildingLighthouse, IconBuildingMonument, IconBuildingPavilon, IconBuildingSkyscraper, IconBuildingStore, IconBuildingWarehouse, IconBulb, IconBulbOff, IconBulldozer, IconBus, IconBusinessplan, IconCalculator, IconCalendar, IconCalendarEvent, IconCalendarMinus, IconCalendarOff, IconCalendarPlus, IconCalendarStats, IconCalendarTime, IconCamera, IconCameraMinus, IconCameraOff, IconCameraPlus, IconCameraRotate, IconCameraSelfie, IconCandy, IconCapture, IconCar, IconCarCrane, IconCaravan, IconCardboards, IconCaretDown, IconCaretLeft, IconCaretRight, IconCaretUp, IconCash, IconCashBanknote, IconCashBanknoteOff, IconCast, IconCe, IconCertificate, IconChargingPile, IconChartArcs, IconChartArcs3, IconChartArea, IconChartAreaLine, IconChartArrows, IconChartArrowsVertical, IconChartBar, IconChartBubble, IconChartCandle, IconChartCircles, IconChartDonut, IconChartDonut2, IconChartDonut3, IconChartDonut4, IconChartDots, IconChartInfographic, IconChartLine, IconChartPie, IconChartPie2, IconChartPie3, IconChartPie4, IconChartRadar, IconCheck, IconCheckbox, IconChecks, IconCheese, IconChevronDown, IconChevronDownLeft, IconChevronDownRight, IconChevronLeft, IconChevronRight, IconChevronUp, IconChevronUpLeft, IconChevronUpRight, IconChevronsDown, IconChevronsDownLeft, IconChevronsDownRight, IconChevronsLeft, IconChevronsRight, IconChevronsUp, IconChevronsUpLeft, IconChevronsUpRight, IconChristmasTree, IconCircle, IconCircle0, IconCircle1, IconCircle2, IconCircle3, IconCircle4, IconCircle5, IconCircle6, IconCircle7, IconCircle8, IconCircle9, IconCircleCheck, IconCircleDashed, IconCircleDotted, IconCircleHalf, IconCircleHalfVertical, IconCircleMinus, IconCircleOff, IconCirclePlus, IconCircleSquare, IconCircleX, IconCircles, IconClearAll, IconClearFormatting, IconClick, IconClipboard, IconClipboardCheck, IconClipboardList, IconClipboardX, IconClock, IconCloud, IconCloudDownload, IconCloudFog, IconCloudOff, IconCloudRain, IconCloudSnow, IconCloudStorm, IconCloudUpload, IconCode, IconCodeMinus, IconCodePlus, IconCoffee, IconCoin, IconColorPicker, IconColorSwatch, IconColumnInsertLeft, IconColumnInsertRight, IconColumns, IconComet, IconCommand, IconCompass, IconConfetti, IconContainer, IconContrast, IconCookie, IconCopy, IconCopyleft, IconCopyright, IconCornerDownLeft, IconCornerDownLeftDouble, IconCornerDownRight, IconCornerDownRightDouble, IconCornerLeftDown, IconCornerLeftDownDouble, IconCornerLeftUp, IconCornerLeftUpDouble, IconCornerRightDown, IconCornerRightDownDouble, IconCornerRightUp, IconCornerRightUpDouble, IconCornerUpLeft, IconCornerUpLeftDouble, IconCornerUpRight, IconCornerUpRightDouble, IconCrane, IconCreditCard, IconCreditCardOff, IconCrop, IconCrosshair, IconCrown, IconCrownOff, IconCup, IconCurlyLoop, IconCurrencyBahraini, IconCurrencyBath, IconCurrencyBitcoin, IconCurrencyCent, IconCurrencyDinar, IconCurrencyDirham, IconCurrencyDogecoin, IconCurrencyDollar, IconCurrencyDollarAustralian, IconCurrencyDollarCanadian, IconCurrencyDollarSingapore, IconCurrencyEthereum, IconCurrencyEuro, IconCurrencyForint, IconCurrencyFrank, IconCurrencyKroneCzech, IconCurrencyKroneDanish, IconCurrencyKroneSwedish, IconCurrencyLeu, IconCurrencyLira, IconCurrencyLitecoin, IconCurrencyNaira, IconCurrencyPound, IconCurrencyReal, IconCurrencyRenminbi, IconCurrencyRipple, IconCurrencyRiyal, IconCurrencyRubel, IconCurrencyRupee, IconCurrencyShekel, IconCurrencyTaka, IconCurrencyTugrik, IconCurrencyWon, IconCurrencyYen, IconCurrencyZloty, IconCurrentLocation, IconCursorText, IconCut, IconDashboard, IconDatabase, IconDatabaseExport, IconDatabaseImport, IconDatabaseOff, IconDetails, IconDeviceAnalytics, IconDeviceAudioTape, IconDeviceCctv, IconDeviceComputerCamera, IconDeviceComputerCameraOff, IconDeviceDesktop, IconDeviceDesktopAnalytics, IconDeviceDesktopOff, IconDeviceFloppy, IconDeviceGamepad, IconDeviceLaptop, IconDeviceMobile, IconDeviceMobileMessage, IconDeviceMobileRotated, IconDeviceMobileVibration, IconDeviceSpeaker, IconDeviceTablet, IconDeviceTv, IconDeviceWatch, IconDevices, IconDevices2, IconDevicesPc, IconDiamond, IconDice, IconDimensions, IconDirection, IconDirectionHorizontal, IconDirections, IconDisabled, IconDisabled2, IconDisc, IconDiscount, IconDiscount2, IconDivide, IconDna, IconDogBowl, IconDoor, IconDoorEnter, IconDoorExit, IconDots, IconDotsCircleHorizontal, IconDotsDiagonal, IconDotsDiagonal2, IconDotsVertical, IconDownload, IconDragDrop, IconDragDrop2, IconDrone, IconDroneOff, IconDroplet, IconDropletFilled, IconDropletFilled2, IconDropletHalf, IconDropletHalf2, IconDropletOff, IconEar, IconEarOff, IconEdit, IconEditCircle, IconEgg, IconEmphasis, IconEqual, IconEqualNot, IconEraser, IconExchange, IconExposure, IconExternalLink, IconEye, IconEyeCheck, IconEyeOff, IconEyeglass, IconEyeglass2, IconFaceId, IconFall, IconFeather, IconFence, IconFile, IconFileAlert, IconFileAnalytics, IconFileCertificate, IconFileCheck, IconFileCode, IconFileCode2, IconFileDiff, IconFileDislike, IconFileDownload, IconFileExport, IconFileHorizontal, IconFileImport, IconFileInfo, IconFileInvoice, IconFileLike, IconFileMinus, IconFileMusic, IconFileOff, IconFilePhone, IconFilePlus, IconFileReport, IconFileSearch, IconFileShredder, IconFileSymlink, IconFileText, IconFileUpload, IconFileX, IconFileZip, IconFiles, IconFilesOff, IconFilter, IconFilterOff, IconFingerprint, IconFiretruck, IconFish, IconFlag, IconFlag2, IconFlag3, IconFlame, IconFlare, IconFlask, IconFlipHorizontal, IconFlipVertical, IconFloatCenter, IconFloatLeft, IconFloatNone, IconFloatRight, IconFocus, IconFocus2, IconFold, IconFoldDown, IconFoldUp, IconFolder, IconFolderMinus, IconFolderOff, IconFolderPlus, IconFolderX, IconFolders, IconForbid, IconForbid2, IconForklift, IconForms, IconFrame, IconFriends, IconGasStation, IconGauge, IconGeometry, IconGhost, IconGift, IconGitBranch, IconGitCommit, IconGitCompare, IconGitFork, IconGitMerge, IconGitPullRequest, IconGlass, IconGlassFull, IconGlassOff, IconGlobe, IconGolf, IconGps, IconGrain, IconGridDots, IconGripHorizontal, IconGripVertical, IconGrowth, IconH1, IconH2, IconH3, IconH4, IconH5, IconH6, IconHandClick, IconHandFinger, IconHandLittleFinger, IconHandMiddleFinger, IconHandMove, IconHandOff, IconHandRingFinger, IconHandRock, IconHandStop, IconHandThreeFingers, IconHandTwoFingers, IconHanger, IconHash, IconHeading, IconHeadphones, IconHeadphonesOff, IconHeadset, IconHeart, IconHeartBroken, IconHelicopter, IconHelicopterLanding, IconHelp, IconHexagon, IconHexagonOff, IconHierarchy, IconHierarchy2, IconHighlight, IconHistory, IconHome, IconHome2, IconIceCream, IconIceCream2, IconId, IconInbox, IconIndentDecrease, IconIndentIncrease, IconInfinity, IconInfoCircle, IconInfoSquare, IconItalic, IconJumpRope, IconKarate, IconKey, IconKeyboard, IconKeyboardHide, IconKeyboardOff, IconKeyboardShow, IconLanguage, IconLayersDifference, IconLayersIntersect, IconLayersLinked, IconLayersSubtract, IconLayersUnion, IconLayout, IconLayout2, IconLayoutAlignBottom, IconLayoutAlignCenter, IconLayoutAlignLeft, IconLayoutAlignMiddle, IconLayoutAlignRight, IconLayoutAlignTop, IconLayoutBottombar, IconLayoutCards, IconLayoutColumns, IconLayoutDistributeHorizontal, IconLayoutDistributeVertical, IconLayoutGrid, IconLayoutGridAdd, IconLayoutKanban, IconLayoutList, IconLayoutNavbar, IconLayoutRows, IconLayoutSidebar, IconLayoutSidebarRight, IconLeaf, IconLego, IconLemon, IconLetterA, IconLetterB, IconLetterC, IconLetterCase, IconLetterCaseLower, IconLetterCaseToggle, IconLetterCaseUpper, IconLetterD, IconLetterE, IconLetterF, IconLetterG, IconLetterH, IconLetterI, IconLetterJ, IconLetterK, IconLetterL, IconLetterM, IconLetterN, IconLetterO, IconLetterP, IconLetterQ, IconLetterR, IconLetterS, IconLetterSpacing, IconLetterT, IconLetterU, IconLetterV, IconLetterW, IconLetterX, IconLetterY, IconLetterZ, IconLettersCase, IconLicense, IconLifebuoy, IconLine, IconLineDashed, IconLineDotted, IconLineHeight, IconLink, IconList, IconListCheck, IconListDetails, IconListNumbers, IconListSearch, IconLivePhoto, IconLiveView, IconLoader, IconLoaderQuarter, IconLocation, IconLock, IconLockAccess, IconLockOff, IconLockOpen, IconLockSquare, IconLogin, IconLogout, IconMacro, IconMagnet, IconMail, IconMailForward, IconMailOpened, IconMailbox, IconMan, IconManualGearbox, IconMap, IconMap2, IconMapPin, IconMapPinOff, IconMapPins, IconMarkdown, IconMarquee, IconMarquee2, IconMars, IconMask, IconMaskOff, IconMassage, IconMath, IconMathFunction, IconMathSymbols, IconMaximize, IconMeat, IconMedal, IconMedicalCross, IconMenu, IconMenu2, IconMessage, IconMessage2, IconMessageCircle, IconMessageCircle2, IconMessageCircleOff, IconMessageDots, IconMessageOff, IconMessagePlus, IconMessageReport, IconMessages, IconMessagesOff, IconMicrophone, IconMicrophone2, IconMicrophoneOff, IconMilk, IconMinimize, IconMinus, IconMinusVertical, IconMist, IconMoodBoy, IconMoodConfuzed, IconMoodCrazyHappy, IconMoodCry, IconMoodEmpty, IconMoodHappy, IconMoodKid, IconMoodNeutral, IconMoodSad, IconMoodSmile, IconMoodSuprised, IconMoodTongue, IconMoon, IconMoon2, IconMoonStars, IconMoped, IconMotorbike, IconMouse, IconMovie, IconMug, IconMultiplier05x, IconMultiplier15x, IconMultiplier1x, IconMultiplier2x, IconMushroom, IconMusic, IconNewSection, IconNews, IconNfc, IconNote, IconNotebook, IconNotes, IconNotification, IconNumber0, IconNumber1, IconNumber2, IconNumber3, IconNumber4, IconNumber5, IconNumber6, IconNumber7, IconNumber8, IconNumber9, IconOctagon, IconOctagonOff, IconOld, IconOlympics, IconOmega, IconOutlet, IconOverline, IconPackage, IconPacman, IconPageBreak, IconPaint, IconPalette, IconPanoramaHorizontal, IconPanoramaVertical, IconPaperclip, IconParachute, IconParentheses, IconParking, IconPeace, IconPencil, IconPennant, IconPepper, IconPercentage, IconPerspective, IconPhone, IconPhoneCall, IconPhoneCalling, IconPhoneCheck, IconPhoneIncoming, IconPhoneOff, IconPhoneOutgoing, IconPhonePause, IconPhonePlus, IconPhoneX, IconPhoto, IconPhotoOff, IconPhysotherapist, IconPictureInPicture, IconPictureInPictureOff, IconPictureInPictureOn, IconPig, IconPill, IconPin, IconPinned, IconPinnedOff, IconPizza, IconPlane, IconPlaneArrival, IconPlaneDeparture, IconPlanet, IconPlant, IconPlant2, IconPlayCard, IconPlayerPause, IconPlayerPlay, IconPlayerRecord, IconPlayerSkipBack, IconPlayerSkipForward, IconPlayerStop, IconPlayerTrackNext, IconPlayerTrackPrev, IconPlaylist, IconPlug, IconPlus, IconPoint, IconPokeball, IconPolaroid, IconPool, IconPower, IconPray, IconPresentation, IconPresentationAnalytics, IconPrinter, IconPrompt, IconPropeller, IconPuzzle, IconPyramid, IconQrcode, IconQuestionMark, IconRadio, IconRadioactive, IconRadiusBottomLeft, IconRadiusBottomRight, IconRadiusTopLeft, IconRadiusTopRight, IconRainbow, IconReceipt, IconReceipt2, IconReceiptOff, IconReceiptRefund, IconReceiptTax, IconRecharging, IconRecordMail, IconRectangle, IconRectangleVertical, IconRecycle, IconRefresh, IconRefreshAlert, IconRegistered, IconRelationManyToMany, IconRelationOneToMany, IconRelationOneToOne, IconRepeat, IconRepeatOnce, IconReplace, IconReport, IconReportAnalytics, IconReportMedical, IconReportMoney, IconResize, IconRipple, IconRoadSign, IconRocket, IconRotate, IconRotate2, IconRotateClockwise, IconRotateClockwise2, IconRotateRectangle, IconRoute, IconRouter, IconRowInsertBottom, IconRowInsertTop, IconRss, IconRuler, IconRuler2, IconRun, IconSailboat, IconSalt, IconSatellite, IconSausage, IconScale, IconScaleOutline, IconScan, IconSchool, IconScissors, IconScooter, IconScooterElectric, IconScreenShare, IconScreenShareOff, IconScubaMask, IconSearch, IconSection, IconSeeding, IconSelect, IconSelector, IconSend, IconSeparator, IconSeparatorHorizontal, IconSeparatorVertical, IconServer, IconServicemark, IconSettings, IconSettingsAutomation, IconShadow, IconShadowOff, IconShape, IconShape2, IconShape3, IconShare, IconShield, IconShieldCheck, IconShieldLock, IconShieldOff, IconShieldX, IconShip, IconShirt, IconShoppingCart, IconShoppingCartDiscount, IconShoppingCartOff, IconShoppingCartPlus, IconShoppingCartX, IconShredder, IconSignature, IconSitemap, IconSkateboard, IconSlice, IconSlideshow, IconSmartHome, IconSmoking, IconSmokingNo, IconSnowflake, IconSoccerField, IconSocial, IconSock, IconSortAscending, IconSortAscending2, IconSortAscendingLetters, IconSortAscendingNumbers, IconSortDescending, IconSortDescending2, IconSortDescendingLetters, IconSortDescendingNumbers, IconSoup, IconSpace, IconSpacingHorizontal, IconSpacingVertical, IconSpeakerphone, IconSpeedboat, IconSportBillard, IconSquare, IconSquare0, IconSquare1, IconSquare2, IconSquare3, IconSquare4, IconSquare5, IconSquare6, IconSquare7, IconSquare8, IconSquare9, IconSquareCheck, IconSquareDot, IconSquareForbid, IconSquareForbid2, IconSquareMinus, IconSquareOff, IconSquarePlus, IconSquareRoot, IconSquareRoot2, IconSquareRotated, IconSquareRotatedOff, IconSquareToggle, IconSquareToggleHorizontal, IconSquareX, IconSquaresDiagonal, IconSquaresFilled, IconStack, IconStack2, IconStairs, IconStairsDown, IconStairsUp, IconStar, IconStarHalf, IconStarOff, IconStars, IconSteeringWheel, IconStepInto, IconStepOut, IconStethoscope, IconSticker, IconStrikethrough, IconSubmarine, IconSubscript, IconSubtask, IconSum, IconSun, IconSunOff, IconSunrise, IconSunset, IconSuperscript, IconSwimming, IconSwitch, IconSwitch2, IconSwitch3, IconSwitchHorizontal, IconSwitchVertical, IconTable, IconTableExport, IconTableImport, IconTableOff, IconTag, IconTallymark1, IconTallymark2, IconTallymark3, IconTallymark4, IconTallymarks, IconTank, IconTarget, IconTemperature, IconTemperatureCelsius, IconTemperatureFahrenheit, IconTemperatureMinus, IconTemperaturePlus, IconTemplate, IconTent, IconTerminal, IconTerminal2, IconTestPipe, IconTextDirectionLtr, IconTextDirectionRtl, IconTextWrap, IconTextWrapDisabled, IconThumbDown, IconThumbUp, IconTicket, IconTiltShift, IconTir, IconToggleLeft, IconToggleRight, IconTool, IconTools, IconToolsKitchen, IconToolsKitchen2, IconTornado, IconTournament, IconTrack, IconTractor, IconTrademark, IconTrafficCone, IconTrafficLights, IconTrain, IconTransferIn, IconTransferOut, IconTrash, IconTrashOff, IconTree, IconTrees, IconTrendingDown, IconTrendingDown2, IconTrendingDown3, IconTrendingUp, IconTrendingUp2, IconTrendingUp3, IconTriangle, IconTriangleOff, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTruck, IconTruckDelivery, IconTruckOff, IconTruckReturn, IconTypography, IconUmbrella, IconUnderline, IconUnlink, IconUpload, IconUrgent, IconUser, IconUserCheck, IconUserExclamation, IconUserMinus, IconUserOff, IconUserPlus, IconUserX, IconUsers, IconVaccine, IconVariable, IconVector, IconVectorBeizer2, IconVectorBezier, IconVectorTriangle, IconVenus, IconVersions, IconVideo, IconVideoMinus, IconVideoOff, IconVideoPlus, IconView360, IconViewfinder, IconViewportNarrow, IconViewportWide, IconVirus, IconVirusOff, IconVirusSearch, IconVocabulary, IconVolume, IconVolume2, IconVolume3, IconWalk, IconWallet, IconWallpaper, IconWand, IconWaveSawTool, IconWaveSine, IconWaveSquare, IconWifi, IconWifi0, IconWifi1, IconWifi2, IconWifiOff, IconWind, IconWindmill, IconWindow, IconWiper, IconWiperWash, IconWoman, IconWorld, IconWorldLatitude, IconWorldLongitude, IconWreckingBall, IconWriting, IconWritingSign, IconX, IconYinYang, IconZodiacAquarius, IconZodiacAries, IconZodiacCancer, IconZodiacCapricorn, IconZodiacGemini, IconZodiacLeo, IconZodiacLibra, IconZodiacPisces, IconZodiacSagittarius, IconZodiacScorpio, IconZodiacTaurus, IconZodiacVirgo, IconZoomCancel, IconZoomCheck, IconZoomIn, IconZoomMoney };
|
|
50018
50644
|
//# sourceMappingURL=index.esm.js.map
|