@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
|
@@ -5246,6 +5246,78 @@
|
|
|
5246
5246
|
}));
|
|
5247
5247
|
}
|
|
5248
5248
|
|
|
5249
|
+
function IconAxisX(_ref) {
|
|
5250
|
+
var _ref$size = _ref.size,
|
|
5251
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
5252
|
+
_ref$color = _ref.color,
|
|
5253
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
5254
|
+
_ref$stroke = _ref.stroke,
|
|
5255
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
5256
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
5257
|
+
|
|
5258
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
5259
|
+
className: "icon icon-tabler icon-tabler-axis-x",
|
|
5260
|
+
width: size,
|
|
5261
|
+
height: size,
|
|
5262
|
+
viewBox: "0 0 24 24",
|
|
5263
|
+
strokeWidth: stroke,
|
|
5264
|
+
stroke: color,
|
|
5265
|
+
fill: "none",
|
|
5266
|
+
strokeLinecap: "round",
|
|
5267
|
+
strokeLinejoin: "round"
|
|
5268
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
5269
|
+
stroke: "none",
|
|
5270
|
+
d: "M0 0h24v24H0z",
|
|
5271
|
+
fill: "none"
|
|
5272
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5273
|
+
d: "M4 13v.01"
|
|
5274
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5275
|
+
d: "M4 9v.01"
|
|
5276
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5277
|
+
d: "M4 5v.01"
|
|
5278
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5279
|
+
d: "M17 20l3 -3l-3 -3"
|
|
5280
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5281
|
+
d: "M4 17h16"
|
|
5282
|
+
}));
|
|
5283
|
+
}
|
|
5284
|
+
|
|
5285
|
+
function IconAxisY(_ref) {
|
|
5286
|
+
var _ref$size = _ref.size,
|
|
5287
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
5288
|
+
_ref$color = _ref.color,
|
|
5289
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
5290
|
+
_ref$stroke = _ref.stroke,
|
|
5291
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
5292
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
5293
|
+
|
|
5294
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
5295
|
+
className: "icon icon-tabler icon-tabler-axis-y",
|
|
5296
|
+
width: size,
|
|
5297
|
+
height: size,
|
|
5298
|
+
viewBox: "0 0 24 24",
|
|
5299
|
+
strokeWidth: stroke,
|
|
5300
|
+
stroke: color,
|
|
5301
|
+
fill: "none",
|
|
5302
|
+
strokeLinecap: "round",
|
|
5303
|
+
strokeLinejoin: "round"
|
|
5304
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
5305
|
+
stroke: "none",
|
|
5306
|
+
d: "M0 0h24v24H0z",
|
|
5307
|
+
fill: "none"
|
|
5308
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5309
|
+
d: "M11 20h-.01"
|
|
5310
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5311
|
+
d: "M15 20h-.01"
|
|
5312
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5313
|
+
d: "M19 20h-.01"
|
|
5314
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5315
|
+
d: "M4 7l3 -3l3 3"
|
|
5316
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5317
|
+
d: "M7 20v-16"
|
|
5318
|
+
}));
|
|
5319
|
+
}
|
|
5320
|
+
|
|
5249
5321
|
function IconBackhoe(_ref) {
|
|
5250
5322
|
var _ref$size = _ref.size,
|
|
5251
5323
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -5298,6 +5370,38 @@
|
|
|
5298
5370
|
}));
|
|
5299
5371
|
}
|
|
5300
5372
|
|
|
5373
|
+
function IconBackpack(_ref) {
|
|
5374
|
+
var _ref$size = _ref.size,
|
|
5375
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
5376
|
+
_ref$color = _ref.color,
|
|
5377
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
5378
|
+
_ref$stroke = _ref.stroke,
|
|
5379
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
5380
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
5381
|
+
|
|
5382
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
5383
|
+
className: "icon icon-tabler icon-tabler-backpack",
|
|
5384
|
+
width: size,
|
|
5385
|
+
height: size,
|
|
5386
|
+
viewBox: "0 0 24 24",
|
|
5387
|
+
strokeWidth: stroke,
|
|
5388
|
+
stroke: color,
|
|
5389
|
+
fill: "none",
|
|
5390
|
+
strokeLinecap: "round",
|
|
5391
|
+
strokeLinejoin: "round"
|
|
5392
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
5393
|
+
stroke: "none",
|
|
5394
|
+
d: "M0 0h24v24H0z",
|
|
5395
|
+
fill: "none"
|
|
5396
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5397
|
+
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"
|
|
5398
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5399
|
+
d: "M10 7v-1a2 2 0 1 1 4 0v1"
|
|
5400
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5401
|
+
d: "M10 15h4"
|
|
5402
|
+
}));
|
|
5403
|
+
}
|
|
5404
|
+
|
|
5301
5405
|
function IconBackspace(_ref) {
|
|
5302
5406
|
var _ref$size = _ref.size,
|
|
5303
5407
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -5821,6 +5925,40 @@
|
|
|
5821
5925
|
}));
|
|
5822
5926
|
}
|
|
5823
5927
|
|
|
5928
|
+
function IconBath(_ref) {
|
|
5929
|
+
var _ref$size = _ref.size,
|
|
5930
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
5931
|
+
_ref$color = _ref.color,
|
|
5932
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
5933
|
+
_ref$stroke = _ref.stroke,
|
|
5934
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
5935
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
5936
|
+
|
|
5937
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
5938
|
+
className: "icon icon-tabler icon-tabler-bath",
|
|
5939
|
+
width: size,
|
|
5940
|
+
height: size,
|
|
5941
|
+
viewBox: "0 0 24 24",
|
|
5942
|
+
strokeWidth: stroke,
|
|
5943
|
+
stroke: color,
|
|
5944
|
+
fill: "none",
|
|
5945
|
+
strokeLinecap: "round",
|
|
5946
|
+
strokeLinejoin: "round"
|
|
5947
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
5948
|
+
stroke: "none",
|
|
5949
|
+
d: "M0 0h24v24H0z",
|
|
5950
|
+
fill: "none"
|
|
5951
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5952
|
+
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"
|
|
5953
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5954
|
+
d: "M6 12v-7a2 2 0 0 1 2 -2h3v2.25"
|
|
5955
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5956
|
+
d: "M4 21l1 -1.5"
|
|
5957
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5958
|
+
d: "M20 21l-1 -1.5"
|
|
5959
|
+
}));
|
|
5960
|
+
}
|
|
5961
|
+
|
|
5824
5962
|
function IconBattery1(_ref) {
|
|
5825
5963
|
var _ref$size = _ref.size,
|
|
5826
5964
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -10348,6 +10486,44 @@
|
|
|
10348
10486
|
}));
|
|
10349
10487
|
}
|
|
10350
10488
|
|
|
10489
|
+
function IconBrandMastercard(_ref) {
|
|
10490
|
+
var _ref$size = _ref.size,
|
|
10491
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
10492
|
+
_ref$color = _ref.color,
|
|
10493
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
10494
|
+
_ref$stroke = _ref.stroke,
|
|
10495
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
10496
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
10497
|
+
|
|
10498
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10499
|
+
className: "icon icon-tabler icon-tabler-brand-mastercard",
|
|
10500
|
+
width: size,
|
|
10501
|
+
height: size,
|
|
10502
|
+
viewBox: "0 0 24 24",
|
|
10503
|
+
strokeWidth: stroke,
|
|
10504
|
+
stroke: color,
|
|
10505
|
+
fill: "none",
|
|
10506
|
+
strokeLinecap: "round",
|
|
10507
|
+
strokeLinejoin: "round"
|
|
10508
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10509
|
+
stroke: "none",
|
|
10510
|
+
d: "M0 0h24v24H0z",
|
|
10511
|
+
fill: "none"
|
|
10512
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
10513
|
+
cx: 14,
|
|
10514
|
+
cy: 12,
|
|
10515
|
+
r: 3
|
|
10516
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
10517
|
+
d: "M12.001 9.765a3 3 0 1 0 0 4.47"
|
|
10518
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
10519
|
+
x: 3,
|
|
10520
|
+
y: 5,
|
|
10521
|
+
width: 18,
|
|
10522
|
+
height: 14,
|
|
10523
|
+
rx: 2
|
|
10524
|
+
}));
|
|
10525
|
+
}
|
|
10526
|
+
|
|
10351
10527
|
function IconBrandMedium(_ref) {
|
|
10352
10528
|
var _ref$size = _ref.size,
|
|
10353
10529
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -11123,6 +11299,42 @@
|
|
|
11123
11299
|
}));
|
|
11124
11300
|
}
|
|
11125
11301
|
|
|
11302
|
+
function IconBrandStackOfverflow(_ref) {
|
|
11303
|
+
var _ref$size = _ref.size,
|
|
11304
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
11305
|
+
_ref$color = _ref.color,
|
|
11306
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
11307
|
+
_ref$stroke = _ref.stroke,
|
|
11308
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
11309
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
11310
|
+
|
|
11311
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11312
|
+
className: "icon icon-tabler icon-tabler-brand-stack-ofverflow",
|
|
11313
|
+
width: size,
|
|
11314
|
+
height: size,
|
|
11315
|
+
viewBox: "0 0 24 24",
|
|
11316
|
+
strokeWidth: stroke,
|
|
11317
|
+
stroke: color,
|
|
11318
|
+
fill: "none",
|
|
11319
|
+
strokeLinecap: "round",
|
|
11320
|
+
strokeLinejoin: "round"
|
|
11321
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
11322
|
+
stroke: "none",
|
|
11323
|
+
d: "M0 0h24v24H0z",
|
|
11324
|
+
fill: "none"
|
|
11325
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11326
|
+
d: "M4 17v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-1"
|
|
11327
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11328
|
+
d: "M8 16h8"
|
|
11329
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11330
|
+
d: "M8.322 12.582l7.956 .836"
|
|
11331
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11332
|
+
d: "M8.787 9.168l7.826 1.664"
|
|
11333
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11334
|
+
d: "M10.096 5.764l7.608 2.472"
|
|
11335
|
+
}));
|
|
11336
|
+
}
|
|
11337
|
+
|
|
11126
11338
|
function IconBrandSteam(_ref) {
|
|
11127
11339
|
var _ref$size = _ref.size,
|
|
11128
11340
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -19212,6 +19424,38 @@
|
|
|
19212
19424
|
}));
|
|
19213
19425
|
}
|
|
19214
19426
|
|
|
19427
|
+
function IconCurrencyDogecoin(_ref) {
|
|
19428
|
+
var _ref$size = _ref.size,
|
|
19429
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
19430
|
+
_ref$color = _ref.color,
|
|
19431
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
19432
|
+
_ref$stroke = _ref.stroke,
|
|
19433
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
19434
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
19435
|
+
|
|
19436
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
19437
|
+
className: "icon icon-tabler icon-tabler-currency-dogecoin",
|
|
19438
|
+
width: size,
|
|
19439
|
+
height: size,
|
|
19440
|
+
viewBox: "0 0 24 24",
|
|
19441
|
+
strokeWidth: stroke,
|
|
19442
|
+
stroke: color,
|
|
19443
|
+
fill: "none",
|
|
19444
|
+
strokeLinecap: "round",
|
|
19445
|
+
strokeLinejoin: "round"
|
|
19446
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
19447
|
+
stroke: "none",
|
|
19448
|
+
d: "M0 0h24v24H0z",
|
|
19449
|
+
fill: "none"
|
|
19450
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
19451
|
+
d: "M6 12h6"
|
|
19452
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
19453
|
+
d: "M8 5v14"
|
|
19454
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
19455
|
+
d: "M5 19h7a7 7 0 0 0 0 -14h-7"
|
|
19456
|
+
}));
|
|
19457
|
+
}
|
|
19458
|
+
|
|
19215
19459
|
function IconCurrencyDollarAustralian(_ref) {
|
|
19216
19460
|
var _ref$size = _ref.size,
|
|
19217
19461
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -21918,6 +22162,106 @@
|
|
|
21918
22162
|
}));
|
|
21919
22163
|
}
|
|
21920
22164
|
|
|
22165
|
+
function IconDoorEnter(_ref) {
|
|
22166
|
+
var _ref$size = _ref.size,
|
|
22167
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
22168
|
+
_ref$color = _ref.color,
|
|
22169
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
22170
|
+
_ref$stroke = _ref.stroke,
|
|
22171
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
22172
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
22173
|
+
|
|
22174
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
22175
|
+
className: "icon icon-tabler icon-tabler-door-enter",
|
|
22176
|
+
width: size,
|
|
22177
|
+
height: size,
|
|
22178
|
+
viewBox: "0 0 24 24",
|
|
22179
|
+
strokeWidth: stroke,
|
|
22180
|
+
stroke: color,
|
|
22181
|
+
fill: "none",
|
|
22182
|
+
strokeLinecap: "round",
|
|
22183
|
+
strokeLinejoin: "round"
|
|
22184
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
22185
|
+
stroke: "none",
|
|
22186
|
+
d: "M0 0h24v24H0z",
|
|
22187
|
+
fill: "none"
|
|
22188
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22189
|
+
d: "M13 12v.01"
|
|
22190
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22191
|
+
d: "M3 21h18"
|
|
22192
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22193
|
+
d: "M5 21v-16a2 2 0 0 1 2 -2h6m4 10.5v7.5"
|
|
22194
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22195
|
+
d: "M21 7h-7m3 -3l-3 3l3 3"
|
|
22196
|
+
}));
|
|
22197
|
+
}
|
|
22198
|
+
|
|
22199
|
+
function IconDoorExit(_ref) {
|
|
22200
|
+
var _ref$size = _ref.size,
|
|
22201
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
22202
|
+
_ref$color = _ref.color,
|
|
22203
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
22204
|
+
_ref$stroke = _ref.stroke,
|
|
22205
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
22206
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
22207
|
+
|
|
22208
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
22209
|
+
className: "icon icon-tabler icon-tabler-door-exit",
|
|
22210
|
+
width: size,
|
|
22211
|
+
height: size,
|
|
22212
|
+
viewBox: "0 0 24 24",
|
|
22213
|
+
strokeWidth: stroke,
|
|
22214
|
+
stroke: color,
|
|
22215
|
+
fill: "none",
|
|
22216
|
+
strokeLinecap: "round",
|
|
22217
|
+
strokeLinejoin: "round"
|
|
22218
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
22219
|
+
stroke: "none",
|
|
22220
|
+
d: "M0 0h24v24H0z",
|
|
22221
|
+
fill: "none"
|
|
22222
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22223
|
+
d: "M13 12v.01"
|
|
22224
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22225
|
+
d: "M3 21h18"
|
|
22226
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22227
|
+
d: "M5 21v-16a2 2 0 0 1 2 -2h7.5m2.5 10.5v7.5"
|
|
22228
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22229
|
+
d: "M14 7h7m-3 -3l3 3l-3 3"
|
|
22230
|
+
}));
|
|
22231
|
+
}
|
|
22232
|
+
|
|
22233
|
+
function IconDoor(_ref) {
|
|
22234
|
+
var _ref$size = _ref.size,
|
|
22235
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
22236
|
+
_ref$color = _ref.color,
|
|
22237
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
22238
|
+
_ref$stroke = _ref.stroke,
|
|
22239
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
22240
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
22241
|
+
|
|
22242
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
22243
|
+
className: "icon icon-tabler icon-tabler-door",
|
|
22244
|
+
width: size,
|
|
22245
|
+
height: size,
|
|
22246
|
+
viewBox: "0 0 24 24",
|
|
22247
|
+
strokeWidth: stroke,
|
|
22248
|
+
stroke: color,
|
|
22249
|
+
fill: "none",
|
|
22250
|
+
strokeLinecap: "round",
|
|
22251
|
+
strokeLinejoin: "round"
|
|
22252
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
22253
|
+
stroke: "none",
|
|
22254
|
+
d: "M0 0h24v24H0z",
|
|
22255
|
+
fill: "none"
|
|
22256
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22257
|
+
d: "M14 12v.01"
|
|
22258
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22259
|
+
d: "M3 21h18"
|
|
22260
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22261
|
+
d: "M6 21v-16a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v16"
|
|
22262
|
+
}));
|
|
22263
|
+
}
|
|
22264
|
+
|
|
21921
22265
|
function IconDotsCircleHorizontal(_ref) {
|
|
21922
22266
|
var _ref$size = _ref.size,
|
|
21923
22267
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -27003,6 +27347,48 @@
|
|
|
27003
27347
|
}));
|
|
27004
27348
|
}
|
|
27005
27349
|
|
|
27350
|
+
function IconHandClick(_ref) {
|
|
27351
|
+
var _ref$size = _ref.size,
|
|
27352
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
27353
|
+
_ref$color = _ref.color,
|
|
27354
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
27355
|
+
_ref$stroke = _ref.stroke,
|
|
27356
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
27357
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
27358
|
+
|
|
27359
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
27360
|
+
className: "icon icon-tabler icon-tabler-hand-click",
|
|
27361
|
+
width: size,
|
|
27362
|
+
height: size,
|
|
27363
|
+
viewBox: "0 0 24 24",
|
|
27364
|
+
strokeWidth: stroke,
|
|
27365
|
+
stroke: color,
|
|
27366
|
+
fill: "none",
|
|
27367
|
+
strokeLinecap: "round",
|
|
27368
|
+
strokeLinejoin: "round"
|
|
27369
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
27370
|
+
stroke: "none",
|
|
27371
|
+
d: "M0 0h24v24H0z",
|
|
27372
|
+
fill: "none"
|
|
27373
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27374
|
+
d: "M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"
|
|
27375
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27376
|
+
d: "M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"
|
|
27377
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27378
|
+
d: "M14 10.5a1.5 1.5 0 0 1 3 0v1.5"
|
|
27379
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27380
|
+
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"
|
|
27381
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27382
|
+
d: "M5 3l-1 -1"
|
|
27383
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27384
|
+
d: "M4 7h-1"
|
|
27385
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27386
|
+
d: "M14 3l1 -1"
|
|
27387
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27388
|
+
d: "M15 6h1"
|
|
27389
|
+
}));
|
|
27390
|
+
}
|
|
27391
|
+
|
|
27006
27392
|
function IconHandFinger(_ref) {
|
|
27007
27393
|
var _ref$size = _ref.size,
|
|
27008
27394
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -27105,6 +27491,44 @@
|
|
|
27105
27491
|
}));
|
|
27106
27492
|
}
|
|
27107
27493
|
|
|
27494
|
+
function IconHandMove(_ref) {
|
|
27495
|
+
var _ref$size = _ref.size,
|
|
27496
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
27497
|
+
_ref$color = _ref.color,
|
|
27498
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
27499
|
+
_ref$stroke = _ref.stroke,
|
|
27500
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
27501
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
27502
|
+
|
|
27503
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
27504
|
+
className: "icon icon-tabler icon-tabler-hand-move",
|
|
27505
|
+
width: size,
|
|
27506
|
+
height: size,
|
|
27507
|
+
viewBox: "0 0 24 24",
|
|
27508
|
+
strokeWidth: stroke,
|
|
27509
|
+
stroke: color,
|
|
27510
|
+
fill: "none",
|
|
27511
|
+
strokeLinecap: "round",
|
|
27512
|
+
strokeLinejoin: "round"
|
|
27513
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
27514
|
+
stroke: "none",
|
|
27515
|
+
d: "M0 0h24v24H0z",
|
|
27516
|
+
fill: "none"
|
|
27517
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27518
|
+
d: "M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5"
|
|
27519
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27520
|
+
d: "M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5"
|
|
27521
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27522
|
+
d: "M14 10.5a1.5 1.5 0 0 1 3 0v1.5"
|
|
27523
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27524
|
+
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"
|
|
27525
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27526
|
+
d: "M2.541 5.594a13.487 13.487 0 0 1 2.46 -1.427"
|
|
27527
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27528
|
+
d: "M14.001 3.458c1.32 .354 2.558 .902 3.685 1.612"
|
|
27529
|
+
}));
|
|
27530
|
+
}
|
|
27531
|
+
|
|
27108
27532
|
function IconHandOff(_ref) {
|
|
27109
27533
|
var _ref$size = _ref.size,
|
|
27110
27534
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -31868,6 +32292,46 @@
|
|
|
31868
32292
|
}));
|
|
31869
32293
|
}
|
|
31870
32294
|
|
|
32295
|
+
function IconLockSquare(_ref) {
|
|
32296
|
+
var _ref$size = _ref.size,
|
|
32297
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
32298
|
+
_ref$color = _ref.color,
|
|
32299
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
32300
|
+
_ref$stroke = _ref.stroke,
|
|
32301
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
32302
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
32303
|
+
|
|
32304
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
32305
|
+
className: "icon icon-tabler icon-tabler-lock-square",
|
|
32306
|
+
width: size,
|
|
32307
|
+
height: size,
|
|
32308
|
+
viewBox: "0 0 24 24",
|
|
32309
|
+
strokeWidth: stroke,
|
|
32310
|
+
stroke: color,
|
|
32311
|
+
fill: "none",
|
|
32312
|
+
strokeLinecap: "round",
|
|
32313
|
+
strokeLinejoin: "round"
|
|
32314
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32315
|
+
stroke: "none",
|
|
32316
|
+
d: "M0 0h24v24H0z",
|
|
32317
|
+
fill: "none"
|
|
32318
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
32319
|
+
x: 8,
|
|
32320
|
+
y: 11,
|
|
32321
|
+
width: 8,
|
|
32322
|
+
height: 5,
|
|
32323
|
+
rx: 1
|
|
32324
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
32325
|
+
d: "M10 11v-2a2 2 0 1 1 4 0v2"
|
|
32326
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
32327
|
+
x: 4,
|
|
32328
|
+
y: 4,
|
|
32329
|
+
width: 16,
|
|
32330
|
+
height: 16,
|
|
32331
|
+
rx: 2
|
|
32332
|
+
}));
|
|
32333
|
+
}
|
|
32334
|
+
|
|
31871
32335
|
function IconLock(_ref) {
|
|
31872
32336
|
var _ref$size = _ref.size,
|
|
31873
32337
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -36736,6 +37200,36 @@
|
|
|
36736
37200
|
}));
|
|
36737
37201
|
}
|
|
36738
37202
|
|
|
37203
|
+
function IconPig(_ref) {
|
|
37204
|
+
var _ref$size = _ref.size,
|
|
37205
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
37206
|
+
_ref$color = _ref.color,
|
|
37207
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
37208
|
+
_ref$stroke = _ref.stroke,
|
|
37209
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
37210
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
37211
|
+
|
|
37212
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
37213
|
+
className: "icon icon-tabler icon-tabler-pig",
|
|
37214
|
+
width: size,
|
|
37215
|
+
height: size,
|
|
37216
|
+
viewBox: "0 0 24 24",
|
|
37217
|
+
strokeWidth: stroke,
|
|
37218
|
+
stroke: color,
|
|
37219
|
+
fill: "none",
|
|
37220
|
+
strokeLinecap: "round",
|
|
37221
|
+
strokeLinejoin: "round"
|
|
37222
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
37223
|
+
stroke: "none",
|
|
37224
|
+
d: "M0 0h24v24H0z",
|
|
37225
|
+
fill: "none"
|
|
37226
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
37227
|
+
d: "M15 11v.01"
|
|
37228
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
37229
|
+
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"
|
|
37230
|
+
}));
|
|
37231
|
+
}
|
|
37232
|
+
|
|
36739
37233
|
function IconPill(_ref) {
|
|
36740
37234
|
var _ref$size = _ref.size,
|
|
36741
37235
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -40005,6 +40499,40 @@
|
|
|
40005
40499
|
}));
|
|
40006
40500
|
}
|
|
40007
40501
|
|
|
40502
|
+
function IconScaleOutline(_ref) {
|
|
40503
|
+
var _ref$size = _ref.size,
|
|
40504
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
40505
|
+
_ref$color = _ref.color,
|
|
40506
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
40507
|
+
_ref$stroke = _ref.stroke,
|
|
40508
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
40509
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
40510
|
+
|
|
40511
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
40512
|
+
className: "icon icon-tabler icon-tabler-scale-outline",
|
|
40513
|
+
width: size,
|
|
40514
|
+
height: size,
|
|
40515
|
+
viewBox: "0 0 24 24",
|
|
40516
|
+
strokeWidth: stroke,
|
|
40517
|
+
stroke: color,
|
|
40518
|
+
fill: "none",
|
|
40519
|
+
strokeLinecap: "round",
|
|
40520
|
+
strokeLinejoin: "round"
|
|
40521
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
40522
|
+
stroke: "none",
|
|
40523
|
+
d: "M0 0h24v24H0z",
|
|
40524
|
+
fill: "none"
|
|
40525
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
40526
|
+
x: 3,
|
|
40527
|
+
y: 3,
|
|
40528
|
+
width: 18,
|
|
40529
|
+
height: 18,
|
|
40530
|
+
rx: 4
|
|
40531
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
40532
|
+
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"
|
|
40533
|
+
}));
|
|
40534
|
+
}
|
|
40535
|
+
|
|
40008
40536
|
function IconScale(_ref) {
|
|
40009
40537
|
var _ref$size = _ref.size,
|
|
40010
40538
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -42435,6 +42963,70 @@
|
|
|
42435
42963
|
}));
|
|
42436
42964
|
}
|
|
42437
42965
|
|
|
42966
|
+
function IconSpacingHorizontal(_ref) {
|
|
42967
|
+
var _ref$size = _ref.size,
|
|
42968
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
42969
|
+
_ref$color = _ref.color,
|
|
42970
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
42971
|
+
_ref$stroke = _ref.stroke,
|
|
42972
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
42973
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
42974
|
+
|
|
42975
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
42976
|
+
className: "icon icon-tabler icon-tabler-spacing-horizontal",
|
|
42977
|
+
width: size,
|
|
42978
|
+
height: size,
|
|
42979
|
+
viewBox: "0 0 24 24",
|
|
42980
|
+
strokeWidth: stroke,
|
|
42981
|
+
stroke: color,
|
|
42982
|
+
fill: "none",
|
|
42983
|
+
strokeLinecap: "round",
|
|
42984
|
+
strokeLinejoin: "round"
|
|
42985
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
42986
|
+
stroke: "none",
|
|
42987
|
+
d: "M0 0h24v24H0z",
|
|
42988
|
+
fill: "none"
|
|
42989
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
42990
|
+
d: "M20 20h-2a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h2"
|
|
42991
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
42992
|
+
d: "M4 20h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"
|
|
42993
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
42994
|
+
d: "M12 8v8"
|
|
42995
|
+
}));
|
|
42996
|
+
}
|
|
42997
|
+
|
|
42998
|
+
function IconSpacingVertical(_ref) {
|
|
42999
|
+
var _ref$size = _ref.size,
|
|
43000
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
43001
|
+
_ref$color = _ref.color,
|
|
43002
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
43003
|
+
_ref$stroke = _ref.stroke,
|
|
43004
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
43005
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
43006
|
+
|
|
43007
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
43008
|
+
className: "icon icon-tabler icon-tabler-spacing-vertical",
|
|
43009
|
+
width: size,
|
|
43010
|
+
height: size,
|
|
43011
|
+
viewBox: "0 0 24 24",
|
|
43012
|
+
strokeWidth: stroke,
|
|
43013
|
+
stroke: color,
|
|
43014
|
+
fill: "none",
|
|
43015
|
+
strokeLinecap: "round",
|
|
43016
|
+
strokeLinejoin: "round"
|
|
43017
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
43018
|
+
stroke: "none",
|
|
43019
|
+
d: "M0 0h24v24H0z",
|
|
43020
|
+
fill: "none"
|
|
43021
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
43022
|
+
d: "M4 20v-2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v2"
|
|
43023
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
43024
|
+
d: "M4 4v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"
|
|
43025
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
43026
|
+
d: "M16 12h-8"
|
|
43027
|
+
}));
|
|
43028
|
+
}
|
|
43029
|
+
|
|
42438
43030
|
function IconSpeakerphone(_ref) {
|
|
42439
43031
|
var _ref$size = _ref.size,
|
|
42440
43032
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -48592,6 +49184,40 @@
|
|
|
48592
49184
|
}));
|
|
48593
49185
|
}
|
|
48594
49186
|
|
|
49187
|
+
function IconWallpaper(_ref) {
|
|
49188
|
+
var _ref$size = _ref.size,
|
|
49189
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
49190
|
+
_ref$color = _ref.color,
|
|
49191
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
49192
|
+
_ref$stroke = _ref.stroke,
|
|
49193
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
49194
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
49195
|
+
|
|
49196
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
49197
|
+
className: "icon icon-tabler icon-tabler-wallpaper",
|
|
49198
|
+
width: size,
|
|
49199
|
+
height: size,
|
|
49200
|
+
viewBox: "0 0 24 24",
|
|
49201
|
+
strokeWidth: stroke,
|
|
49202
|
+
stroke: color,
|
|
49203
|
+
fill: "none",
|
|
49204
|
+
strokeLinecap: "round",
|
|
49205
|
+
strokeLinejoin: "round"
|
|
49206
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
49207
|
+
stroke: "none",
|
|
49208
|
+
d: "M0 0h24v24H0z",
|
|
49209
|
+
fill: "none"
|
|
49210
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
49211
|
+
d: "M8 6h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-12"
|
|
49212
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
49213
|
+
cx: 6,
|
|
49214
|
+
cy: 18,
|
|
49215
|
+
r: 2
|
|
49216
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
49217
|
+
d: "M8 18v-12a2 2 0 1 0 -4 0v12"
|
|
49218
|
+
}));
|
|
49219
|
+
}
|
|
49220
|
+
|
|
48595
49221
|
function IconWand(_ref) {
|
|
48596
49222
|
var _ref$size = _ref.size,
|
|
48597
49223
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -50153,7 +50779,10 @@
|
|
|
50153
50779
|
exports.IconAtom = IconAtom;
|
|
50154
50780
|
exports.IconAtom2 = IconAtom2;
|
|
50155
50781
|
exports.IconAward = IconAward;
|
|
50782
|
+
exports.IconAxisX = IconAxisX;
|
|
50783
|
+
exports.IconAxisY = IconAxisY;
|
|
50156
50784
|
exports.IconBackhoe = IconBackhoe;
|
|
50785
|
+
exports.IconBackpack = IconBackpack;
|
|
50157
50786
|
exports.IconBackspace = IconBackspace;
|
|
50158
50787
|
exports.IconBallAmericanFootball = IconBallAmericanFootball;
|
|
50159
50788
|
exports.IconBallBasketball = IconBallBasketball;
|
|
@@ -50167,6 +50796,7 @@
|
|
|
50167
50796
|
exports.IconBandage = IconBandage;
|
|
50168
50797
|
exports.IconBarcode = IconBarcode;
|
|
50169
50798
|
exports.IconBasket = IconBasket;
|
|
50799
|
+
exports.IconBath = IconBath;
|
|
50170
50800
|
exports.IconBattery = IconBattery;
|
|
50171
50801
|
exports.IconBattery1 = IconBattery1;
|
|
50172
50802
|
exports.IconBattery2 = IconBattery2;
|
|
@@ -50274,6 +50904,7 @@
|
|
|
50274
50904
|
exports.IconBrandKickstarter = IconBrandKickstarter;
|
|
50275
50905
|
exports.IconBrandKotlin = IconBrandKotlin;
|
|
50276
50906
|
exports.IconBrandLinkedin = IconBrandLinkedin;
|
|
50907
|
+
exports.IconBrandMastercard = IconBrandMastercard;
|
|
50277
50908
|
exports.IconBrandMedium = IconBrandMedium;
|
|
50278
50909
|
exports.IconBrandMessenger = IconBrandMessenger;
|
|
50279
50910
|
exports.IconBrandNetflix = IconBrandNetflix;
|
|
@@ -50297,6 +50928,7 @@
|
|
|
50297
50928
|
exports.IconBrandSnapchat = IconBrandSnapchat;
|
|
50298
50929
|
exports.IconBrandSoundcloud = IconBrandSoundcloud;
|
|
50299
50930
|
exports.IconBrandSpotify = IconBrandSpotify;
|
|
50931
|
+
exports.IconBrandStackOfverflow = IconBrandStackOfverflow;
|
|
50300
50932
|
exports.IconBrandSteam = IconBrandSteam;
|
|
50301
50933
|
exports.IconBrandStripe = IconBrandStripe;
|
|
50302
50934
|
exports.IconBrandTabler = IconBrandTabler;
|
|
@@ -50514,6 +51146,7 @@
|
|
|
50514
51146
|
exports.IconCurrencyCent = IconCurrencyCent;
|
|
50515
51147
|
exports.IconCurrencyDinar = IconCurrencyDinar;
|
|
50516
51148
|
exports.IconCurrencyDirham = IconCurrencyDirham;
|
|
51149
|
+
exports.IconCurrencyDogecoin = IconCurrencyDogecoin;
|
|
50517
51150
|
exports.IconCurrencyDollar = IconCurrencyDollar;
|
|
50518
51151
|
exports.IconCurrencyDollarAustralian = IconCurrencyDollarAustralian;
|
|
50519
51152
|
exports.IconCurrencyDollarCanadian = IconCurrencyDollarCanadian;
|
|
@@ -50587,6 +51220,9 @@
|
|
|
50587
51220
|
exports.IconDivide = IconDivide;
|
|
50588
51221
|
exports.IconDna = IconDna;
|
|
50589
51222
|
exports.IconDogBowl = IconDogBowl;
|
|
51223
|
+
exports.IconDoor = IconDoor;
|
|
51224
|
+
exports.IconDoorEnter = IconDoorEnter;
|
|
51225
|
+
exports.IconDoorExit = IconDoorExit;
|
|
50590
51226
|
exports.IconDots = IconDots;
|
|
50591
51227
|
exports.IconDotsCircleHorizontal = IconDotsCircleHorizontal;
|
|
50592
51228
|
exports.IconDotsDiagonal = IconDotsDiagonal;
|
|
@@ -50717,9 +51353,11 @@
|
|
|
50717
51353
|
exports.IconH4 = IconH4;
|
|
50718
51354
|
exports.IconH5 = IconH5;
|
|
50719
51355
|
exports.IconH6 = IconH6;
|
|
51356
|
+
exports.IconHandClick = IconHandClick;
|
|
50720
51357
|
exports.IconHandFinger = IconHandFinger;
|
|
50721
51358
|
exports.IconHandLittleFinger = IconHandLittleFinger;
|
|
50722
51359
|
exports.IconHandMiddleFinger = IconHandMiddleFinger;
|
|
51360
|
+
exports.IconHandMove = IconHandMove;
|
|
50723
51361
|
exports.IconHandOff = IconHandOff;
|
|
50724
51362
|
exports.IconHandRingFinger = IconHandRingFinger;
|
|
50725
51363
|
exports.IconHandRock = IconHandRock;
|
|
@@ -50845,6 +51483,7 @@
|
|
|
50845
51483
|
exports.IconLockAccess = IconLockAccess;
|
|
50846
51484
|
exports.IconLockOff = IconLockOff;
|
|
50847
51485
|
exports.IconLockOpen = IconLockOpen;
|
|
51486
|
+
exports.IconLockSquare = IconLockSquare;
|
|
50848
51487
|
exports.IconLogin = IconLogin;
|
|
50849
51488
|
exports.IconLogout = IconLogout;
|
|
50850
51489
|
exports.IconMacro = IconMacro;
|
|
@@ -50978,6 +51617,7 @@
|
|
|
50978
51617
|
exports.IconPictureInPicture = IconPictureInPicture;
|
|
50979
51618
|
exports.IconPictureInPictureOff = IconPictureInPictureOff;
|
|
50980
51619
|
exports.IconPictureInPictureOn = IconPictureInPictureOn;
|
|
51620
|
+
exports.IconPig = IconPig;
|
|
50981
51621
|
exports.IconPill = IconPill;
|
|
50982
51622
|
exports.IconPin = IconPin;
|
|
50983
51623
|
exports.IconPinned = IconPinned;
|
|
@@ -51068,6 +51708,7 @@
|
|
|
51068
51708
|
exports.IconSatellite = IconSatellite;
|
|
51069
51709
|
exports.IconSausage = IconSausage;
|
|
51070
51710
|
exports.IconScale = IconScale;
|
|
51711
|
+
exports.IconScaleOutline = IconScaleOutline;
|
|
51071
51712
|
exports.IconScan = IconScan;
|
|
51072
51713
|
exports.IconSchool = IconSchool;
|
|
51073
51714
|
exports.IconScissors = IconScissors;
|
|
@@ -51130,6 +51771,8 @@
|
|
|
51130
51771
|
exports.IconSortDescendingNumbers = IconSortDescendingNumbers;
|
|
51131
51772
|
exports.IconSoup = IconSoup;
|
|
51132
51773
|
exports.IconSpace = IconSpace;
|
|
51774
|
+
exports.IconSpacingHorizontal = IconSpacingHorizontal;
|
|
51775
|
+
exports.IconSpacingVertical = IconSpacingVertical;
|
|
51133
51776
|
exports.IconSpeakerphone = IconSpeakerphone;
|
|
51134
51777
|
exports.IconSpeedboat = IconSpeedboat;
|
|
51135
51778
|
exports.IconSportBillard = IconSportBillard;
|
|
@@ -51295,6 +51938,7 @@
|
|
|
51295
51938
|
exports.IconVolume3 = IconVolume3;
|
|
51296
51939
|
exports.IconWalk = IconWalk;
|
|
51297
51940
|
exports.IconWallet = IconWallet;
|
|
51941
|
+
exports.IconWallpaper = IconWallpaper;
|
|
51298
51942
|
exports.IconWand = IconWand;
|
|
51299
51943
|
exports.IconWaveSawTool = IconWaveSawTool;
|
|
51300
51944
|
exports.IconWaveSine = IconWaveSine;
|