@tabler/icons 1.45.0 → 1.46.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 +100 -49
- 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 +69 -1
- package/iconfont/tabler-icons.html +155 -2
- package/iconfont/tabler-icons.min.css +2 -2
- package/iconfont/tabler-icons.scss +35 -1
- package/icons/brand-notion.svg +11 -0
- package/icons/device-watch-stats-2.svg +9 -0
- package/icons/device-watch-stats.svg +11 -0
- package/icons/engine.svg +10 -0
- package/icons/git-pull-request-closed.svg +11 -0
- package/icons/hotel-service.svg +6 -0
- package/icons/lemon-2.svg +6 -0
- package/icons/map-search.svg +10 -0
- package/icons/puzzle-2.svg +10 -0
- package/icons/report-search.svg +12 -0
- package/icons/rotate-360.svg +7 -0
- package/icons/tag.svg +2 -2
- package/icons/tags.svg +8 -0
- package/icons/text-resize.svg +15 -0
- package/icons/trash-x.svg +9 -0
- package/icons/user-search.svg +9 -0
- package/icons/world-download.svg +11 -0
- package/icons/world-upload.svg +11 -0
- package/icons-png/brand-notion.png +0 -0
- package/icons-png/device-watch-stats-2.png +0 -0
- package/icons-png/device-watch-stats.png +0 -0
- package/icons-png/engine.png +0 -0
- package/icons-png/git-pull-request-closed.png +0 -0
- package/icons-png/hotel-service.png +0 -0
- package/icons-png/lemon-2.png +0 -0
- package/icons-png/map-search.png +0 -0
- package/icons-png/puzzle-2.png +0 -0
- package/icons-png/report-search.png +0 -0
- package/icons-png/rotate-360.png +0 -0
- package/icons-png/tag.png +0 -0
- package/icons-png/tags.png +0 -0
- package/icons-png/text-resize.png +0 -0
- package/icons-png/trash-x.png +0 -0
- package/icons-png/user-search.png +0 -0
- package/icons-png/world-download.png +0 -0
- package/icons-png/world-upload.png +0 -0
- package/icons-react/dist/index.cjs.js +669 -5
- 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 +653 -6
- 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 +669 -5
- 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 +17 -0
- package/package.json +3 -3
- package/tabler-sprite-nostroke.svg +1 -1
- package/tabler-sprite.svg +1 -1
- package/tags.json +176 -17
|
@@ -10962,6 +10962,48 @@ function IconBrandNetflix(_ref) {
|
|
|
10962
10962
|
}));
|
|
10963
10963
|
}
|
|
10964
10964
|
|
|
10965
|
+
function IconBrandNotion(_ref) {
|
|
10966
|
+
var _ref$size = _ref.size,
|
|
10967
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
10968
|
+
_ref$color = _ref.color,
|
|
10969
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
10970
|
+
_ref$stroke = _ref.stroke,
|
|
10971
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
10972
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
10973
|
+
|
|
10974
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10975
|
+
className: "icon icon-tabler icon-tabler-brand-notion",
|
|
10976
|
+
width: size,
|
|
10977
|
+
height: size,
|
|
10978
|
+
viewBox: "0 0 24 24",
|
|
10979
|
+
strokeWidth: stroke,
|
|
10980
|
+
stroke: color,
|
|
10981
|
+
fill: "none",
|
|
10982
|
+
strokeLinecap: "round",
|
|
10983
|
+
strokeLinejoin: "round"
|
|
10984
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10985
|
+
stroke: "none",
|
|
10986
|
+
d: "M0 0h24v24H0z",
|
|
10987
|
+
fill: "none"
|
|
10988
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
10989
|
+
x: 4,
|
|
10990
|
+
y: 4,
|
|
10991
|
+
width: 16,
|
|
10992
|
+
height: 16,
|
|
10993
|
+
rx: 2
|
|
10994
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
10995
|
+
d: "M7 7h3l6 6"
|
|
10996
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
10997
|
+
d: "M8 7v10"
|
|
10998
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
10999
|
+
d: "M7 17h2"
|
|
11000
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11001
|
+
d: "M15 7h2"
|
|
11002
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11003
|
+
d: "M16 7v10h-1l-7 -7"
|
|
11004
|
+
}));
|
|
11005
|
+
}
|
|
11006
|
+
|
|
10965
11007
|
function IconBrandOpenSource(_ref) {
|
|
10966
11008
|
var _ref$size = _ref.size,
|
|
10967
11009
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -22083,6 +22125,86 @@ function IconDeviceTv(_ref) {
|
|
|
22083
22125
|
}));
|
|
22084
22126
|
}
|
|
22085
22127
|
|
|
22128
|
+
function IconDeviceWatchStats2(_ref) {
|
|
22129
|
+
var _ref$size = _ref.size,
|
|
22130
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
22131
|
+
_ref$color = _ref.color,
|
|
22132
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
22133
|
+
_ref$stroke = _ref.stroke,
|
|
22134
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
22135
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
22136
|
+
|
|
22137
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
22138
|
+
className: "icon icon-tabler icon-tabler-device-watch-stats-2",
|
|
22139
|
+
width: size,
|
|
22140
|
+
height: size,
|
|
22141
|
+
viewBox: "0 0 24 24",
|
|
22142
|
+
strokeWidth: stroke,
|
|
22143
|
+
stroke: color,
|
|
22144
|
+
fill: "none",
|
|
22145
|
+
strokeLinecap: "round",
|
|
22146
|
+
strokeLinejoin: "round"
|
|
22147
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
22148
|
+
stroke: "none",
|
|
22149
|
+
d: "M0 0h24v24H0z",
|
|
22150
|
+
fill: "none"
|
|
22151
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
22152
|
+
x: 6,
|
|
22153
|
+
y: 6,
|
|
22154
|
+
width: 12,
|
|
22155
|
+
height: 12,
|
|
22156
|
+
rx: 3
|
|
22157
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22158
|
+
d: "M9 18v3h6v-3"
|
|
22159
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22160
|
+
d: "M9 6v-3h6v3"
|
|
22161
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22162
|
+
d: "M12 10a2 2 0 1 0 2 2"
|
|
22163
|
+
}));
|
|
22164
|
+
}
|
|
22165
|
+
|
|
22166
|
+
function IconDeviceWatchStats(_ref) {
|
|
22167
|
+
var _ref$size = _ref.size,
|
|
22168
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
22169
|
+
_ref$color = _ref.color,
|
|
22170
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
22171
|
+
_ref$stroke = _ref.stroke,
|
|
22172
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
22173
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
22174
|
+
|
|
22175
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
22176
|
+
className: "icon icon-tabler icon-tabler-device-watch-stats",
|
|
22177
|
+
width: size,
|
|
22178
|
+
height: size,
|
|
22179
|
+
viewBox: "0 0 24 24",
|
|
22180
|
+
strokeWidth: stroke,
|
|
22181
|
+
stroke: color,
|
|
22182
|
+
fill: "none",
|
|
22183
|
+
strokeLinecap: "round",
|
|
22184
|
+
strokeLinejoin: "round"
|
|
22185
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
22186
|
+
stroke: "none",
|
|
22187
|
+
d: "M0 0h24v24H0z",
|
|
22188
|
+
fill: "none"
|
|
22189
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
22190
|
+
x: 6,
|
|
22191
|
+
y: 6,
|
|
22192
|
+
width: 12,
|
|
22193
|
+
height: 12,
|
|
22194
|
+
rx: 3
|
|
22195
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22196
|
+
d: "M9 18v3h6v-3"
|
|
22197
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22198
|
+
d: "M9 6v-3h6v3"
|
|
22199
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22200
|
+
d: "M9 14v-4"
|
|
22201
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22202
|
+
d: "M12 14v-1"
|
|
22203
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22204
|
+
d: "M15 14v-3"
|
|
22205
|
+
}));
|
|
22206
|
+
}
|
|
22207
|
+
|
|
22086
22208
|
function IconDeviceWatch(_ref) {
|
|
22087
22209
|
var _ref$size = _ref.size,
|
|
22088
22210
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -23837,6 +23959,42 @@ function IconEmphasis(_ref) {
|
|
|
23837
23959
|
}));
|
|
23838
23960
|
}
|
|
23839
23961
|
|
|
23962
|
+
function IconEngine(_ref) {
|
|
23963
|
+
var _ref$size = _ref.size,
|
|
23964
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
23965
|
+
_ref$color = _ref.color,
|
|
23966
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
23967
|
+
_ref$stroke = _ref.stroke,
|
|
23968
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
23969
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
23970
|
+
|
|
23971
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
23972
|
+
className: "icon icon-tabler icon-tabler-engine",
|
|
23973
|
+
width: size,
|
|
23974
|
+
height: size,
|
|
23975
|
+
viewBox: "0 0 24 24",
|
|
23976
|
+
strokeWidth: stroke,
|
|
23977
|
+
stroke: color,
|
|
23978
|
+
fill: "none",
|
|
23979
|
+
strokeLinecap: "round",
|
|
23980
|
+
strokeLinejoin: "round"
|
|
23981
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
23982
|
+
stroke: "none",
|
|
23983
|
+
d: "M0 0h24v24H0z",
|
|
23984
|
+
fill: "none"
|
|
23985
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23986
|
+
d: "M3 10v6"
|
|
23987
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23988
|
+
d: "M12 5v3"
|
|
23989
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23990
|
+
d: "M10 5h4"
|
|
23991
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23992
|
+
d: "M5 13h-2"
|
|
23993
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23994
|
+
d: "M6 10h2l2 -2h3.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-2v-2h-3v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6z"
|
|
23995
|
+
}));
|
|
23996
|
+
}
|
|
23997
|
+
|
|
23840
23998
|
function IconEqualNot(_ref) {
|
|
23841
23999
|
var _ref$size = _ref.size,
|
|
23842
24000
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -27389,6 +27547,50 @@ function IconGitMerge(_ref) {
|
|
|
27389
27547
|
}));
|
|
27390
27548
|
}
|
|
27391
27549
|
|
|
27550
|
+
function IconGitPullRequestClosed(_ref) {
|
|
27551
|
+
var _ref$size = _ref.size,
|
|
27552
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
27553
|
+
_ref$color = _ref.color,
|
|
27554
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
27555
|
+
_ref$stroke = _ref.stroke,
|
|
27556
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
27557
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
27558
|
+
|
|
27559
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
27560
|
+
className: "icon icon-tabler icon-tabler-git-pull-request-closed",
|
|
27561
|
+
width: size,
|
|
27562
|
+
height: size,
|
|
27563
|
+
viewBox: "0 0 24 24",
|
|
27564
|
+
strokeWidth: stroke,
|
|
27565
|
+
stroke: color,
|
|
27566
|
+
fill: "none",
|
|
27567
|
+
strokeLinecap: "round",
|
|
27568
|
+
strokeLinejoin: "round"
|
|
27569
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
27570
|
+
stroke: "none",
|
|
27571
|
+
d: "M0 0h24v24H0z",
|
|
27572
|
+
fill: "none"
|
|
27573
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
27574
|
+
cx: 6,
|
|
27575
|
+
cy: 18,
|
|
27576
|
+
r: 2
|
|
27577
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
27578
|
+
cx: 6,
|
|
27579
|
+
cy: 6,
|
|
27580
|
+
r: 2
|
|
27581
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
27582
|
+
cx: 18,
|
|
27583
|
+
cy: 18,
|
|
27584
|
+
r: 2
|
|
27585
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27586
|
+
d: "M6 8v8"
|
|
27587
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27588
|
+
d: "M18 11v5"
|
|
27589
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27590
|
+
d: "M16 4l4 4m0 -4l-4 4"
|
|
27591
|
+
}));
|
|
27592
|
+
}
|
|
27593
|
+
|
|
27392
27594
|
function IconGitPullRequest(_ref) {
|
|
27393
27595
|
var _ref$size = _ref.size,
|
|
27394
27596
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -29297,6 +29499,34 @@ function IconHome(_ref) {
|
|
|
29297
29499
|
}));
|
|
29298
29500
|
}
|
|
29299
29501
|
|
|
29502
|
+
function IconHotelService(_ref) {
|
|
29503
|
+
var _ref$size = _ref.size,
|
|
29504
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
29505
|
+
_ref$color = _ref.color,
|
|
29506
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
29507
|
+
_ref$stroke = _ref.stroke,
|
|
29508
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
29509
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
29510
|
+
|
|
29511
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
29512
|
+
className: "icon icon-tabler icon-tabler-hotel-service",
|
|
29513
|
+
width: size,
|
|
29514
|
+
height: size,
|
|
29515
|
+
viewBox: "0 0 24 24",
|
|
29516
|
+
strokeWidth: stroke,
|
|
29517
|
+
stroke: color,
|
|
29518
|
+
fill: "none",
|
|
29519
|
+
strokeLinecap: "round",
|
|
29520
|
+
strokeLinejoin: "round"
|
|
29521
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
29522
|
+
stroke: "none",
|
|
29523
|
+
d: "M0 0h24v24H0z",
|
|
29524
|
+
fill: "none"
|
|
29525
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
29526
|
+
d: "M8.5 10a1.5 1.5 0 0 1 -1.5 -1.5a5.5 5.5 0 0 1 11 0v10.5a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-2c0 -1.38 .71 -2.444 1.88 -3.175l4.424 -2.765c1.055 -.66 1.696 -1.316 1.696 -2.56a2.5 2.5 0 1 0 -5 0a1.5 1.5 0 0 1 -1.5 1.5z"
|
|
29527
|
+
}));
|
|
29528
|
+
}
|
|
29529
|
+
|
|
29300
29530
|
function IconIceCream2(_ref) {
|
|
29301
29531
|
var _ref$size = _ref.size,
|
|
29302
29532
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -31265,6 +31495,34 @@ function IconLego(_ref) {
|
|
|
31265
31495
|
}));
|
|
31266
31496
|
}
|
|
31267
31497
|
|
|
31498
|
+
function IconLemon2(_ref) {
|
|
31499
|
+
var _ref$size = _ref.size,
|
|
31500
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
31501
|
+
_ref$color = _ref.color,
|
|
31502
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
31503
|
+
_ref$stroke = _ref.stroke,
|
|
31504
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
31505
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
31506
|
+
|
|
31507
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
31508
|
+
className: "icon icon-tabler icon-tabler-lemon-2",
|
|
31509
|
+
width: size,
|
|
31510
|
+
height: size,
|
|
31511
|
+
viewBox: "0 0 24 24",
|
|
31512
|
+
strokeWidth: stroke,
|
|
31513
|
+
stroke: color,
|
|
31514
|
+
fill: "none",
|
|
31515
|
+
strokeLinecap: "round",
|
|
31516
|
+
strokeLinejoin: "round"
|
|
31517
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
31518
|
+
stroke: "none",
|
|
31519
|
+
d: "M0 0h24v24H0z",
|
|
31520
|
+
fill: "none"
|
|
31521
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
31522
|
+
d: "M18 4a2 2 0 0 1 1.185 3.611c1.55 2.94 .873 6.917 -1.892 9.682c-2.765 2.765 -6.743 3.442 -9.682 1.892a2 2 0 1 1 -2.796 -2.796c-1.55 -2.94 -.873 -6.917 1.892 -9.682c2.765 -2.765 6.743 -3.442 9.682 -1.892a1.999 1.999 0 0 1 1.611 -.815z"
|
|
31523
|
+
}));
|
|
31524
|
+
}
|
|
31525
|
+
|
|
31268
31526
|
function IconLemon(_ref) {
|
|
31269
31527
|
var _ref$size = _ref.size,
|
|
31270
31528
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -33857,6 +34115,44 @@ function IconMapPins(_ref) {
|
|
|
33857
34115
|
}));
|
|
33858
34116
|
}
|
|
33859
34117
|
|
|
34118
|
+
function IconMapSearch(_ref) {
|
|
34119
|
+
var _ref$size = _ref.size,
|
|
34120
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
34121
|
+
_ref$color = _ref.color,
|
|
34122
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
34123
|
+
_ref$stroke = _ref.stroke,
|
|
34124
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
34125
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
34126
|
+
|
|
34127
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
34128
|
+
className: "icon icon-tabler icon-tabler-map-search",
|
|
34129
|
+
width: size,
|
|
34130
|
+
height: size,
|
|
34131
|
+
viewBox: "0 0 24 24",
|
|
34132
|
+
strokeWidth: stroke,
|
|
34133
|
+
stroke: color,
|
|
34134
|
+
fill: "none",
|
|
34135
|
+
strokeLinecap: "round",
|
|
34136
|
+
strokeLinejoin: "round"
|
|
34137
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
34138
|
+
stroke: "none",
|
|
34139
|
+
d: "M0 0h24v24H0z",
|
|
34140
|
+
fill: "none"
|
|
34141
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
34142
|
+
d: "M11 18l-2 -1l-6 3v-13l6 -3l6 3l6 -3v10"
|
|
34143
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
34144
|
+
d: "M9 4v13"
|
|
34145
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
34146
|
+
d: "M15 7v5"
|
|
34147
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
34148
|
+
cx: 16.5,
|
|
34149
|
+
cy: 17.5,
|
|
34150
|
+
r: 2.5
|
|
34151
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
34152
|
+
d: "M18.5 19.5l2.5 2.5"
|
|
34153
|
+
}));
|
|
34154
|
+
}
|
|
34155
|
+
|
|
33860
34156
|
function IconMap(_ref) {
|
|
33861
34157
|
var _ref$size = _ref.size,
|
|
33862
34158
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -39602,6 +39898,46 @@ function IconPropeller(_ref) {
|
|
|
39602
39898
|
}));
|
|
39603
39899
|
}
|
|
39604
39900
|
|
|
39901
|
+
function IconPuzzle2(_ref) {
|
|
39902
|
+
var _ref$size = _ref.size,
|
|
39903
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
39904
|
+
_ref$color = _ref.color,
|
|
39905
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
39906
|
+
_ref$stroke = _ref.stroke,
|
|
39907
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
39908
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
39909
|
+
|
|
39910
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
39911
|
+
className: "icon icon-tabler icon-tabler-puzzle-2",
|
|
39912
|
+
width: size,
|
|
39913
|
+
height: size,
|
|
39914
|
+
viewBox: "0 0 24 24",
|
|
39915
|
+
strokeWidth: stroke,
|
|
39916
|
+
stroke: color,
|
|
39917
|
+
fill: "none",
|
|
39918
|
+
strokeLinecap: "round",
|
|
39919
|
+
strokeLinejoin: "round"
|
|
39920
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
39921
|
+
stroke: "none",
|
|
39922
|
+
d: "M0 0h24v24H0z",
|
|
39923
|
+
fill: "none"
|
|
39924
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
39925
|
+
x: 4,
|
|
39926
|
+
y: 4,
|
|
39927
|
+
width: 16,
|
|
39928
|
+
height: 16,
|
|
39929
|
+
rx: 2
|
|
39930
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
39931
|
+
d: "M12 4v2.5a0.5 .5 0 0 1 -.5 .5a1.5 1.5 0 0 0 0 3a0.5 .5 0 0 1 .5 .5v1.5"
|
|
39932
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
39933
|
+
d: "M12 12v1.5a0.5 .5 0 0 0 .5 .5a1.5 1.5 0 0 1 0 3a0.5 .5 0 0 0 -.5 .5v2.5"
|
|
39934
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
39935
|
+
d: "M20 12h-2.5a0.5 .5 0 0 1 -.5 -.5a1.5 1.5 0 0 0 -3 0a0.5 .5 0 0 1 -.5 .5h-1.5"
|
|
39936
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
39937
|
+
d: "M12 12h-1.5a0.5 .5 0 0 0 -.5 .5a1.5 1.5 0 0 1 -3 0a0.5 .5 0 0 0 -.5 -.5h-2.5"
|
|
39938
|
+
}));
|
|
39939
|
+
}
|
|
39940
|
+
|
|
39605
39941
|
function IconPuzzle(_ref) {
|
|
39606
39942
|
var _ref$size = _ref.size,
|
|
39607
39943
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -40827,6 +41163,52 @@ function IconReportMoney(_ref) {
|
|
|
40827
41163
|
}));
|
|
40828
41164
|
}
|
|
40829
41165
|
|
|
41166
|
+
function IconReportSearch(_ref) {
|
|
41167
|
+
var _ref$size = _ref.size,
|
|
41168
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
41169
|
+
_ref$color = _ref.color,
|
|
41170
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
41171
|
+
_ref$stroke = _ref.stroke,
|
|
41172
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
41173
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
41174
|
+
|
|
41175
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
41176
|
+
className: "icon icon-tabler icon-tabler-report-search",
|
|
41177
|
+
width: size,
|
|
41178
|
+
height: size,
|
|
41179
|
+
viewBox: "0 0 24 24",
|
|
41180
|
+
strokeWidth: stroke,
|
|
41181
|
+
stroke: color,
|
|
41182
|
+
fill: "none",
|
|
41183
|
+
strokeLinecap: "round",
|
|
41184
|
+
strokeLinejoin: "round"
|
|
41185
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
41186
|
+
stroke: "none",
|
|
41187
|
+
d: "M0 0h24v24H0z",
|
|
41188
|
+
fill: "none"
|
|
41189
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
41190
|
+
d: "M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697"
|
|
41191
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
41192
|
+
d: "M18 12v-5a2 2 0 0 0 -2 -2h-2"
|
|
41193
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
41194
|
+
x: 8,
|
|
41195
|
+
y: 3,
|
|
41196
|
+
width: 6,
|
|
41197
|
+
height: 4,
|
|
41198
|
+
rx: 2
|
|
41199
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
41200
|
+
d: "M8 11h4"
|
|
41201
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
41202
|
+
d: "M8 15h3"
|
|
41203
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
41204
|
+
cx: 16.5,
|
|
41205
|
+
cy: 17.5,
|
|
41206
|
+
r: 2.5
|
|
41207
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
41208
|
+
d: "M18.5 19.5l2.5 2.5"
|
|
41209
|
+
}));
|
|
41210
|
+
}
|
|
41211
|
+
|
|
40830
41212
|
function IconReport(_ref) {
|
|
40831
41213
|
var _ref$size = _ref.size,
|
|
40832
41214
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -41054,6 +41436,36 @@ function IconRotate2(_ref) {
|
|
|
41054
41436
|
}));
|
|
41055
41437
|
}
|
|
41056
41438
|
|
|
41439
|
+
function IconRotate360(_ref) {
|
|
41440
|
+
var _ref$size = _ref.size,
|
|
41441
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
41442
|
+
_ref$color = _ref.color,
|
|
41443
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
41444
|
+
_ref$stroke = _ref.stroke,
|
|
41445
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
41446
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
41447
|
+
|
|
41448
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
41449
|
+
className: "icon icon-tabler icon-tabler-rotate-360",
|
|
41450
|
+
width: size,
|
|
41451
|
+
height: size,
|
|
41452
|
+
viewBox: "0 0 24 24",
|
|
41453
|
+
strokeWidth: stroke,
|
|
41454
|
+
stroke: color,
|
|
41455
|
+
fill: "none",
|
|
41456
|
+
strokeLinecap: "round",
|
|
41457
|
+
strokeLinejoin: "round"
|
|
41458
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
41459
|
+
stroke: "none",
|
|
41460
|
+
d: "M0 0h24v24H0z",
|
|
41461
|
+
fill: "none"
|
|
41462
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
41463
|
+
d: "M12 16h4v4"
|
|
41464
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
41465
|
+
d: "M19.458 11.042c.86 -2.366 .722 -4.58 -.6 -5.9c-2.272 -2.274 -7.185 -1.045 -10.973 2.743c-3.788 3.788 -5.017 8.701 -2.744 10.974c2.227 2.226 6.987 1.093 10.74 -2.515"
|
|
41466
|
+
}));
|
|
41467
|
+
}
|
|
41468
|
+
|
|
41057
41469
|
function IconRotateClockwise2(_ref) {
|
|
41058
41470
|
var _ref$size = _ref.size,
|
|
41059
41471
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -46443,12 +46855,45 @@ function IconTag(_ref) {
|
|
|
46443
46855
|
stroke: "none",
|
|
46444
46856
|
d: "M0 0h24v24H0z",
|
|
46445
46857
|
fill: "none"
|
|
46446
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
46447
|
-
d: "M11 3l9 9a1.5 1.5 0 0 1 0 2l-6 6a1.5 1.5 0 0 1 -2 0l-9 -9v-4a4 4 0 0 1 4 -4h4"
|
|
46448
46858
|
}), /*#__PURE__*/React.createElement("circle", {
|
|
46449
|
-
cx:
|
|
46450
|
-
cy:
|
|
46451
|
-
r:
|
|
46859
|
+
cx: 8.5,
|
|
46860
|
+
cy: 8.5,
|
|
46861
|
+
r: 1,
|
|
46862
|
+
fill: "currentColor"
|
|
46863
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
46864
|
+
d: "M4 7v3.859c0 .537 .213 1.052 .593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l4.834 -4.834a2.025 2.025 0 0 0 0 -2.864l-8.117 -8.116a2.025 2.025 0 0 0 -1.431 -.593h-3.859a3 3 0 0 0 -3 3z"
|
|
46865
|
+
}));
|
|
46866
|
+
}
|
|
46867
|
+
|
|
46868
|
+
function IconTags(_ref) {
|
|
46869
|
+
var _ref$size = _ref.size,
|
|
46870
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
46871
|
+
_ref$color = _ref.color,
|
|
46872
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
46873
|
+
_ref$stroke = _ref.stroke,
|
|
46874
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
46875
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
46876
|
+
|
|
46877
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
46878
|
+
className: "icon icon-tabler icon-tabler-tags",
|
|
46879
|
+
width: size,
|
|
46880
|
+
height: size,
|
|
46881
|
+
viewBox: "0 0 24 24",
|
|
46882
|
+
strokeWidth: stroke,
|
|
46883
|
+
stroke: color,
|
|
46884
|
+
fill: "none",
|
|
46885
|
+
strokeLinecap: "round",
|
|
46886
|
+
strokeLinejoin: "round"
|
|
46887
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
46888
|
+
stroke: "none",
|
|
46889
|
+
d: "M0 0h24v24H0z",
|
|
46890
|
+
fill: "none"
|
|
46891
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
46892
|
+
d: "M7.859 6h-2.834a2.025 2.025 0 0 0 -2.025 2.025v2.834c0 .537 .213 1.052 .593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-6.117 -6.116a2.025 2.025 0 0 0 -1.431 -.593z"
|
|
46893
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
46894
|
+
d: "M17.573 18.407l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116"
|
|
46895
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
46896
|
+
d: "M6 9h-.01"
|
|
46452
46897
|
}));
|
|
46453
46898
|
}
|
|
46454
46899
|
|
|
@@ -47177,6 +47622,60 @@ function IconTextDirectionRtl(_ref) {
|
|
|
47177
47622
|
}));
|
|
47178
47623
|
}
|
|
47179
47624
|
|
|
47625
|
+
function IconTextResize(_ref) {
|
|
47626
|
+
var _ref$size = _ref.size,
|
|
47627
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
47628
|
+
_ref$color = _ref.color,
|
|
47629
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
47630
|
+
_ref$stroke = _ref.stroke,
|
|
47631
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
47632
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
47633
|
+
|
|
47634
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
47635
|
+
className: "icon icon-tabler icon-tabler-text-resize",
|
|
47636
|
+
width: size,
|
|
47637
|
+
height: size,
|
|
47638
|
+
viewBox: "0 0 24 24",
|
|
47639
|
+
strokeWidth: stroke,
|
|
47640
|
+
stroke: color,
|
|
47641
|
+
fill: "none",
|
|
47642
|
+
strokeLinecap: "round",
|
|
47643
|
+
strokeLinejoin: "round"
|
|
47644
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
47645
|
+
stroke: "none",
|
|
47646
|
+
d: "M0 0h24v24H0z",
|
|
47647
|
+
fill: "none"
|
|
47648
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
47649
|
+
cx: 5,
|
|
47650
|
+
cy: 5,
|
|
47651
|
+
r: 2
|
|
47652
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
47653
|
+
cx: 19,
|
|
47654
|
+
cy: 5,
|
|
47655
|
+
r: 2
|
|
47656
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
47657
|
+
cx: 5,
|
|
47658
|
+
cy: 19,
|
|
47659
|
+
r: 2
|
|
47660
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
47661
|
+
cx: 19,
|
|
47662
|
+
cy: 19,
|
|
47663
|
+
r: 2
|
|
47664
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
47665
|
+
d: "M5 7v10"
|
|
47666
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
47667
|
+
d: "M7 5h10"
|
|
47668
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
47669
|
+
d: "M7 19h10"
|
|
47670
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
47671
|
+
d: "M19 7v10"
|
|
47672
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
47673
|
+
d: "M10 10h4"
|
|
47674
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
47675
|
+
d: "M12 14v-4"
|
|
47676
|
+
}));
|
|
47677
|
+
}
|
|
47678
|
+
|
|
47180
47679
|
function IconTextWrapDisabled(_ref) {
|
|
47181
47680
|
var _ref$size = _ref.size,
|
|
47182
47681
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -48137,6 +48636,40 @@ function IconTrashOff(_ref) {
|
|
|
48137
48636
|
}));
|
|
48138
48637
|
}
|
|
48139
48638
|
|
|
48639
|
+
function IconTrashX(_ref) {
|
|
48640
|
+
var _ref$size = _ref.size,
|
|
48641
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
48642
|
+
_ref$color = _ref.color,
|
|
48643
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
48644
|
+
_ref$stroke = _ref.stroke,
|
|
48645
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
48646
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
48647
|
+
|
|
48648
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
48649
|
+
className: "icon icon-tabler icon-tabler-trash-x",
|
|
48650
|
+
width: size,
|
|
48651
|
+
height: size,
|
|
48652
|
+
viewBox: "0 0 24 24",
|
|
48653
|
+
strokeWidth: stroke,
|
|
48654
|
+
stroke: color,
|
|
48655
|
+
fill: "none",
|
|
48656
|
+
strokeLinecap: "round",
|
|
48657
|
+
strokeLinejoin: "round"
|
|
48658
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
48659
|
+
stroke: "none",
|
|
48660
|
+
d: "M0 0h24v24H0z",
|
|
48661
|
+
fill: "none"
|
|
48662
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
48663
|
+
d: "M4 7h16"
|
|
48664
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
48665
|
+
d: "M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12"
|
|
48666
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
48667
|
+
d: "M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3"
|
|
48668
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
48669
|
+
d: "M10 12l4 4m0 -4l-4 4"
|
|
48670
|
+
}));
|
|
48671
|
+
}
|
|
48672
|
+
|
|
48140
48673
|
function IconTrash(_ref) {
|
|
48141
48674
|
var _ref$size = _ref.size,
|
|
48142
48675
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -49220,6 +49753,44 @@ function IconUserPlus(_ref) {
|
|
|
49220
49753
|
}));
|
|
49221
49754
|
}
|
|
49222
49755
|
|
|
49756
|
+
function IconUserSearch(_ref) {
|
|
49757
|
+
var _ref$size = _ref.size,
|
|
49758
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
49759
|
+
_ref$color = _ref.color,
|
|
49760
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
49761
|
+
_ref$stroke = _ref.stroke,
|
|
49762
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
49763
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
49764
|
+
|
|
49765
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
49766
|
+
className: "icon icon-tabler icon-tabler-user-search",
|
|
49767
|
+
width: size,
|
|
49768
|
+
height: size,
|
|
49769
|
+
viewBox: "0 0 24 24",
|
|
49770
|
+
strokeWidth: stroke,
|
|
49771
|
+
stroke: color,
|
|
49772
|
+
fill: "none",
|
|
49773
|
+
strokeLinecap: "round",
|
|
49774
|
+
strokeLinejoin: "round"
|
|
49775
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
49776
|
+
stroke: "none",
|
|
49777
|
+
d: "M0 0h24v24H0z",
|
|
49778
|
+
fill: "none"
|
|
49779
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
49780
|
+
cx: 12,
|
|
49781
|
+
cy: 7,
|
|
49782
|
+
r: 4
|
|
49783
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
49784
|
+
d: "M6 21v-2a4 4 0 0 1 4 -4h1"
|
|
49785
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
49786
|
+
cx: 16.5,
|
|
49787
|
+
cy: 17.5,
|
|
49788
|
+
r: 2.5
|
|
49789
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
49790
|
+
d: "M18.5 19.5l2.5 2.5"
|
|
49791
|
+
}));
|
|
49792
|
+
}
|
|
49793
|
+
|
|
49223
49794
|
function IconUserX(_ref) {
|
|
49224
49795
|
var _ref$size = _ref.size,
|
|
49225
49796
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -51059,6 +51630,44 @@ function IconWoman(_ref) {
|
|
|
51059
51630
|
}));
|
|
51060
51631
|
}
|
|
51061
51632
|
|
|
51633
|
+
function IconWorldDownload(_ref) {
|
|
51634
|
+
var _ref$size = _ref.size,
|
|
51635
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
51636
|
+
_ref$color = _ref.color,
|
|
51637
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
51638
|
+
_ref$stroke = _ref.stroke,
|
|
51639
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
51640
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
51641
|
+
|
|
51642
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
51643
|
+
className: "icon icon-tabler icon-tabler-world-download",
|
|
51644
|
+
width: size,
|
|
51645
|
+
height: size,
|
|
51646
|
+
viewBox: "0 0 24 24",
|
|
51647
|
+
strokeWidth: stroke,
|
|
51648
|
+
stroke: color,
|
|
51649
|
+
fill: "none",
|
|
51650
|
+
strokeLinecap: "round",
|
|
51651
|
+
strokeLinejoin: "round"
|
|
51652
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
51653
|
+
stroke: "none",
|
|
51654
|
+
d: "M0 0h24v24H0z",
|
|
51655
|
+
fill: "none"
|
|
51656
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
51657
|
+
d: "M21 12a9 9 0 1 0 -9 9"
|
|
51658
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
51659
|
+
d: "M3.6 9h16.8"
|
|
51660
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
51661
|
+
d: "M3.6 15h8.4"
|
|
51662
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
51663
|
+
d: "M11.578 3a17 17 0 0 0 0 18"
|
|
51664
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
51665
|
+
d: "M12.5 3c1.719 2.755 2.5 5.876 2.5 9"
|
|
51666
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
51667
|
+
d: "M18 14v7m-3 -3l3 3l3 -3"
|
|
51668
|
+
}));
|
|
51669
|
+
}
|
|
51670
|
+
|
|
51062
51671
|
function IconWorldLatitude(_ref) {
|
|
51063
51672
|
var _ref$size = _ref.size,
|
|
51064
51673
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -51143,6 +51752,44 @@ function IconWorldLongitude(_ref) {
|
|
|
51143
51752
|
}));
|
|
51144
51753
|
}
|
|
51145
51754
|
|
|
51755
|
+
function IconWorldUpload(_ref) {
|
|
51756
|
+
var _ref$size = _ref.size,
|
|
51757
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
51758
|
+
_ref$color = _ref.color,
|
|
51759
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
51760
|
+
_ref$stroke = _ref.stroke,
|
|
51761
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
51762
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
51763
|
+
|
|
51764
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
51765
|
+
className: "icon icon-tabler icon-tabler-world-upload",
|
|
51766
|
+
width: size,
|
|
51767
|
+
height: size,
|
|
51768
|
+
viewBox: "0 0 24 24",
|
|
51769
|
+
strokeWidth: stroke,
|
|
51770
|
+
stroke: color,
|
|
51771
|
+
fill: "none",
|
|
51772
|
+
strokeLinecap: "round",
|
|
51773
|
+
strokeLinejoin: "round"
|
|
51774
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
51775
|
+
stroke: "none",
|
|
51776
|
+
d: "M0 0h24v24H0z",
|
|
51777
|
+
fill: "none"
|
|
51778
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
51779
|
+
d: "M21 12a9 9 0 1 0 -9 9"
|
|
51780
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
51781
|
+
d: "M3.6 9h16.8"
|
|
51782
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
51783
|
+
d: "M3.6 15h8.4"
|
|
51784
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
51785
|
+
d: "M11.578 3a17 17 0 0 0 0 18"
|
|
51786
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
51787
|
+
d: "M12.5 3c1.719 2.755 2.5 5.876 2.5 9"
|
|
51788
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
51789
|
+
d: "M18 21v-7m3 3l-3 -3l-3 3"
|
|
51790
|
+
}));
|
|
51791
|
+
}
|
|
51792
|
+
|
|
51146
51793
|
function IconWorld(_ref) {
|
|
51147
51794
|
var _ref$size = _ref.size,
|
|
51148
51795
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -52237,6 +52884,7 @@ exports.IconBrandMedium = IconBrandMedium;
|
|
|
52237
52884
|
exports.IconBrandMessenger = IconBrandMessenger;
|
|
52238
52885
|
exports.IconBrandNetbeans = IconBrandNetbeans;
|
|
52239
52886
|
exports.IconBrandNetflix = IconBrandNetflix;
|
|
52887
|
+
exports.IconBrandNotion = IconBrandNotion;
|
|
52240
52888
|
exports.IconBrandOpenSource = IconBrandOpenSource;
|
|
52241
52889
|
exports.IconBrandOpera = IconBrandOpera;
|
|
52242
52890
|
exports.IconBrandPagekit = IconBrandPagekit;
|
|
@@ -52540,6 +53188,8 @@ exports.IconDeviceSpeaker = IconDeviceSpeaker;
|
|
|
52540
53188
|
exports.IconDeviceTablet = IconDeviceTablet;
|
|
52541
53189
|
exports.IconDeviceTv = IconDeviceTv;
|
|
52542
53190
|
exports.IconDeviceWatch = IconDeviceWatch;
|
|
53191
|
+
exports.IconDeviceWatchStats = IconDeviceWatchStats;
|
|
53192
|
+
exports.IconDeviceWatchStats2 = IconDeviceWatchStats2;
|
|
52543
53193
|
exports.IconDevices = IconDevices;
|
|
52544
53194
|
exports.IconDevices2 = IconDevices2;
|
|
52545
53195
|
exports.IconDevicesPc = IconDevicesPc;
|
|
@@ -52584,6 +53234,7 @@ exports.IconEditCircle = IconEditCircle;
|
|
|
52584
53234
|
exports.IconEgg = IconEgg;
|
|
52585
53235
|
exports.IconEmergencyBed = IconEmergencyBed;
|
|
52586
53236
|
exports.IconEmphasis = IconEmphasis;
|
|
53237
|
+
exports.IconEngine = IconEngine;
|
|
52587
53238
|
exports.IconEqual = IconEqual;
|
|
52588
53239
|
exports.IconEqualNot = IconEqualNot;
|
|
52589
53240
|
exports.IconEraser = IconEraser;
|
|
@@ -52678,6 +53329,7 @@ exports.IconGitCompare = IconGitCompare;
|
|
|
52678
53329
|
exports.IconGitFork = IconGitFork;
|
|
52679
53330
|
exports.IconGitMerge = IconGitMerge;
|
|
52680
53331
|
exports.IconGitPullRequest = IconGitPullRequest;
|
|
53332
|
+
exports.IconGitPullRequestClosed = IconGitPullRequestClosed;
|
|
52681
53333
|
exports.IconGlass = IconGlass;
|
|
52682
53334
|
exports.IconGlassFull = IconGlassFull;
|
|
52683
53335
|
exports.IconGlassOff = IconGlassOff;
|
|
@@ -52726,6 +53378,7 @@ exports.IconHighlight = IconHighlight;
|
|
|
52726
53378
|
exports.IconHistory = IconHistory;
|
|
52727
53379
|
exports.IconHome = IconHome;
|
|
52728
53380
|
exports.IconHome2 = IconHome2;
|
|
53381
|
+
exports.IconHotelService = IconHotelService;
|
|
52729
53382
|
exports.IconIceCream = IconIceCream;
|
|
52730
53383
|
exports.IconIceCream2 = IconIceCream2;
|
|
52731
53384
|
exports.IconId = IconId;
|
|
@@ -52775,6 +53428,7 @@ exports.IconLayoutSidebarRight = IconLayoutSidebarRight;
|
|
|
52775
53428
|
exports.IconLeaf = IconLeaf;
|
|
52776
53429
|
exports.IconLego = IconLego;
|
|
52777
53430
|
exports.IconLemon = IconLemon;
|
|
53431
|
+
exports.IconLemon2 = IconLemon2;
|
|
52778
53432
|
exports.IconLetterA = IconLetterA;
|
|
52779
53433
|
exports.IconLetterB = IconLetterB;
|
|
52780
53434
|
exports.IconLetterC = IconLetterC;
|
|
@@ -52845,6 +53499,7 @@ exports.IconMap2 = IconMap2;
|
|
|
52845
53499
|
exports.IconMapPin = IconMapPin;
|
|
52846
53500
|
exports.IconMapPinOff = IconMapPinOff;
|
|
52847
53501
|
exports.IconMapPins = IconMapPins;
|
|
53502
|
+
exports.IconMapSearch = IconMapSearch;
|
|
52848
53503
|
exports.IconMarkdown = IconMarkdown;
|
|
52849
53504
|
exports.IconMarquee = IconMarquee;
|
|
52850
53505
|
exports.IconMarquee2 = IconMarquee2;
|
|
@@ -53004,6 +53659,7 @@ exports.IconPrison = IconPrison;
|
|
|
53004
53659
|
exports.IconPrompt = IconPrompt;
|
|
53005
53660
|
exports.IconPropeller = IconPropeller;
|
|
53006
53661
|
exports.IconPuzzle = IconPuzzle;
|
|
53662
|
+
exports.IconPuzzle2 = IconPuzzle2;
|
|
53007
53663
|
exports.IconPyramid = IconPyramid;
|
|
53008
53664
|
exports.IconQrcode = IconQrcode;
|
|
53009
53665
|
exports.IconQuestionMark = IconQuestionMark;
|
|
@@ -53037,12 +53693,14 @@ exports.IconReport = IconReport;
|
|
|
53037
53693
|
exports.IconReportAnalytics = IconReportAnalytics;
|
|
53038
53694
|
exports.IconReportMedical = IconReportMedical;
|
|
53039
53695
|
exports.IconReportMoney = IconReportMoney;
|
|
53696
|
+
exports.IconReportSearch = IconReportSearch;
|
|
53040
53697
|
exports.IconResize = IconResize;
|
|
53041
53698
|
exports.IconRipple = IconRipple;
|
|
53042
53699
|
exports.IconRoadSign = IconRoadSign;
|
|
53043
53700
|
exports.IconRocket = IconRocket;
|
|
53044
53701
|
exports.IconRotate = IconRotate;
|
|
53045
53702
|
exports.IconRotate2 = IconRotate2;
|
|
53703
|
+
exports.IconRotate360 = IconRotate360;
|
|
53046
53704
|
exports.IconRotateClockwise = IconRotateClockwise;
|
|
53047
53705
|
exports.IconRotateClockwise2 = IconRotateClockwise2;
|
|
53048
53706
|
exports.IconRotateRectangle = IconRotateRectangle;
|
|
@@ -53189,6 +53847,7 @@ exports.IconTableExport = IconTableExport;
|
|
|
53189
53847
|
exports.IconTableImport = IconTableImport;
|
|
53190
53848
|
exports.IconTableOff = IconTableOff;
|
|
53191
53849
|
exports.IconTag = IconTag;
|
|
53850
|
+
exports.IconTags = IconTags;
|
|
53192
53851
|
exports.IconTallymark1 = IconTallymark1;
|
|
53193
53852
|
exports.IconTallymark2 = IconTallymark2;
|
|
53194
53853
|
exports.IconTallymark3 = IconTallymark3;
|
|
@@ -53208,6 +53867,7 @@ exports.IconTerminal2 = IconTerminal2;
|
|
|
53208
53867
|
exports.IconTestPipe = IconTestPipe;
|
|
53209
53868
|
exports.IconTextDirectionLtr = IconTextDirectionLtr;
|
|
53210
53869
|
exports.IconTextDirectionRtl = IconTextDirectionRtl;
|
|
53870
|
+
exports.IconTextResize = IconTextResize;
|
|
53211
53871
|
exports.IconTextWrap = IconTextWrap;
|
|
53212
53872
|
exports.IconTextWrapDisabled = IconTextWrapDisabled;
|
|
53213
53873
|
exports.IconThermometer = IconThermometer;
|
|
@@ -53234,6 +53894,7 @@ exports.IconTransferIn = IconTransferIn;
|
|
|
53234
53894
|
exports.IconTransferOut = IconTransferOut;
|
|
53235
53895
|
exports.IconTrash = IconTrash;
|
|
53236
53896
|
exports.IconTrashOff = IconTrashOff;
|
|
53897
|
+
exports.IconTrashX = IconTrashX;
|
|
53237
53898
|
exports.IconTree = IconTree;
|
|
53238
53899
|
exports.IconTrees = IconTrees;
|
|
53239
53900
|
exports.IconTrendingDown = IconTrendingDown;
|
|
@@ -53264,6 +53925,7 @@ exports.IconUserExclamation = IconUserExclamation;
|
|
|
53264
53925
|
exports.IconUserMinus = IconUserMinus;
|
|
53265
53926
|
exports.IconUserOff = IconUserOff;
|
|
53266
53927
|
exports.IconUserPlus = IconUserPlus;
|
|
53928
|
+
exports.IconUserSearch = IconUserSearch;
|
|
53267
53929
|
exports.IconUserX = IconUserX;
|
|
53268
53930
|
exports.IconUsers = IconUsers;
|
|
53269
53931
|
exports.IconVaccine = IconVaccine;
|
|
@@ -53310,8 +53972,10 @@ exports.IconWiper = IconWiper;
|
|
|
53310
53972
|
exports.IconWiperWash = IconWiperWash;
|
|
53311
53973
|
exports.IconWoman = IconWoman;
|
|
53312
53974
|
exports.IconWorld = IconWorld;
|
|
53975
|
+
exports.IconWorldDownload = IconWorldDownload;
|
|
53313
53976
|
exports.IconWorldLatitude = IconWorldLatitude;
|
|
53314
53977
|
exports.IconWorldLongitude = IconWorldLongitude;
|
|
53978
|
+
exports.IconWorldUpload = IconWorldUpload;
|
|
53315
53979
|
exports.IconWreckingBall = IconWreckingBall;
|
|
53316
53980
|
exports.IconWriting = IconWriting;
|
|
53317
53981
|
exports.IconWritingSign = IconWritingSign;
|