@tabler/icons 1.44.0 → 1.45.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/README.md +41 -0
- package/iconfont/fonts/tabler-icons.eot +0 -0
- package/iconfont/fonts/tabler-icons.svg +105 -54
- 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/.DS_Store +0 -0
- package/icons/brand-airtable.svg +8 -0
- package/icons/brand-angular.svg +8 -0
- package/icons/brand-cucumber.svg +13 -0
- package/icons/brand-doctrine.svg +9 -0
- package/icons/brand-firebase.svg +8 -0
- package/icons/brand-git.svg +12 -0
- package/icons/brand-loom.svg +9 -0
- package/icons/brand-netbeans.svg +12 -0
- package/icons/brand-php.svg +10 -0
- package/icons/brand-react-native.svg +12 -0
- package/icons/brand-sublime-text.svg +9 -0
- package/icons/brand-uber.svg +8 -0
- package/icons/brand-visual-studio.svg +6 -0
- package/icons/currency-dogecoin.svg +2 -2
- package/icons/language-hiragana.svg +10 -0
- package/icons/language-katakana.svg +9 -0
- package/icons/language.svg +5 -2
- package/icons/prison.svg +13 -0
- package/icons/strikethrough.svg +2 -2
- package/icons/wall.svg +14 -0
- package/icons-png/.DS_Store +0 -0
- package/icons-png/brand-airtable.png +0 -0
- package/icons-png/brand-angular.png +0 -0
- package/icons-png/brand-cucumber.png +0 -0
- package/icons-png/brand-doctrine.png +0 -0
- package/icons-png/brand-firebase.png +0 -0
- package/icons-png/brand-git.png +0 -0
- package/icons-png/brand-loom.png +0 -0
- package/icons-png/brand-netbeans.png +0 -0
- package/icons-png/brand-php.png +0 -0
- package/icons-png/brand-react-native.png +0 -0
- package/icons-png/brand-sublime-text.png +0 -0
- package/icons-png/brand-uber.png +0 -0
- package/icons-png/brand-visual-studio.png +0 -0
- package/icons-png/currency-dogecoin.png +0 -0
- package/icons-png/language-hiragana.png +0 -0
- package/icons-png/language-katakana.png +0 -0
- package/icons-png/language.png +0 -0
- package/icons-png/prison.png +0 -0
- package/icons-png/strikethrough.png +0 -0
- package/icons-png/wall.png +0 -0
- package/icons-react/dist/index.cjs.js +666 -7
- 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 +650 -8
- 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 +666 -7
- 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 +1 -1
- package/tabler-sprite-nostroke.svg +1 -1
- package/tabler-sprite.svg +1 -1
- package/tags.json +198 -20
|
@@ -9060,6 +9060,38 @@ function IconBrandAirbnb(_ref) {
|
|
|
9060
9060
|
}));
|
|
9061
9061
|
}
|
|
9062
9062
|
|
|
9063
|
+
function IconBrandAirtable(_ref) {
|
|
9064
|
+
var _ref$size = _ref.size,
|
|
9065
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
9066
|
+
_ref$color = _ref.color,
|
|
9067
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
9068
|
+
_ref$stroke = _ref.stroke,
|
|
9069
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
9070
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
9071
|
+
|
|
9072
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
9073
|
+
className: "icon icon-tabler icon-tabler-brand-airtable",
|
|
9074
|
+
width: size,
|
|
9075
|
+
height: size,
|
|
9076
|
+
viewBox: "0 0 24 24",
|
|
9077
|
+
strokeWidth: stroke,
|
|
9078
|
+
stroke: color,
|
|
9079
|
+
fill: "none",
|
|
9080
|
+
strokeLinecap: "round",
|
|
9081
|
+
strokeLinejoin: "round"
|
|
9082
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
9083
|
+
stroke: "none",
|
|
9084
|
+
d: "M0 0h24v24H0z",
|
|
9085
|
+
fill: "none"
|
|
9086
|
+
}), /*#__PURE__*/createElement("path", {
|
|
9087
|
+
d: "M3 10v8l7 -3v-2.6z"
|
|
9088
|
+
}), /*#__PURE__*/createElement("path", {
|
|
9089
|
+
d: "M3 6l9 3l9 -3l-9 -3z"
|
|
9090
|
+
}), /*#__PURE__*/createElement("path", {
|
|
9091
|
+
d: "M14 12.3v8.7l7 -3v-8z"
|
|
9092
|
+
}));
|
|
9093
|
+
}
|
|
9094
|
+
|
|
9063
9095
|
function IconBrandAndroid(_ref) {
|
|
9064
9096
|
var _ref$size = _ref.size,
|
|
9065
9097
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -9118,6 +9150,38 @@ function IconBrandAndroid(_ref) {
|
|
|
9118
9150
|
}));
|
|
9119
9151
|
}
|
|
9120
9152
|
|
|
9153
|
+
function IconBrandAngular(_ref) {
|
|
9154
|
+
var _ref$size = _ref.size,
|
|
9155
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
9156
|
+
_ref$color = _ref.color,
|
|
9157
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
9158
|
+
_ref$stroke = _ref.stroke,
|
|
9159
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
9160
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
9161
|
+
|
|
9162
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
9163
|
+
className: "icon icon-tabler icon-tabler-brand-angular",
|
|
9164
|
+
width: size,
|
|
9165
|
+
height: size,
|
|
9166
|
+
viewBox: "0 0 24 24",
|
|
9167
|
+
strokeWidth: stroke,
|
|
9168
|
+
stroke: color,
|
|
9169
|
+
fill: "none",
|
|
9170
|
+
strokeLinecap: "round",
|
|
9171
|
+
strokeLinejoin: "round"
|
|
9172
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
9173
|
+
stroke: "none",
|
|
9174
|
+
d: "M0 0h24v24H0z",
|
|
9175
|
+
fill: "none"
|
|
9176
|
+
}), /*#__PURE__*/createElement("path", {
|
|
9177
|
+
d: "M5.428 17.245l6.076 3.471a1 1 0 0 0 .992 0l6.076 -3.471a1 1 0 0 0 .495 -.734l1.323 -9.704a1 1 0 0 0 -.658 -1.078l-7.4 -2.612a1 1 0 0 0 -.665 0l-7.399 2.613a1 1 0 0 0 -.658 1.078l1.323 9.704a1 1 0 0 0 .495 .734z"
|
|
9178
|
+
}), /*#__PURE__*/createElement("path", {
|
|
9179
|
+
d: "M9 15l3 -8l3 8"
|
|
9180
|
+
}), /*#__PURE__*/createElement("path", {
|
|
9181
|
+
d: "M10 13h4"
|
|
9182
|
+
}));
|
|
9183
|
+
}
|
|
9184
|
+
|
|
9121
9185
|
function IconBrandAppleArcade(_ref) {
|
|
9122
9186
|
var _ref$size = _ref.size,
|
|
9123
9187
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -9600,6 +9664,48 @@ function IconBrandCss3(_ref) {
|
|
|
9600
9664
|
}));
|
|
9601
9665
|
}
|
|
9602
9666
|
|
|
9667
|
+
function IconBrandCucumber(_ref) {
|
|
9668
|
+
var _ref$size = _ref.size,
|
|
9669
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
9670
|
+
_ref$color = _ref.color,
|
|
9671
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
9672
|
+
_ref$stroke = _ref.stroke,
|
|
9673
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
9674
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
9675
|
+
|
|
9676
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
9677
|
+
className: "icon icon-tabler icon-tabler-brand-cucumber",
|
|
9678
|
+
width: size,
|
|
9679
|
+
height: size,
|
|
9680
|
+
viewBox: "0 0 24 24",
|
|
9681
|
+
strokeWidth: stroke,
|
|
9682
|
+
stroke: color,
|
|
9683
|
+
fill: "none",
|
|
9684
|
+
strokeLinecap: "round",
|
|
9685
|
+
strokeLinejoin: "round"
|
|
9686
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
9687
|
+
stroke: "none",
|
|
9688
|
+
d: "M0 0h24v24H0z",
|
|
9689
|
+
fill: "none"
|
|
9690
|
+
}), /*#__PURE__*/createElement("path", {
|
|
9691
|
+
d: "M20 10.99c-.01 5.52 -4.48 10 -10 10.01v-2.26l-.01 -.01c-4.28 -1.11 -6.86 -5.47 -5.76 -9.75a8.001 8.001 0 0 1 9.74 -5.76c3.53 .91 6.03 4.13 6.03 7.78v-.01z"
|
|
9692
|
+
}), /*#__PURE__*/createElement("path", {
|
|
9693
|
+
d: "M10.5 8l-.5 -1"
|
|
9694
|
+
}), /*#__PURE__*/createElement("path", {
|
|
9695
|
+
d: "M13.5 14l.5 1"
|
|
9696
|
+
}), /*#__PURE__*/createElement("path", {
|
|
9697
|
+
d: "M9 12.5l-1 .5"
|
|
9698
|
+
}), /*#__PURE__*/createElement("path", {
|
|
9699
|
+
d: "M11 14l-.5 1"
|
|
9700
|
+
}), /*#__PURE__*/createElement("path", {
|
|
9701
|
+
d: "M13 8l.5 -1"
|
|
9702
|
+
}), /*#__PURE__*/createElement("path", {
|
|
9703
|
+
d: "M16 12.5l-1 -.5"
|
|
9704
|
+
}), /*#__PURE__*/createElement("path", {
|
|
9705
|
+
d: "M9 10l-1 -.5"
|
|
9706
|
+
}));
|
|
9707
|
+
}
|
|
9708
|
+
|
|
9603
9709
|
function IconBrandDebian(_ref) {
|
|
9604
9710
|
var _ref$size = _ref.size,
|
|
9605
9711
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -9779,6 +9885,42 @@ function IconBrandDocker(_ref) {
|
|
|
9779
9885
|
}));
|
|
9780
9886
|
}
|
|
9781
9887
|
|
|
9888
|
+
function IconBrandDoctrine(_ref) {
|
|
9889
|
+
var _ref$size = _ref.size,
|
|
9890
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
9891
|
+
_ref$color = _ref.color,
|
|
9892
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
9893
|
+
_ref$stroke = _ref.stroke,
|
|
9894
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
9895
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
9896
|
+
|
|
9897
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
9898
|
+
className: "icon icon-tabler icon-tabler-brand-doctrine",
|
|
9899
|
+
width: size,
|
|
9900
|
+
height: size,
|
|
9901
|
+
viewBox: "0 0 24 24",
|
|
9902
|
+
strokeWidth: stroke,
|
|
9903
|
+
stroke: color,
|
|
9904
|
+
fill: "none",
|
|
9905
|
+
strokeLinecap: "round",
|
|
9906
|
+
strokeLinejoin: "round"
|
|
9907
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
9908
|
+
stroke: "none",
|
|
9909
|
+
d: "M0 0h24v24H0z",
|
|
9910
|
+
fill: "none"
|
|
9911
|
+
}), /*#__PURE__*/createElement("circle", {
|
|
9912
|
+
cx: 12,
|
|
9913
|
+
cy: 14,
|
|
9914
|
+
r: 7
|
|
9915
|
+
}), /*#__PURE__*/createElement("path", {
|
|
9916
|
+
d: "M9 14h6"
|
|
9917
|
+
}), /*#__PURE__*/createElement("path", {
|
|
9918
|
+
d: "M12 11l3 3l-3 3"
|
|
9919
|
+
}), /*#__PURE__*/createElement("path", {
|
|
9920
|
+
d: "M10 3l6.9 6"
|
|
9921
|
+
}));
|
|
9922
|
+
}
|
|
9923
|
+
|
|
9782
9924
|
function IconBrandDribbble(_ref) {
|
|
9783
9925
|
var _ref$size = _ref.size,
|
|
9784
9926
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -9915,6 +10057,38 @@ function IconBrandFigma(_ref) {
|
|
|
9915
10057
|
}));
|
|
9916
10058
|
}
|
|
9917
10059
|
|
|
10060
|
+
function IconBrandFirebase(_ref) {
|
|
10061
|
+
var _ref$size = _ref.size,
|
|
10062
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
10063
|
+
_ref$color = _ref.color,
|
|
10064
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
10065
|
+
_ref$stroke = _ref.stroke,
|
|
10066
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
10067
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
10068
|
+
|
|
10069
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
10070
|
+
className: "icon icon-tabler icon-tabler-brand-firebase",
|
|
10071
|
+
width: size,
|
|
10072
|
+
height: size,
|
|
10073
|
+
viewBox: "0 0 24 24",
|
|
10074
|
+
strokeWidth: stroke,
|
|
10075
|
+
stroke: color,
|
|
10076
|
+
fill: "none",
|
|
10077
|
+
strokeLinecap: "round",
|
|
10078
|
+
strokeLinejoin: "round"
|
|
10079
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
10080
|
+
stroke: "none",
|
|
10081
|
+
d: "M0 0h24v24H0z",
|
|
10082
|
+
fill: "none"
|
|
10083
|
+
}), /*#__PURE__*/createElement("path", {
|
|
10084
|
+
d: "M4.53 17.05l6.15 -11.72h-.02c.38 -.74 1.28 -1.02 2.01 -.63c.26 .14 .48 .36 .62 .62l1.06 2.01"
|
|
10085
|
+
}), /*#__PURE__*/createElement("path", {
|
|
10086
|
+
d: "M15.47 6.45c.58 -.59 1.53 -.59 2.11 -.01c.22 .22 .36 .5 .41 .81l1.5 9.11c.1 .62 -.2 1.24 -.76 1.54l-6.07 2.9c-.46 .25 -1.01 .26 -1.46 0l-6.02 -2.92c-.55 -.31 -.85 -.92 -.75 -1.54l1.96 -12.04c.12 -.82 .89 -1.38 1.7 -1.25c.46 .07 .87 .36 1.09 .77l1.24 1.76"
|
|
10087
|
+
}), /*#__PURE__*/createElement("path", {
|
|
10088
|
+
d: "M4.57 17.18l10.93 -10.68"
|
|
10089
|
+
}));
|
|
10090
|
+
}
|
|
10091
|
+
|
|
9918
10092
|
function IconBrandFirefox(_ref) {
|
|
9919
10093
|
var _ref$size = _ref.size,
|
|
9920
10094
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -10040,6 +10214,52 @@ function IconBrandFramer(_ref) {
|
|
|
10040
10214
|
}));
|
|
10041
10215
|
}
|
|
10042
10216
|
|
|
10217
|
+
function IconBrandGit(_ref) {
|
|
10218
|
+
var _ref$size = _ref.size,
|
|
10219
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
10220
|
+
_ref$color = _ref.color,
|
|
10221
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
10222
|
+
_ref$stroke = _ref.stroke,
|
|
10223
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
10224
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
10225
|
+
|
|
10226
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
10227
|
+
className: "icon icon-tabler icon-tabler-brand-git",
|
|
10228
|
+
width: size,
|
|
10229
|
+
height: size,
|
|
10230
|
+
viewBox: "0 0 24 24",
|
|
10231
|
+
strokeWidth: stroke,
|
|
10232
|
+
stroke: color,
|
|
10233
|
+
fill: "none",
|
|
10234
|
+
strokeLinecap: "round",
|
|
10235
|
+
strokeLinejoin: "round"
|
|
10236
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
10237
|
+
stroke: "none",
|
|
10238
|
+
d: "M0 0h24v24H0z",
|
|
10239
|
+
fill: "none"
|
|
10240
|
+
}), /*#__PURE__*/createElement("circle", {
|
|
10241
|
+
cx: 16,
|
|
10242
|
+
cy: 12,
|
|
10243
|
+
r: 1
|
|
10244
|
+
}), /*#__PURE__*/createElement("circle", {
|
|
10245
|
+
cx: 12,
|
|
10246
|
+
cy: 8,
|
|
10247
|
+
r: 1
|
|
10248
|
+
}), /*#__PURE__*/createElement("circle", {
|
|
10249
|
+
cx: 12,
|
|
10250
|
+
cy: 16,
|
|
10251
|
+
r: 1
|
|
10252
|
+
}), /*#__PURE__*/createElement("path", {
|
|
10253
|
+
d: "M12 15v-6"
|
|
10254
|
+
}), /*#__PURE__*/createElement("path", {
|
|
10255
|
+
d: "M15 11l-2 -2"
|
|
10256
|
+
}), /*#__PURE__*/createElement("path", {
|
|
10257
|
+
d: "M11 7l-1.9 -1.9"
|
|
10258
|
+
}), /*#__PURE__*/createElement("path", {
|
|
10259
|
+
d: "M10.5 20.4l-6.9 -6.9c-.781 -.781 -.781 -2.219 0 -3l6.9 -6.9c.781 -.781 2.219 -.781 3 0l6.9 6.9c.781 .781 .781 2.219 0 3l-6.9 6.9c-.781 .781 -2.219 .781 -3 0z"
|
|
10260
|
+
}));
|
|
10261
|
+
}
|
|
10262
|
+
|
|
10043
10263
|
function IconBrandGithub(_ref) {
|
|
10044
10264
|
var _ref$size = _ref.size,
|
|
10045
10265
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -10514,6 +10734,40 @@ function IconBrandLinkedin(_ref) {
|
|
|
10514
10734
|
}));
|
|
10515
10735
|
}
|
|
10516
10736
|
|
|
10737
|
+
function IconBrandLoom(_ref) {
|
|
10738
|
+
var _ref$size = _ref.size,
|
|
10739
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
10740
|
+
_ref$color = _ref.color,
|
|
10741
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
10742
|
+
_ref$stroke = _ref.stroke,
|
|
10743
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
10744
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
10745
|
+
|
|
10746
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
10747
|
+
className: "icon icon-tabler icon-tabler-brand-loom",
|
|
10748
|
+
width: size,
|
|
10749
|
+
height: size,
|
|
10750
|
+
viewBox: "0 0 24 24",
|
|
10751
|
+
strokeWidth: stroke,
|
|
10752
|
+
stroke: color,
|
|
10753
|
+
fill: "none",
|
|
10754
|
+
strokeLinecap: "round",
|
|
10755
|
+
strokeLinejoin: "round"
|
|
10756
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
10757
|
+
stroke: "none",
|
|
10758
|
+
d: "M0 0h24v24H0z",
|
|
10759
|
+
fill: "none"
|
|
10760
|
+
}), /*#__PURE__*/createElement("path", {
|
|
10761
|
+
d: "M17.464 6.518a6.001 6.001 0 1 0 -3.023 7.965"
|
|
10762
|
+
}), /*#__PURE__*/createElement("path", {
|
|
10763
|
+
d: "M17.482 17.464a6.001 6.001 0 1 0 -7.965 -3.023"
|
|
10764
|
+
}), /*#__PURE__*/createElement("path", {
|
|
10765
|
+
d: "M6.54 17.482a6.001 6.001 0 1 0 3.024 -7.965"
|
|
10766
|
+
}), /*#__PURE__*/createElement("path", {
|
|
10767
|
+
d: "M6.518 6.54a6.001 6.001 0 1 0 7.965 3.024"
|
|
10768
|
+
}));
|
|
10769
|
+
}
|
|
10770
|
+
|
|
10517
10771
|
function IconBrandMastercard(_ref) {
|
|
10518
10772
|
var _ref$size = _ref.size,
|
|
10519
10773
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -10636,6 +10890,46 @@ function IconBrandMessenger(_ref) {
|
|
|
10636
10890
|
}));
|
|
10637
10891
|
}
|
|
10638
10892
|
|
|
10893
|
+
function IconBrandNetbeans(_ref) {
|
|
10894
|
+
var _ref$size = _ref.size,
|
|
10895
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
10896
|
+
_ref$color = _ref.color,
|
|
10897
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
10898
|
+
_ref$stroke = _ref.stroke,
|
|
10899
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
10900
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
10901
|
+
|
|
10902
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
10903
|
+
className: "icon icon-tabler icon-tabler-brand-netbeans",
|
|
10904
|
+
width: size,
|
|
10905
|
+
height: size,
|
|
10906
|
+
viewBox: "0 0 24 24",
|
|
10907
|
+
strokeWidth: stroke,
|
|
10908
|
+
stroke: color,
|
|
10909
|
+
fill: "none",
|
|
10910
|
+
strokeLinecap: "round",
|
|
10911
|
+
strokeLinejoin: "round"
|
|
10912
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
10913
|
+
stroke: "none",
|
|
10914
|
+
d: "M0 0h24v24H0z",
|
|
10915
|
+
fill: "none"
|
|
10916
|
+
}), /*#__PURE__*/createElement("path", {
|
|
10917
|
+
d: "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029z"
|
|
10918
|
+
}), /*#__PURE__*/createElement("path", {
|
|
10919
|
+
d: "M15.5 9.43a1 1 0 0 1 .5 .874v3.268a1 1 0 0 1 -.515 .874l-3 1.917a1 1 0 0 1 -.97 0l-3 -1.917a1 1 0 0 1 -.515 -.873v-3.269a1 1 0 0 1 .514 -.874l3 -1.786c.311 -.173 .69 -.173 1 0l3 1.787h-.014z"
|
|
10920
|
+
}), /*#__PURE__*/createElement("path", {
|
|
10921
|
+
d: "M12 21v-9l-7.5 -4.5"
|
|
10922
|
+
}), /*#__PURE__*/createElement("path", {
|
|
10923
|
+
d: "M12 12l7.5 -4.5"
|
|
10924
|
+
}), /*#__PURE__*/createElement("path", {
|
|
10925
|
+
d: "M12 3v4.5"
|
|
10926
|
+
}), /*#__PURE__*/createElement("path", {
|
|
10927
|
+
d: "M19.5 16l-3.5 -2"
|
|
10928
|
+
}), /*#__PURE__*/createElement("path", {
|
|
10929
|
+
d: "M8 14l-3.5 2"
|
|
10930
|
+
}));
|
|
10931
|
+
}
|
|
10932
|
+
|
|
10639
10933
|
function IconBrandNetflix(_ref) {
|
|
10640
10934
|
var _ref$size = _ref.size,
|
|
10641
10935
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -10815,6 +11109,45 @@ function IconBrandPaypal(_ref) {
|
|
|
10815
11109
|
}));
|
|
10816
11110
|
}
|
|
10817
11111
|
|
|
11112
|
+
function IconBrandPhp(_ref) {
|
|
11113
|
+
var _ref$size = _ref.size,
|
|
11114
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
11115
|
+
_ref$color = _ref.color,
|
|
11116
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
11117
|
+
_ref$stroke = _ref.stroke,
|
|
11118
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
11119
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
11120
|
+
|
|
11121
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
11122
|
+
className: "icon icon-tabler icon-tabler-brand-php",
|
|
11123
|
+
width: size,
|
|
11124
|
+
height: size,
|
|
11125
|
+
viewBox: "0 0 24 24",
|
|
11126
|
+
strokeWidth: stroke,
|
|
11127
|
+
stroke: color,
|
|
11128
|
+
fill: "none",
|
|
11129
|
+
strokeLinecap: "round",
|
|
11130
|
+
strokeLinejoin: "round"
|
|
11131
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
11132
|
+
stroke: "none",
|
|
11133
|
+
d: "M0 0h24v24H0z",
|
|
11134
|
+
fill: "none"
|
|
11135
|
+
}), /*#__PURE__*/createElement("ellipse", {
|
|
11136
|
+
cx: 12,
|
|
11137
|
+
cy: 12,
|
|
11138
|
+
rx: 10,
|
|
11139
|
+
ry: 9
|
|
11140
|
+
}), /*#__PURE__*/createElement("path", {
|
|
11141
|
+
d: "M5.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"
|
|
11142
|
+
}), /*#__PURE__*/createElement("path", {
|
|
11143
|
+
d: "M15.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"
|
|
11144
|
+
}), /*#__PURE__*/createElement("path", {
|
|
11145
|
+
d: "M12 7.5l-1 5.5"
|
|
11146
|
+
}), /*#__PURE__*/createElement("path", {
|
|
11147
|
+
d: "M11.6 10h2.4l-.5 3"
|
|
11148
|
+
}));
|
|
11149
|
+
}
|
|
11150
|
+
|
|
10818
11151
|
function IconBrandPinterest(_ref) {
|
|
10819
11152
|
var _ref$size = _ref.size,
|
|
10820
11153
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -10956,6 +11289,46 @@ function IconBrandPython(_ref) {
|
|
|
10956
11289
|
}));
|
|
10957
11290
|
}
|
|
10958
11291
|
|
|
11292
|
+
function IconBrandReactNative(_ref) {
|
|
11293
|
+
var _ref$size = _ref.size,
|
|
11294
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
11295
|
+
_ref$color = _ref.color,
|
|
11296
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
11297
|
+
_ref$stroke = _ref.stroke,
|
|
11298
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
11299
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
11300
|
+
|
|
11301
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
11302
|
+
className: "icon icon-tabler icon-tabler-brand-react-native",
|
|
11303
|
+
width: size,
|
|
11304
|
+
height: size,
|
|
11305
|
+
viewBox: "0 0 24 24",
|
|
11306
|
+
strokeWidth: stroke,
|
|
11307
|
+
stroke: color,
|
|
11308
|
+
fill: "none",
|
|
11309
|
+
strokeLinecap: "round",
|
|
11310
|
+
strokeLinejoin: "round"
|
|
11311
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
11312
|
+
stroke: "none",
|
|
11313
|
+
d: "M0 0h24v24H0z",
|
|
11314
|
+
fill: "none"
|
|
11315
|
+
}), /*#__PURE__*/createElement("path", {
|
|
11316
|
+
d: "M6.357 9c-2.637 .68 -4.357 1.845 -4.357 3.175c0 2.107 4.405 3.825 9.85 3.825c.74 0 1.26 -.039 1.95 -.097"
|
|
11317
|
+
}), /*#__PURE__*/createElement("path", {
|
|
11318
|
+
d: "M9.837 15.9c-.413 -.596 -.806 -1.133 -1.18 -1.8c-2.751 -4.9 -3.488 -9.77 -1.63 -10.873c1.15 -.697 3.047 .253 4.974 2.254"
|
|
11319
|
+
}), /*#__PURE__*/createElement("path", {
|
|
11320
|
+
d: "M6.429 15.387c-.702 2.688 -.56 4.716 .56 5.395c1.783 1.08 5.387 -1.958 8.043 -6.804c.36 -.67 .683 -1.329 .968 -1.978"
|
|
11321
|
+
}), /*#__PURE__*/createElement("path", {
|
|
11322
|
+
d: "M12 18.52c1.928 2 3.817 2.95 4.978 2.253c1.85 -1.102 1.121 -5.972 -1.633 -10.873c-.384 -.677 -.777 -1.204 -1.18 -1.8"
|
|
11323
|
+
}), /*#__PURE__*/createElement("path", {
|
|
11324
|
+
d: "M17.66 15c2.612 -.687 4.34 -1.85 4.34 -3.176c0 -2.11 -4.408 -3.824 -9.845 -3.824c-.747 0 -1.266 .029 -1.955 .087"
|
|
11325
|
+
}), /*#__PURE__*/createElement("path", {
|
|
11326
|
+
d: "M8 12c.285 -.66 .607 -1.308 .968 -1.978c2.647 -4.844 6.253 -7.89 8.046 -6.801c1.11 .679 1.262 2.706 .56 5.393"
|
|
11327
|
+
}), /*#__PURE__*/createElement("path", {
|
|
11328
|
+
d: "M12.26 12.015h-.01c-.01 .13 -.12 .24 -.26 .24a0.263 .263 0 0 1 -.25 -.26c0 -.14 .11 -.25 .24 -.25h-.01c.13 -.01 .25 .11 .25 .24"
|
|
11329
|
+
}));
|
|
11330
|
+
}
|
|
11331
|
+
|
|
10959
11332
|
function IconBrandReddit(_ref) {
|
|
10960
11333
|
var _ref$size = _ref.size,
|
|
10961
11334
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -11424,6 +11797,40 @@ function IconBrandStripe(_ref) {
|
|
|
11424
11797
|
}));
|
|
11425
11798
|
}
|
|
11426
11799
|
|
|
11800
|
+
function IconBrandSublimeText(_ref) {
|
|
11801
|
+
var _ref$size = _ref.size,
|
|
11802
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
11803
|
+
_ref$color = _ref.color,
|
|
11804
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
11805
|
+
_ref$stroke = _ref.stroke,
|
|
11806
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
11807
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
11808
|
+
|
|
11809
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
11810
|
+
className: "icon icon-tabler icon-tabler-brand-sublime-text",
|
|
11811
|
+
width: size,
|
|
11812
|
+
height: size,
|
|
11813
|
+
viewBox: "0 0 24 24",
|
|
11814
|
+
strokeWidth: stroke,
|
|
11815
|
+
stroke: color,
|
|
11816
|
+
fill: "none",
|
|
11817
|
+
strokeLinecap: "round",
|
|
11818
|
+
strokeLinejoin: "round"
|
|
11819
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
11820
|
+
stroke: "none",
|
|
11821
|
+
d: "M0 0h24v24H0z",
|
|
11822
|
+
fill: "none"
|
|
11823
|
+
}), /*#__PURE__*/createElement("path", {
|
|
11824
|
+
d: "M19 8l-14 4.5v-5.5l14 -4.5z"
|
|
11825
|
+
}), /*#__PURE__*/createElement("path", {
|
|
11826
|
+
d: "M19 17l-14 4.5v-5.5l14 -4.5z"
|
|
11827
|
+
}), /*#__PURE__*/createElement("path", {
|
|
11828
|
+
d: "M19 11.5l-14 -4.5"
|
|
11829
|
+
}), /*#__PURE__*/createElement("path", {
|
|
11830
|
+
d: "M5 12.5l14 4.5"
|
|
11831
|
+
}));
|
|
11832
|
+
}
|
|
11833
|
+
|
|
11427
11834
|
function IconBrandTabler(_ref) {
|
|
11428
11835
|
var _ref$size = _ref.size,
|
|
11429
11836
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -11703,6 +12110,44 @@ function IconBrandTwitter(_ref) {
|
|
|
11703
12110
|
}));
|
|
11704
12111
|
}
|
|
11705
12112
|
|
|
12113
|
+
function IconBrandUber(_ref) {
|
|
12114
|
+
var _ref$size = _ref.size,
|
|
12115
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
12116
|
+
_ref$color = _ref.color,
|
|
12117
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
12118
|
+
_ref$stroke = _ref.stroke,
|
|
12119
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
12120
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
12121
|
+
|
|
12122
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
12123
|
+
className: "icon icon-tabler icon-tabler-brand-uber",
|
|
12124
|
+
width: size,
|
|
12125
|
+
height: size,
|
|
12126
|
+
viewBox: "0 0 24 24",
|
|
12127
|
+
strokeWidth: stroke,
|
|
12128
|
+
stroke: color,
|
|
12129
|
+
fill: "none",
|
|
12130
|
+
strokeLinecap: "round",
|
|
12131
|
+
strokeLinejoin: "round"
|
|
12132
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
12133
|
+
stroke: "none",
|
|
12134
|
+
d: "M0 0h24v24H0z",
|
|
12135
|
+
fill: "none"
|
|
12136
|
+
}), /*#__PURE__*/createElement("circle", {
|
|
12137
|
+
cx: 12,
|
|
12138
|
+
cy: 12,
|
|
12139
|
+
r: 9
|
|
12140
|
+
}), /*#__PURE__*/createElement("rect", {
|
|
12141
|
+
x: 9,
|
|
12142
|
+
y: 9,
|
|
12143
|
+
width: 6,
|
|
12144
|
+
height: 6,
|
|
12145
|
+
rx: 1
|
|
12146
|
+
}), /*#__PURE__*/createElement("path", {
|
|
12147
|
+
d: "M3 12h6"
|
|
12148
|
+
}));
|
|
12149
|
+
}
|
|
12150
|
+
|
|
11706
12151
|
function IconBrandUbuntu(_ref) {
|
|
11707
12152
|
var _ref$size = _ref.size,
|
|
11708
12153
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -11827,6 +12272,34 @@ function IconBrandVimeo(_ref) {
|
|
|
11827
12272
|
}));
|
|
11828
12273
|
}
|
|
11829
12274
|
|
|
12275
|
+
function IconBrandVisualStudio(_ref) {
|
|
12276
|
+
var _ref$size = _ref.size,
|
|
12277
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
12278
|
+
_ref$color = _ref.color,
|
|
12279
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
12280
|
+
_ref$stroke = _ref.stroke,
|
|
12281
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
12282
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
12283
|
+
|
|
12284
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
12285
|
+
className: "icon icon-tabler icon-tabler-brand-visual-studio",
|
|
12286
|
+
width: size,
|
|
12287
|
+
height: size,
|
|
12288
|
+
viewBox: "0 0 24 24",
|
|
12289
|
+
strokeWidth: stroke,
|
|
12290
|
+
stroke: color,
|
|
12291
|
+
fill: "none",
|
|
12292
|
+
strokeLinecap: "round",
|
|
12293
|
+
strokeLinejoin: "round"
|
|
12294
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
12295
|
+
stroke: "none",
|
|
12296
|
+
d: "M0 0h24v24H0z",
|
|
12297
|
+
fill: "none"
|
|
12298
|
+
}), /*#__PURE__*/createElement("path", {
|
|
12299
|
+
d: "M4 8l2 -1l10 13l4 -2v-12l-4 -2l-10 13l-2 -1z"
|
|
12300
|
+
}));
|
|
12301
|
+
}
|
|
12302
|
+
|
|
11830
12303
|
function IconBrandVk(_ref) {
|
|
11831
12304
|
var _ref$size = _ref.size,
|
|
11832
12305
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -19598,9 +20071,9 @@ function IconCurrencyDogecoin(_ref) {
|
|
|
19598
20071
|
}), /*#__PURE__*/createElement("path", {
|
|
19599
20072
|
d: "M6 12h6"
|
|
19600
20073
|
}), /*#__PURE__*/createElement("path", {
|
|
19601
|
-
d: "
|
|
20074
|
+
d: "M9 6v12"
|
|
19602
20075
|
}), /*#__PURE__*/createElement("path", {
|
|
19603
|
-
d: "
|
|
20076
|
+
d: "M6 18h6a6 6 0 1 0 0 -12h-6"
|
|
19604
20077
|
}));
|
|
19605
20078
|
}
|
|
19606
20079
|
|
|
@@ -29594,6 +30067,76 @@ function IconKeyboard(_ref) {
|
|
|
29594
30067
|
}));
|
|
29595
30068
|
}
|
|
29596
30069
|
|
|
30070
|
+
function IconLanguageHiragana(_ref) {
|
|
30071
|
+
var _ref$size = _ref.size,
|
|
30072
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
30073
|
+
_ref$color = _ref.color,
|
|
30074
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
30075
|
+
_ref$stroke = _ref.stroke,
|
|
30076
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
30077
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
30078
|
+
|
|
30079
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
30080
|
+
className: "icon icon-tabler icon-tabler-language-hiragana",
|
|
30081
|
+
width: size,
|
|
30082
|
+
height: size,
|
|
30083
|
+
viewBox: "0 0 24 24",
|
|
30084
|
+
strokeWidth: stroke,
|
|
30085
|
+
stroke: color,
|
|
30086
|
+
fill: "none",
|
|
30087
|
+
strokeLinecap: "round",
|
|
30088
|
+
strokeLinejoin: "round"
|
|
30089
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
30090
|
+
stroke: "none",
|
|
30091
|
+
d: "M0 0h24v24H0z",
|
|
30092
|
+
fill: "none"
|
|
30093
|
+
}), /*#__PURE__*/createElement("path", {
|
|
30094
|
+
d: "M4 5h7"
|
|
30095
|
+
}), /*#__PURE__*/createElement("path", {
|
|
30096
|
+
d: "M7 4c0 4.846 0 7 .5 8"
|
|
30097
|
+
}), /*#__PURE__*/createElement("path", {
|
|
30098
|
+
d: "M10 8.5c0 2.286 -2 4.5 -3.5 4.5s-2.5 -1.135 -2.5 -2c0 -2 1 -3 3 -3s5 .57 5 2.857c0 1.524 -.667 2.571 -2 3.143"
|
|
30099
|
+
}), /*#__PURE__*/createElement("path", {
|
|
30100
|
+
d: "M12 20l4 -9l4 9"
|
|
30101
|
+
}), /*#__PURE__*/createElement("path", {
|
|
30102
|
+
d: "M19.1 18h-6.2"
|
|
30103
|
+
}));
|
|
30104
|
+
}
|
|
30105
|
+
|
|
30106
|
+
function IconLanguageKatakana(_ref) {
|
|
30107
|
+
var _ref$size = _ref.size,
|
|
30108
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
30109
|
+
_ref$color = _ref.color,
|
|
30110
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
30111
|
+
_ref$stroke = _ref.stroke,
|
|
30112
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
30113
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
30114
|
+
|
|
30115
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
30116
|
+
className: "icon icon-tabler icon-tabler-language-katakana",
|
|
30117
|
+
width: size,
|
|
30118
|
+
height: size,
|
|
30119
|
+
viewBox: "0 0 24 24",
|
|
30120
|
+
strokeWidth: stroke,
|
|
30121
|
+
stroke: color,
|
|
30122
|
+
fill: "none",
|
|
30123
|
+
strokeLinecap: "round",
|
|
30124
|
+
strokeLinejoin: "round"
|
|
30125
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
30126
|
+
stroke: "none",
|
|
30127
|
+
d: "M0 0h24v24H0z",
|
|
30128
|
+
fill: "none"
|
|
30129
|
+
}), /*#__PURE__*/createElement("path", {
|
|
30130
|
+
d: "M5 5h6.586a1 1 0 0 1 .707 1.707l-1.293 1.293"
|
|
30131
|
+
}), /*#__PURE__*/createElement("path", {
|
|
30132
|
+
d: "M8 8c0 1.5 .5 3 -2 5"
|
|
30133
|
+
}), /*#__PURE__*/createElement("path", {
|
|
30134
|
+
d: "M12 20l4 -9l4 9"
|
|
30135
|
+
}), /*#__PURE__*/createElement("path", {
|
|
30136
|
+
d: "M19.1 18h-6.2"
|
|
30137
|
+
}));
|
|
30138
|
+
}
|
|
30139
|
+
|
|
29597
30140
|
function IconLanguage(_ref) {
|
|
29598
30141
|
var _ref$size = _ref.size,
|
|
29599
30142
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -29618,9 +30161,15 @@ function IconLanguage(_ref) {
|
|
|
29618
30161
|
d: "M0 0h24v24H0z",
|
|
29619
30162
|
fill: "none"
|
|
29620
30163
|
}), /*#__PURE__*/createElement("path", {
|
|
29621
|
-
d: "
|
|
30164
|
+
d: "M4 5h7"
|
|
30165
|
+
}), /*#__PURE__*/createElement("path", {
|
|
30166
|
+
d: "M9 3v2c0 4.418 -2.239 8 -5 8"
|
|
30167
|
+
}), /*#__PURE__*/createElement("path", {
|
|
30168
|
+
d: "M5 9c-.003 2.144 2.952 3.908 6.7 4"
|
|
29622
30169
|
}), /*#__PURE__*/createElement("path", {
|
|
29623
|
-
d: "
|
|
30170
|
+
d: "M12 20l4 -9l4 9"
|
|
30171
|
+
}), /*#__PURE__*/createElement("path", {
|
|
30172
|
+
d: "M19.1 18h-6.2"
|
|
29624
30173
|
}));
|
|
29625
30174
|
}
|
|
29626
30175
|
|
|
@@ -38938,6 +39487,48 @@ function IconPrinter(_ref) {
|
|
|
38938
39487
|
}));
|
|
38939
39488
|
}
|
|
38940
39489
|
|
|
39490
|
+
function IconPrison(_ref) {
|
|
39491
|
+
var _ref$size = _ref.size,
|
|
39492
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
39493
|
+
_ref$color = _ref.color,
|
|
39494
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
39495
|
+
_ref$stroke = _ref.stroke,
|
|
39496
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
39497
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
39498
|
+
|
|
39499
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
39500
|
+
className: "icon icon-tabler icon-tabler-prison",
|
|
39501
|
+
width: size,
|
|
39502
|
+
height: size,
|
|
39503
|
+
viewBox: "0 0 24 24",
|
|
39504
|
+
strokeWidth: stroke,
|
|
39505
|
+
stroke: color,
|
|
39506
|
+
fill: "none",
|
|
39507
|
+
strokeLinecap: "round",
|
|
39508
|
+
strokeLinejoin: "round"
|
|
39509
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
39510
|
+
stroke: "none",
|
|
39511
|
+
d: "M0 0h24v24H0z",
|
|
39512
|
+
fill: "none"
|
|
39513
|
+
}), /*#__PURE__*/createElement("path", {
|
|
39514
|
+
d: "M18 4v16"
|
|
39515
|
+
}), /*#__PURE__*/createElement("path", {
|
|
39516
|
+
d: "M14 4v16"
|
|
39517
|
+
}), /*#__PURE__*/createElement("path", {
|
|
39518
|
+
d: "M6 4v5"
|
|
39519
|
+
}), /*#__PURE__*/createElement("path", {
|
|
39520
|
+
d: "M6 15v5"
|
|
39521
|
+
}), /*#__PURE__*/createElement("path", {
|
|
39522
|
+
d: "M10 4v5"
|
|
39523
|
+
}), /*#__PURE__*/createElement("path", {
|
|
39524
|
+
d: "M11 9h-6v6h6z"
|
|
39525
|
+
}), /*#__PURE__*/createElement("path", {
|
|
39526
|
+
d: "M10 15v5"
|
|
39527
|
+
}), /*#__PURE__*/createElement("path", {
|
|
39528
|
+
d: "M8 12h-.01"
|
|
39529
|
+
}));
|
|
39530
|
+
}
|
|
39531
|
+
|
|
38941
39532
|
function IconPrompt(_ref) {
|
|
38942
39533
|
var _ref$size = _ref.size,
|
|
38943
39534
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -45146,10 +45737,13 @@ function IconStrikethrough(_ref) {
|
|
|
45146
45737
|
stroke: "none",
|
|
45147
45738
|
d: "M0 0h24v24H0z",
|
|
45148
45739
|
fill: "none"
|
|
45740
|
+
}), /*#__PURE__*/createElement("line", {
|
|
45741
|
+
x1: 5,
|
|
45742
|
+
y1: 12,
|
|
45743
|
+
x2: 19,
|
|
45744
|
+
y2: 12
|
|
45149
45745
|
}), /*#__PURE__*/createElement("path", {
|
|
45150
|
-
d: "
|
|
45151
|
-
}), /*#__PURE__*/createElement("path", {
|
|
45152
|
-
d: "M4 12h16"
|
|
45746
|
+
d: "M16 6.5a4 2 0 0 0 -4 -1.5h-1a3.5 3.5 0 0 0 0 7h2a3.5 3.5 0 0 1 0 7h-1.5a4 2 0 0 1 -4 -1.5"
|
|
45153
45747
|
}));
|
|
45154
45748
|
}
|
|
45155
45749
|
|
|
@@ -49828,6 +50422,54 @@ function IconWalk(_ref) {
|
|
|
49828
50422
|
}));
|
|
49829
50423
|
}
|
|
49830
50424
|
|
|
50425
|
+
function IconWall(_ref) {
|
|
50426
|
+
var _ref$size = _ref.size,
|
|
50427
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
50428
|
+
_ref$color = _ref.color,
|
|
50429
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
50430
|
+
_ref$stroke = _ref.stroke,
|
|
50431
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
50432
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
50433
|
+
|
|
50434
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
50435
|
+
className: "icon icon-tabler icon-tabler-wall",
|
|
50436
|
+
width: size,
|
|
50437
|
+
height: size,
|
|
50438
|
+
viewBox: "0 0 24 24",
|
|
50439
|
+
strokeWidth: stroke,
|
|
50440
|
+
stroke: color,
|
|
50441
|
+
fill: "none",
|
|
50442
|
+
strokeLinecap: "round",
|
|
50443
|
+
strokeLinejoin: "round"
|
|
50444
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
50445
|
+
stroke: "none",
|
|
50446
|
+
d: "M0 0h24v24H0z",
|
|
50447
|
+
fill: "none"
|
|
50448
|
+
}), /*#__PURE__*/createElement("rect", {
|
|
50449
|
+
x: 4,
|
|
50450
|
+
y: 4,
|
|
50451
|
+
width: 16,
|
|
50452
|
+
height: 16,
|
|
50453
|
+
rx: 2
|
|
50454
|
+
}), /*#__PURE__*/createElement("path", {
|
|
50455
|
+
d: "M4 8h16"
|
|
50456
|
+
}), /*#__PURE__*/createElement("path", {
|
|
50457
|
+
d: "M20 12h-16"
|
|
50458
|
+
}), /*#__PURE__*/createElement("path", {
|
|
50459
|
+
d: "M4 16h16"
|
|
50460
|
+
}), /*#__PURE__*/createElement("path", {
|
|
50461
|
+
d: "M9 4v4"
|
|
50462
|
+
}), /*#__PURE__*/createElement("path", {
|
|
50463
|
+
d: "M14 8v4"
|
|
50464
|
+
}), /*#__PURE__*/createElement("path", {
|
|
50465
|
+
d: "M8 12v4"
|
|
50466
|
+
}), /*#__PURE__*/createElement("path", {
|
|
50467
|
+
d: "M16 12v4"
|
|
50468
|
+
}), /*#__PURE__*/createElement("path", {
|
|
50469
|
+
d: "M11 16v4"
|
|
50470
|
+
}));
|
|
50471
|
+
}
|
|
50472
|
+
|
|
49831
50473
|
function IconWallet(_ref) {
|
|
49832
50474
|
var _ref$size = _ref.size,
|
|
49833
50475
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -51318,5 +51960,5 @@ function IconZoomMoney(_ref) {
|
|
|
51318
51960
|
}));
|
|
51319
51961
|
}
|
|
51320
51962
|
|
|
51321
|
-
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, IconBrandDebian, 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, IconBrandStackoverflow, IconBrandSteam, IconBrandStripe, IconBrandTabler, IconBrandTailwind, IconBrandTelegram, IconBrandTidal, IconBrandTiktok, IconBrandTinder, IconBrandTumblr, IconBrandTwitch, IconBrandTwitter, IconBrandUbuntu, 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, IconCheckupList, 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, IconCrutches, 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, IconDna2, 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, IconEmergencyBed, IconEmphasis, IconEqual, IconEqualNot, IconEraser, IconExchange, IconExposure, IconExternalLink, IconEye, IconEyeCheck, IconEyeOff, IconEyeTable, 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, IconFirstAidKit, IconFish, IconFlag, IconFlag2, IconFlag3, IconFlame, IconFlare, IconFlask, IconFlask2, 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, IconHeartRateMonitor, 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, IconLungs, 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, IconMedicineSyrup, IconMenu, IconMenu2, IconMessage, IconMessage2, IconMessageCircle, IconMessageCircle2, IconMessageCircleOff, IconMessageDots, IconMessageOff, IconMessagePlus, IconMessageReport, IconMessages, IconMessagesOff, IconMicrophone, IconMicrophone2, IconMicrophoneOff, IconMicroscope, 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, IconNurse, 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, IconPills, 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, IconThermometer, 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, IconUserCircle, IconUserExclamation, IconUserMinus, IconUserOff, IconUserPlus, IconUserX, IconUsers, IconVaccine, IconVaccineBottle, 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 };
|
|
51963
|
+
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, IconBrandAirtable, IconBrandAndroid, IconBrandAngular, IconBrandApple, IconBrandAppleArcade, IconBrandAppstore, IconBrandAsana, IconBrandBehance, IconBrandBing, IconBrandBitbucket, IconBrandBooking, IconBrandBootstrap, IconBrandChrome, IconBrandCodepen, IconBrandCodesandbox, IconBrandCss3, IconBrandCucumber, IconBrandDebian, IconBrandDeviantart, IconBrandDiscord, IconBrandDisqus, IconBrandDocker, IconBrandDoctrine, IconBrandDribbble, IconBrandEdge, IconBrandFacebook, IconBrandFigma, IconBrandFirebase, IconBrandFirefox, IconBrandFlickr, IconBrandFoursquare, IconBrandFramer, IconBrandGit, IconBrandGithub, IconBrandGitlab, IconBrandGoogle, IconBrandGoogleAnalytics, IconBrandGoogleDrive, IconBrandGooglePlay, IconBrandGravatar, IconBrandHipchat, IconBrandHtml5, IconBrandInstagram, IconBrandJavascript, IconBrandKickstarter, IconBrandKotlin, IconBrandLinkedin, IconBrandLoom, IconBrandMastercard, IconBrandMedium, IconBrandMessenger, IconBrandNetbeans, IconBrandNetflix, IconBrandOpenSource, IconBrandOpera, IconBrandPagekit, IconBrandPatreon, IconBrandPaypal, IconBrandPhp, IconBrandPinterest, IconBrandPocket, IconBrandProducthunt, IconBrandPython, IconBrandReactNative, IconBrandReddit, IconBrandSafari, IconBrandSass, IconBrandSentry, IconBrandShazam, IconBrandSketch, IconBrandSkype, IconBrandSlack, IconBrandSnapchat, IconBrandSoundcloud, IconBrandSpotify, IconBrandStackoverflow, IconBrandSteam, IconBrandStripe, IconBrandSublimeText, IconBrandTabler, IconBrandTailwind, IconBrandTelegram, IconBrandTidal, IconBrandTiktok, IconBrandTinder, IconBrandTumblr, IconBrandTwitch, IconBrandTwitter, IconBrandUber, IconBrandUbuntu, IconBrandUnsplash, IconBrandVercel, IconBrandVimeo, IconBrandVisualStudio, 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, IconCheckupList, 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, IconCrutches, 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, IconDna2, 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, IconEmergencyBed, IconEmphasis, IconEqual, IconEqualNot, IconEraser, IconExchange, IconExposure, IconExternalLink, IconEye, IconEyeCheck, IconEyeOff, IconEyeTable, 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, IconFirstAidKit, IconFish, IconFlag, IconFlag2, IconFlag3, IconFlame, IconFlare, IconFlask, IconFlask2, 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, IconHeartRateMonitor, 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, IconLanguageHiragana, IconLanguageKatakana, 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, IconLungs, 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, IconMedicineSyrup, IconMenu, IconMenu2, IconMessage, IconMessage2, IconMessageCircle, IconMessageCircle2, IconMessageCircleOff, IconMessageDots, IconMessageOff, IconMessagePlus, IconMessageReport, IconMessages, IconMessagesOff, IconMicrophone, IconMicrophone2, IconMicrophoneOff, IconMicroscope, 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, IconNurse, 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, IconPills, 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, IconPrison, 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, IconThermometer, 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, IconUserCircle, IconUserExclamation, IconUserMinus, IconUserOff, IconUserPlus, IconUserX, IconUsers, IconVaccine, IconVaccineBottle, IconVariable, IconVector, IconVectorBeizer2, IconVectorBezier, IconVectorTriangle, IconVenus, IconVersions, IconVideo, IconVideoMinus, IconVideoOff, IconVideoPlus, IconView360, IconViewfinder, IconViewportNarrow, IconViewportWide, IconVirus, IconVirusOff, IconVirusSearch, IconVocabulary, IconVolume, IconVolume2, IconVolume3, IconWalk, IconWall, 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 };
|
|
51322
51964
|
//# sourceMappingURL=index.esm.js.map
|