ab-ui-library 1.59.0 → 1.60.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/components/SVGIcons/IconChartMultiple.d.ts +4 -0
- package/components/SVGIcons/IconChartMultiple.js +30 -0
- package/components/SVGIcons/IconChartMultipleFilled.d.ts +4 -0
- package/components/SVGIcons/IconChartMultipleFilled.js +30 -0
- package/components/SVGIcons/IconTextBulletListLeft.d.ts +4 -0
- package/components/SVGIcons/IconTextBulletListLeft.js +30 -0
- package/components/SVGIcons/IconTextBulletListLeftFilled.d.ts +4 -0
- package/components/SVGIcons/IconTextBulletListLeftFilled.js +30 -0
- package/components/SVGIcons/index.d.ts +16 -8
- package/components/SVGIcons/index.js +16 -7
- package/index.js +16 -7
- package/package.json +1 -1
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-9000dd50.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-28108b73.js';
|
|
5
|
+
|
|
6
|
+
var IconChartMultiple = function IconChartMultiple(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
d: "M13 11.75H19.7146C20.0549 11.4029 20.4956 11.1546 20.9896 11.0521C20.7558 6.01337 16.5966 2 11.5 2C6.25329 2 2 6.25329 2 11.5C2 16.579 5.98572 20.7271 11 20.9871V19.5L11 19.4846C6.81466 19.2266 3.5 15.7504 3.5 11.5C3.5 7.16536 6.9474 3.63591 11.25 3.50383V10C11.25 10.9665 12.0335 11.75 13 11.75ZM13 10.25C12.8619 10.25 12.75 10.1381 12.75 10V3.59708C16.1673 4.13328 18.8667 6.83275 19.4029 10.25H13ZM21.5 12C20.6716 12 20 12.6716 20 13.5V21.5C20 22.3284 20.6716 23 21.5 23C22.3284 23 23 22.3284 23 21.5V13.5C23 12.6716 22.3284 12 21.5 12ZM13.5 18C12.6716 18 12 18.6716 12 19.5V21.5C12 22.3284 12.6716 23 13.5 23C14.3284 23 15 22.3284 15 21.5V19.5C15 18.6716 14.3284 18 13.5 18ZM16 16.5C16 15.6716 16.6716 15 17.5 15C18.3284 15 19 15.6716 19 16.5V21.5C19 22.3284 18.3284 23 17.5 23C16.6716 23 16 22.3284 16 21.5V16.5Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconChartMultiple, IconChartMultiple as default };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-9000dd50.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-28108b73.js';
|
|
5
|
+
|
|
6
|
+
var IconChartMultipleFilled = function IconChartMultipleFilled(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
d: "M19 13.4997C19 12.8183 19.2726 12.2006 19.7146 11.7497H13C12.0335 11.7497 11.25 10.9662 11.25 9.9997V2.00293C6.11885 2.13548 2 6.33659 2 11.4997C2 16.5787 5.98572 20.7268 11 20.9868V19.4997C11 18.119 12.1193 16.9997 13.5 16.9997C14.0628 16.9997 14.5822 17.1857 15 17.4995V16.4997C15 15.119 16.1193 13.9997 17.5 13.9997C18.0628 13.9997 18.5822 14.1857 19 14.4995V13.4997ZM12.75 2.08121V9.9997C12.75 10.1378 12.8619 10.2497 13 10.2497H20.9185C20.3603 6.0028 16.9969 2.6394 12.75 2.08121ZM21.5 12C20.6716 12 20 12.6716 20 13.5V21.5C20 22.3284 20.6716 23 21.5 23C22.3284 23 23 22.3284 23 21.5V13.5C23 12.6716 22.3284 12 21.5 12ZM13.5 18C12.6716 18 12 18.6716 12 19.5V21.5C12 22.3284 12.6716 23 13.5 23C14.3284 23 15 22.3284 15 21.5V19.5C15 18.6716 14.3284 18 13.5 18ZM16 16.5C16 15.6716 16.6716 15 17.5 15C18.3284 15 19 15.6716 19 16.5V21.5C19 22.3284 18.3284 23 17.5 23C16.6716 23 16 22.3284 16 21.5V16.5Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconChartMultipleFilled, IconChartMultipleFilled as default };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-9000dd50.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-28108b73.js';
|
|
5
|
+
|
|
6
|
+
var IconTextBulletListLeft = function IconTextBulletListLeft(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
d: "M3.24929 17.5C3.93925 17.5 4.49858 18.0593 4.49858 18.7493C4.49858 19.4393 3.93925 19.9986 3.24929 19.9986C2.55933 19.9986 2 19.4393 2 18.7493C2 18.0593 2.55933 17.5 3.24929 17.5ZM6.75 18H21.25C21.6642 18 22 18.3358 22 18.75C22 19.1297 21.7178 19.4435 21.3518 19.4932L21.25 19.5H6.75C6.33579 19.5 6 19.1642 6 18.75C6 18.3703 6.28215 18.0565 6.64823 18.0068L6.75 18H21.25H6.75ZM3.24929 11C3.93925 11 4.49858 11.5593 4.49858 12.2493C4.49858 12.9393 3.93925 13.4986 3.24929 13.4986C2.55933 13.4986 2 12.9393 2 12.2493C2 11.5593 2.55933 11 3.24929 11ZM6.75 11.5H21.25C21.6642 11.5 22 11.8358 22 12.25C22 12.6297 21.7178 12.9435 21.3518 12.9932L21.25 13H6.75C6.33579 13 6 12.6642 6 12.25C6 11.8703 6.28215 11.5565 6.64823 11.5068L6.75 11.5H21.25H6.75ZM3.24929 4.5C3.93925 4.5 4.49858 5.05933 4.49858 5.74929C4.49858 6.43925 3.93925 6.99858 3.24929 6.99858C2.55933 6.99858 2 6.43925 2 5.74929C2 5.05933 2.55933 4.5 3.24929 4.5ZM6.75 5H21.25C21.6642 5 22 5.33579 22 5.75C22 6.1297 21.7178 6.44349 21.3518 6.49315L21.25 6.5H6.75C6.33579 6.5 6 6.16421 6 5.75C6 5.3703 6.28215 5.05651 6.64823 5.00685L6.75 5H21.25H6.75Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconTextBulletListLeft, IconTextBulletListLeft as default };
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ReactElement } from 'react';
|
|
2
|
+
import type { ISVGIconProps } from './types';
|
|
3
|
+
export declare const IconTextBulletListLeftFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
|
|
4
|
+
export default IconTextBulletListLeftFilled;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-9000dd50.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-28108b73.js';
|
|
5
|
+
|
|
6
|
+
var IconTextBulletListLeftFilled = function IconTextBulletListLeftFilled(_ref) {
|
|
7
|
+
var size = _ref.size,
|
|
8
|
+
type = _ref.type,
|
|
9
|
+
_ref$className = _ref.className,
|
|
10
|
+
className = _ref$className === void 0 ? '' : _ref$className,
|
|
11
|
+
onClick = _ref.onClick,
|
|
12
|
+
refHandler = _ref.refHandler,
|
|
13
|
+
id = _ref.id,
|
|
14
|
+
dataId = _ref.dataId;
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
className: classNames('svg-icon', _defineProperty(_defineProperty(_defineProperty({}, "svg-icon__size-".concat(size), size), "svg-icon__type-".concat(type), type), className, className)),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
ref: refHandler,
|
|
22
|
+
id: id,
|
|
23
|
+
"data-id": dataId ? "".concat(dataId, "-svg-icon") : ''
|
|
24
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
d: "M3.49942 16.5006C4.32752 16.5006 4.99883 17.1719 4.99883 18C4.99883 18.8281 4.32752 19.4994 3.49942 19.4994C2.67131 19.4994 2 18.8281 2 18C2 17.1719 2.67131 16.5006 3.49942 16.5006ZM7.50034 17H21.0035C21.5558 17 22.0035 17.4477 22.0035 18C22.0035 18.5128 21.6174 18.9355 21.1201 18.9933L21.0035 19H7.50034C6.94805 19 6.50034 18.5523 6.50034 18C6.50034 17.4872 6.88638 17.0645 7.38372 17.0067L7.50034 17H21.0035H7.50034ZM3.49942 10.5006C4.32752 10.5006 4.99883 11.1719 4.99883 12C4.99883 12.8281 4.32752 13.4994 3.49942 13.4994C2.67131 13.4994 2 12.8281 2 12C2 11.1719 2.67131 10.5006 3.49942 10.5006ZM7.50034 11H21.0035C21.5558 11 22.0035 11.4477 22.0035 12C22.0035 12.5128 21.6174 12.9355 21.1201 12.9933L21.0035 13H7.50034C6.94805 13 6.50034 12.5523 6.50034 12C6.50034 11.4872 6.88638 11.0645 7.38372 11.0067L7.50034 11H21.0035H7.50034ZM3.49942 4.50781C4.32752 4.50781 4.99883 5.17912 4.99883 6.00723C4.99883 6.83533 4.32752 7.50664 3.49942 7.50664C2.67131 7.50664 2 6.83533 2 6.00723C2 5.17912 2.67131 4.50781 3.49942 4.50781ZM7.50034 5.00082H21.0035C21.5558 5.00082 22.0035 5.44854 22.0035 6.00082C22.0035 6.51366 21.6174 6.93633 21.1201 6.9941L21.0035 7.00082H7.50034C6.94805 7.00082 6.50034 6.55311 6.50034 6.00082C6.50034 5.48799 6.88638 5.06532 7.38372 5.00755L7.50034 5.00082H21.0035H7.50034Z",
|
|
26
|
+
fill: "#222222"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconTextBulletListLeftFilled, IconTextBulletListLeftFilled as default };
|
|
@@ -14,6 +14,7 @@ export * from './IconAppsList';
|
|
|
14
14
|
export * from './IconAppsListDetail';
|
|
15
15
|
export * from './IconAppsListDetailFilled';
|
|
16
16
|
export * from './IconAppsListFilled';
|
|
17
|
+
export * from './IconAppStore';
|
|
17
18
|
export * from './IconArrowCircleDown';
|
|
18
19
|
export * from './IconArrowCircleDownSplit';
|
|
19
20
|
export * from './IconArrowDown';
|
|
@@ -48,6 +49,7 @@ export * from './IconArrowSwap';
|
|
|
48
49
|
export * from './IconArrowSwapFilled';
|
|
49
50
|
export * from './IconArrowSync';
|
|
50
51
|
export * from './IconArrowSyncFilled';
|
|
52
|
+
export * from './IconArrowTrendingLines';
|
|
51
53
|
export * from './IconArrowUp';
|
|
52
54
|
export * from './IconArrowUpFilled';
|
|
53
55
|
export * from './IconArrowUpLeft';
|
|
@@ -64,10 +66,10 @@ export * from './IconBed';
|
|
|
64
66
|
export * from './IconBedFilled';
|
|
65
67
|
export * from './IconBook';
|
|
66
68
|
export * from './IconBookFilled';
|
|
67
|
-
export * from './IconBookOpen';
|
|
68
|
-
export * from './IconBookOpenFilled';
|
|
69
69
|
export * from './IconBookmark';
|
|
70
70
|
export * from './IconBookmarkFilled';
|
|
71
|
+
export * from './IconBookOpen';
|
|
72
|
+
export * from './IconBookOpenFilled';
|
|
71
73
|
export * from './IconBriefcase';
|
|
72
74
|
export * from './IconBriefcaseFilled';
|
|
73
75
|
export * from './IconBroom';
|
|
@@ -110,6 +112,8 @@ export * from './IconCaretRight';
|
|
|
110
112
|
export * from './IconCaretRightFilled';
|
|
111
113
|
export * from './IconCaretUp';
|
|
112
114
|
export * from './IconCaretUpFilled';
|
|
115
|
+
export * from './IconChartMultiple';
|
|
116
|
+
export * from './IconChartMultipleFilled';
|
|
113
117
|
export * from './IconChat';
|
|
114
118
|
export * from './IconChatFilled';
|
|
115
119
|
export * from './IconChatMultiple';
|
|
@@ -180,6 +184,7 @@ export * from './IconDocumentOnePage';
|
|
|
180
184
|
export * from './IconDocumentOnePageFilled';
|
|
181
185
|
export * from './IconDocumentPercent';
|
|
182
186
|
export * from './IconDocumentPercentFilled';
|
|
187
|
+
export * from './IconDocumentReport';
|
|
183
188
|
export * from './IconDocumentText';
|
|
184
189
|
export * from './IconDocumentTextFilled';
|
|
185
190
|
export * from './IconEdit';
|
|
@@ -250,8 +255,8 @@ export * from './IconLeafFilled';
|
|
|
250
255
|
export * from './IconLightbulb';
|
|
251
256
|
export * from './IconLightbulbFilled';
|
|
252
257
|
export * from './IconLink';
|
|
253
|
-
export * from './IconLinkFilled';
|
|
254
258
|
export * from './IconLinkedin';
|
|
259
|
+
export * from './IconLinkFilled';
|
|
255
260
|
export * from './IconList';
|
|
256
261
|
export * from './IconListFilled';
|
|
257
262
|
export * from './IconLoan';
|
|
@@ -381,10 +386,14 @@ export * from './IconTableCellEditFilled';
|
|
|
381
386
|
export * from './IconTasksApp';
|
|
382
387
|
export * from './IconTasksAppFilled';
|
|
383
388
|
export * from './IconTelegram';
|
|
384
|
-
export * from './IconTextBulletListSquarePerson';
|
|
385
|
-
export * from './IconTextBulletListSquarePersonFilled';
|
|
386
389
|
export * from './IconTextboxSettings';
|
|
387
390
|
export * from './IconTextboxSettingsFilled';
|
|
391
|
+
export * from './IconTextBulletListLeft';
|
|
392
|
+
export * from './IconTextBulletListLeftFilled';
|
|
393
|
+
export * from './IconTextBulletListSquarePerson';
|
|
394
|
+
export * from './IconTextBulletListSquarePersonFilled';
|
|
395
|
+
export * from './IconTextBulletListSquareSettings';
|
|
396
|
+
export * from './IconTextBulletListSquareSettingsFilled';
|
|
388
397
|
export * from './IconTimer';
|
|
389
398
|
export * from './IconTimerFilled';
|
|
390
399
|
export * from './IconTin';
|
|
@@ -402,6 +411,8 @@ export * from './IconUsd';
|
|
|
402
411
|
export * from './IconUsdFilled';
|
|
403
412
|
export * from './IconVehicleTruckProfile';
|
|
404
413
|
export * from './IconVehicleTruckProfileFilled';
|
|
414
|
+
export * from './IconVerified';
|
|
415
|
+
export * from './IconVerifiedFilled';
|
|
405
416
|
export * from './IconViber';
|
|
406
417
|
export * from './IconVideo';
|
|
407
418
|
export * from './IconVideoFilled';
|
|
@@ -422,6 +433,3 @@ export * from './IconZoomIn';
|
|
|
422
433
|
export * from './IconZoomInFilled';
|
|
423
434
|
export * from './IconZoomOut';
|
|
424
435
|
export * from './IconZoomOutFilled';
|
|
425
|
-
export * from './IconWifiOff';
|
|
426
|
-
export * from './IconAppStore';
|
|
427
|
-
export * from './IconArrowTrendingLines';
|
|
@@ -14,6 +14,7 @@ export { IconAppsList } from './IconAppsList.js';
|
|
|
14
14
|
export { IconAppsListDetail } from './IconAppsListDetail.js';
|
|
15
15
|
export { IconAppsListDetailFilled } from './IconAppsListDetailFilled.js';
|
|
16
16
|
export { IconAppsListFilled } from './IconAppsListFilled.js';
|
|
17
|
+
export { IconAppStore } from './IconAppStore.js';
|
|
17
18
|
export { IconArrowCircleDown } from './IconArrowCircleDown.js';
|
|
18
19
|
export { IconArrowCircleDownSplit } from './IconArrowCircleDownSplit.js';
|
|
19
20
|
export { IconArrowDown } from './IconArrowDown.js';
|
|
@@ -48,6 +49,7 @@ export { IconArrowSwap } from './IconArrowSwap.js';
|
|
|
48
49
|
export { IconArrowSwapFilled } from './IconArrowSwapFilled.js';
|
|
49
50
|
export { IconArrowSync } from './IconArrowSync.js';
|
|
50
51
|
export { IconArrowSyncFilled } from './IconArrowSyncFilled.js';
|
|
52
|
+
export { IconArrowTrendingLines } from './IconArrowTrendingLines.js';
|
|
51
53
|
export { IconArrowUp } from './IconArrowUp.js';
|
|
52
54
|
export { IconArrowUpFilled } from './IconArrowUpFilled.js';
|
|
53
55
|
export { IconArrowUpLeft } from './IconArrowUpLeft.js';
|
|
@@ -64,10 +66,10 @@ export { IconBed } from './IconBed.js';
|
|
|
64
66
|
export { IconBedFilled } from './IconBedFilled.js';
|
|
65
67
|
export { IconBook } from './IconBook.js';
|
|
66
68
|
export { IconBookFilled } from './IconBookFilled.js';
|
|
67
|
-
export { IconBookOpen } from './IconBookOpen.js';
|
|
68
|
-
export { IconBookOpenFilled } from './IconBookOpenFilled.js';
|
|
69
69
|
export { IconBookmark } from './IconBookmark.js';
|
|
70
70
|
export { IconBookmarkFilled } from './IconBookmarkFilled.js';
|
|
71
|
+
export { IconBookOpen } from './IconBookOpen.js';
|
|
72
|
+
export { IconBookOpenFilled } from './IconBookOpenFilled.js';
|
|
71
73
|
export { IconBriefcase } from './IconBriefcase.js';
|
|
72
74
|
export { IconBriefcaseFilled } from './IconBriefcaseFilled.js';
|
|
73
75
|
export { IconBroom } from './IconBroom.js';
|
|
@@ -110,6 +112,8 @@ export { IconCaretRight } from './IconCaretRight.js';
|
|
|
110
112
|
export { IconCaretRightFilled } from './IconCaretRightFilled.js';
|
|
111
113
|
export { IconCaretUp } from './IconCaretUp.js';
|
|
112
114
|
export { IconCaretUpFilled } from './IconCaretUpFilled.js';
|
|
115
|
+
export { IconChartMultiple } from './IconChartMultiple.js';
|
|
116
|
+
export { IconChartMultipleFilled } from './IconChartMultipleFilled.js';
|
|
113
117
|
export { IconChat } from './IconChat.js';
|
|
114
118
|
export { IconChatFilled } from './IconChatFilled.js';
|
|
115
119
|
export { IconChatMultiple } from './IconChatMultiple.js';
|
|
@@ -180,6 +184,7 @@ export { IconDocumentOnePage } from './IconDocumentOnePage.js';
|
|
|
180
184
|
export { IconDocumentOnePageFilled } from './IconDocumentOnePageFilled.js';
|
|
181
185
|
export { IconDocumentPercent } from './IconDocumentPercent.js';
|
|
182
186
|
export { IconDocumentPercentFilled } from './IconDocumentPercentFilled.js';
|
|
187
|
+
export { IconDocumentReport } from './IconDocumentReport.js';
|
|
183
188
|
export { IconDocumentText } from './IconDocumentText.js';
|
|
184
189
|
export { IconDocumentTextFilled } from './IconDocumentTextFilled.js';
|
|
185
190
|
export { IconEdit } from './IconEdit.js';
|
|
@@ -250,8 +255,8 @@ export { IconLeafFilled } from './IconLeafFilled.js';
|
|
|
250
255
|
export { IconLightbulb } from './IconLightbulb.js';
|
|
251
256
|
export { IconLightbulbFilled } from './IconLightbulbFilled.js';
|
|
252
257
|
export { IconLink } from './IconLink.js';
|
|
253
|
-
export { IconLinkFilled } from './IconLinkFilled.js';
|
|
254
258
|
export { IconLinkedin } from './IconLinkedin.js';
|
|
259
|
+
export { IconLinkFilled } from './IconLinkFilled.js';
|
|
255
260
|
export { IconList } from './IconList.js';
|
|
256
261
|
export { IconListFilled } from './IconListFilled.js';
|
|
257
262
|
export { IconLoan } from './IconLoan.js';
|
|
@@ -381,10 +386,14 @@ export { IconTableCellEditFilled } from './IconTableCellEditFilled.js';
|
|
|
381
386
|
export { IconTasksApp } from './IconTasksApp.js';
|
|
382
387
|
export { IconTasksAppFilled } from './IconTasksAppFilled.js';
|
|
383
388
|
export { IconTelegram } from './IconTelegram.js';
|
|
384
|
-
export { IconTextBulletListSquarePerson } from './IconTextBulletListSquarePerson.js';
|
|
385
|
-
export { IconTextBulletListSquarePersonFilled } from './IconTextBulletListSquarePersonFilled.js';
|
|
386
389
|
export { IconTextboxSettings } from './IconTextboxSettings.js';
|
|
387
390
|
export { IconTextboxSettingsFilled } from './IconTextboxSettingsFilled.js';
|
|
391
|
+
export { IconTextBulletListLeft } from './IconTextBulletListLeft.js';
|
|
392
|
+
export { IconTextBulletListLeftFilled } from './IconTextBulletListLeftFilled.js';
|
|
393
|
+
export { IconTextBulletListSquarePerson } from './IconTextBulletListSquarePerson.js';
|
|
394
|
+
export { IconTextBulletListSquarePersonFilled } from './IconTextBulletListSquarePersonFilled.js';
|
|
395
|
+
export { IconTextBulletListSquareSettings } from './IconTextBulletListSquareSettings.js';
|
|
396
|
+
export { IconTextBulletListSquareSettingsFilled } from './IconTextBulletListSquareSettingsFilled.js';
|
|
388
397
|
export { IconTimer } from './IconTimer.js';
|
|
389
398
|
export { IconTimerFilled } from './IconTimerFilled.js';
|
|
390
399
|
export { IconTin } from './IconTin.js';
|
|
@@ -402,6 +411,8 @@ export { IconUsd } from './IconUsd.js';
|
|
|
402
411
|
export { IconUsdFilled } from './IconUsdFilled.js';
|
|
403
412
|
export { IconVehicleTruckProfile } from './IconVehicleTruckProfile.js';
|
|
404
413
|
export { IconVehicleTruckProfileFilled } from './IconVehicleTruckProfileFilled.js';
|
|
414
|
+
export { IconVerified } from './IconVerified.js';
|
|
415
|
+
export { IconVerifiedFilled } from './IconVerifiedFilled.js';
|
|
405
416
|
export { IconViber } from './IconViber.js';
|
|
406
417
|
export { IconVideo } from './IconVideo.js';
|
|
407
418
|
export { IconVideoFilled } from './IconVideoFilled.js';
|
|
@@ -422,8 +433,6 @@ export { IconZoomIn } from './IconZoomIn.js';
|
|
|
422
433
|
export { IconZoomInFilled } from './IconZoomInFilled.js';
|
|
423
434
|
export { IconZoomOut } from './IconZoomOut.js';
|
|
424
435
|
export { IconZoomOutFilled } from './IconZoomOutFilled.js';
|
|
425
|
-
export { IconAppStore } from './IconAppStore.js';
|
|
426
|
-
export { IconArrowTrendingLines } from './IconArrowTrendingLines.js';
|
|
427
436
|
import '../../defineProperty-9000dd50.js';
|
|
428
437
|
import '../../typeof-28108b73.js';
|
|
429
438
|
import 'react';
|
package/index.js
CHANGED
|
@@ -79,6 +79,7 @@ export { IconAppsList } from './components/SVGIcons/IconAppsList.js';
|
|
|
79
79
|
export { IconAppsListDetail } from './components/SVGIcons/IconAppsListDetail.js';
|
|
80
80
|
export { IconAppsListDetailFilled } from './components/SVGIcons/IconAppsListDetailFilled.js';
|
|
81
81
|
export { IconAppsListFilled } from './components/SVGIcons/IconAppsListFilled.js';
|
|
82
|
+
export { IconAppStore } from './components/SVGIcons/IconAppStore.js';
|
|
82
83
|
export { IconArrowCircleDown } from './components/SVGIcons/IconArrowCircleDown.js';
|
|
83
84
|
export { IconArrowCircleDownSplit } from './components/SVGIcons/IconArrowCircleDownSplit.js';
|
|
84
85
|
export { IconArrowDown } from './components/SVGIcons/IconArrowDown.js';
|
|
@@ -113,6 +114,7 @@ export { IconArrowSwap } from './components/SVGIcons/IconArrowSwap.js';
|
|
|
113
114
|
export { IconArrowSwapFilled } from './components/SVGIcons/IconArrowSwapFilled.js';
|
|
114
115
|
export { IconArrowSync } from './components/SVGIcons/IconArrowSync.js';
|
|
115
116
|
export { IconArrowSyncFilled } from './components/SVGIcons/IconArrowSyncFilled.js';
|
|
117
|
+
export { IconArrowTrendingLines } from './components/SVGIcons/IconArrowTrendingLines.js';
|
|
116
118
|
export { IconArrowUp } from './components/SVGIcons/IconArrowUp.js';
|
|
117
119
|
export { IconArrowUpFilled } from './components/SVGIcons/IconArrowUpFilled.js';
|
|
118
120
|
export { IconArrowUpLeft } from './components/SVGIcons/IconArrowUpLeft.js';
|
|
@@ -129,10 +131,10 @@ export { IconBed } from './components/SVGIcons/IconBed.js';
|
|
|
129
131
|
export { IconBedFilled } from './components/SVGIcons/IconBedFilled.js';
|
|
130
132
|
export { IconBook } from './components/SVGIcons/IconBook.js';
|
|
131
133
|
export { IconBookFilled } from './components/SVGIcons/IconBookFilled.js';
|
|
132
|
-
export { IconBookOpen } from './components/SVGIcons/IconBookOpen.js';
|
|
133
|
-
export { IconBookOpenFilled } from './components/SVGIcons/IconBookOpenFilled.js';
|
|
134
134
|
export { IconBookmark } from './components/SVGIcons/IconBookmark.js';
|
|
135
135
|
export { IconBookmarkFilled } from './components/SVGIcons/IconBookmarkFilled.js';
|
|
136
|
+
export { IconBookOpen } from './components/SVGIcons/IconBookOpen.js';
|
|
137
|
+
export { IconBookOpenFilled } from './components/SVGIcons/IconBookOpenFilled.js';
|
|
136
138
|
export { IconBriefcase } from './components/SVGIcons/IconBriefcase.js';
|
|
137
139
|
export { IconBriefcaseFilled } from './components/SVGIcons/IconBriefcaseFilled.js';
|
|
138
140
|
export { IconBroom } from './components/SVGIcons/IconBroom.js';
|
|
@@ -175,6 +177,8 @@ export { IconCaretRight } from './components/SVGIcons/IconCaretRight.js';
|
|
|
175
177
|
export { IconCaretRightFilled } from './components/SVGIcons/IconCaretRightFilled.js';
|
|
176
178
|
export { IconCaretUp } from './components/SVGIcons/IconCaretUp.js';
|
|
177
179
|
export { IconCaretUpFilled } from './components/SVGIcons/IconCaretUpFilled.js';
|
|
180
|
+
export { IconChartMultiple } from './components/SVGIcons/IconChartMultiple.js';
|
|
181
|
+
export { IconChartMultipleFilled } from './components/SVGIcons/IconChartMultipleFilled.js';
|
|
178
182
|
export { IconChat } from './components/SVGIcons/IconChat.js';
|
|
179
183
|
export { IconChatFilled } from './components/SVGIcons/IconChatFilled.js';
|
|
180
184
|
export { IconChatMultiple } from './components/SVGIcons/IconChatMultiple.js';
|
|
@@ -245,6 +249,7 @@ export { IconDocumentOnePage } from './components/SVGIcons/IconDocumentOnePage.j
|
|
|
245
249
|
export { IconDocumentOnePageFilled } from './components/SVGIcons/IconDocumentOnePageFilled.js';
|
|
246
250
|
export { IconDocumentPercent } from './components/SVGIcons/IconDocumentPercent.js';
|
|
247
251
|
export { IconDocumentPercentFilled } from './components/SVGIcons/IconDocumentPercentFilled.js';
|
|
252
|
+
export { IconDocumentReport } from './components/SVGIcons/IconDocumentReport.js';
|
|
248
253
|
export { IconDocumentText } from './components/SVGIcons/IconDocumentText.js';
|
|
249
254
|
export { IconDocumentTextFilled } from './components/SVGIcons/IconDocumentTextFilled.js';
|
|
250
255
|
export { IconEdit } from './components/SVGIcons/IconEdit.js';
|
|
@@ -315,8 +320,8 @@ export { IconLeafFilled } from './components/SVGIcons/IconLeafFilled.js';
|
|
|
315
320
|
export { IconLightbulb } from './components/SVGIcons/IconLightbulb.js';
|
|
316
321
|
export { IconLightbulbFilled } from './components/SVGIcons/IconLightbulbFilled.js';
|
|
317
322
|
export { IconLink } from './components/SVGIcons/IconLink.js';
|
|
318
|
-
export { IconLinkFilled } from './components/SVGIcons/IconLinkFilled.js';
|
|
319
323
|
export { IconLinkedin } from './components/SVGIcons/IconLinkedin.js';
|
|
324
|
+
export { IconLinkFilled } from './components/SVGIcons/IconLinkFilled.js';
|
|
320
325
|
export { IconList } from './components/SVGIcons/IconList.js';
|
|
321
326
|
export { IconListFilled } from './components/SVGIcons/IconListFilled.js';
|
|
322
327
|
export { IconLoan } from './components/SVGIcons/IconLoan.js';
|
|
@@ -446,10 +451,14 @@ export { IconTableCellEditFilled } from './components/SVGIcons/IconTableCellEdit
|
|
|
446
451
|
export { IconTasksApp } from './components/SVGIcons/IconTasksApp.js';
|
|
447
452
|
export { IconTasksAppFilled } from './components/SVGIcons/IconTasksAppFilled.js';
|
|
448
453
|
export { IconTelegram } from './components/SVGIcons/IconTelegram.js';
|
|
449
|
-
export { IconTextBulletListSquarePerson } from './components/SVGIcons/IconTextBulletListSquarePerson.js';
|
|
450
|
-
export { IconTextBulletListSquarePersonFilled } from './components/SVGIcons/IconTextBulletListSquarePersonFilled.js';
|
|
451
454
|
export { IconTextboxSettings } from './components/SVGIcons/IconTextboxSettings.js';
|
|
452
455
|
export { IconTextboxSettingsFilled } from './components/SVGIcons/IconTextboxSettingsFilled.js';
|
|
456
|
+
export { IconTextBulletListLeft } from './components/SVGIcons/IconTextBulletListLeft.js';
|
|
457
|
+
export { IconTextBulletListLeftFilled } from './components/SVGIcons/IconTextBulletListLeftFilled.js';
|
|
458
|
+
export { IconTextBulletListSquarePerson } from './components/SVGIcons/IconTextBulletListSquarePerson.js';
|
|
459
|
+
export { IconTextBulletListSquarePersonFilled } from './components/SVGIcons/IconTextBulletListSquarePersonFilled.js';
|
|
460
|
+
export { IconTextBulletListSquareSettings } from './components/SVGIcons/IconTextBulletListSquareSettings.js';
|
|
461
|
+
export { IconTextBulletListSquareSettingsFilled } from './components/SVGIcons/IconTextBulletListSquareSettingsFilled.js';
|
|
453
462
|
export { IconTimer } from './components/SVGIcons/IconTimer.js';
|
|
454
463
|
export { IconTimerFilled } from './components/SVGIcons/IconTimerFilled.js';
|
|
455
464
|
export { IconTin } from './components/SVGIcons/IconTin.js';
|
|
@@ -467,6 +476,8 @@ export { IconUsd } from './components/SVGIcons/IconUsd.js';
|
|
|
467
476
|
export { IconUsdFilled } from './components/SVGIcons/IconUsdFilled.js';
|
|
468
477
|
export { IconVehicleTruckProfile } from './components/SVGIcons/IconVehicleTruckProfile.js';
|
|
469
478
|
export { IconVehicleTruckProfileFilled } from './components/SVGIcons/IconVehicleTruckProfileFilled.js';
|
|
479
|
+
export { IconVerified } from './components/SVGIcons/IconVerified.js';
|
|
480
|
+
export { IconVerifiedFilled } from './components/SVGIcons/IconVerifiedFilled.js';
|
|
470
481
|
export { IconViber } from './components/SVGIcons/IconViber.js';
|
|
471
482
|
export { IconVideo } from './components/SVGIcons/IconVideo.js';
|
|
472
483
|
export { IconVideoFilled } from './components/SVGIcons/IconVideoFilled.js';
|
|
@@ -487,8 +498,6 @@ export { IconZoomIn } from './components/SVGIcons/IconZoomIn.js';
|
|
|
487
498
|
export { IconZoomInFilled } from './components/SVGIcons/IconZoomInFilled.js';
|
|
488
499
|
export { IconZoomOut } from './components/SVGIcons/IconZoomOut.js';
|
|
489
500
|
export { IconZoomOutFilled } from './components/SVGIcons/IconZoomOutFilled.js';
|
|
490
|
-
export { IconAppStore } from './components/SVGIcons/IconAppStore.js';
|
|
491
|
-
export { IconArrowTrendingLines } from './components/SVGIcons/IconArrowTrendingLines.js';
|
|
492
501
|
export { OneTimePassword } from './components/OneTimePassword/OneTimePassword.js';
|
|
493
502
|
export { OptionItem } from './helperComponents/OptionItem/OptionItem.js';
|
|
494
503
|
export { MultiTextareaWithChips } from './components/MultiTextareaWithChips/MultiTextareaWithChips.js';
|