ab-ui-library 1.44.5 → 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/components/SVGIcons/IconDocumentReport.d.ts +4 -0
- package/components/SVGIcons/IconDocumentReport.js +30 -0
- package/components/SVGIcons/IconVerified.d.ts +4 -0
- package/components/SVGIcons/IconVerified.js +31 -0
- package/components/SVGIcons/IconVerifiedFilled.d.ts +4 -0
- package/components/SVGIcons/IconVerifiedFilled.js +31 -0
- package/package.json +1 -1
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-9c5ac566.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-6b0fc1f2.js';
|
|
5
|
+
|
|
6
|
+
var IconDocumentReport = function IconDocumentReport(_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 20 20",
|
|
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: "M4.91667 12.9583C4.91667 12.6132 4.63685 12.3333 4.29167 12.3333C3.94649 12.3333 3.66667 12.6132 3.66667 12.9583L3.66667 14.2083C3.66667 14.5535 3.94649 14.8333 4.29167 14.8333C4.63684 14.8333 4.91667 14.5535 4.91667 14.2083V12.9583ZM7 9.00001C7.34518 9.00001 7.625 9.27983 7.625 9.62501V14.2083C7.625 14.5535 7.34518 14.8333 7 14.8333C6.65482 14.8333 6.375 14.5535 6.375 14.2083L6.375 9.62501C6.375 9.27983 6.65482 9.00001 7 9.00001ZM10.3333 11.2917C10.3333 10.9465 10.0535 10.6667 9.70833 10.6667C9.36316 10.6667 9.08333 10.9465 9.08333 11.2917V14.2083C9.08333 14.5535 9.36316 14.8333 9.70833 14.8333C10.0535 14.8333 10.3333 14.5535 10.3333 14.2083V11.2917ZM8.32083 1.15501L13.1783 6.01167C13.4908 6.32417 13.6667 6.74834 13.6667 7.19001V15.6667C13.6667 16.5867 12.92 17.3333 12 17.3333L2 17.3333C1.08 17.3333 0.333334 16.5867 0.333334 15.6667L0.333334 2.33334C0.333334 1.41334 1.08 0.666672 2 0.666672L7.14333 0.666672C7.16657 0.666672 7.18924 0.669764 7.21183 0.672846C7.22814 0.675071 7.24441 0.67729 7.26083 0.678338C7.44 0.690838 7.61667 0.725005 7.78083 0.793338C7.82864 0.813734 7.874 0.83998 7.91917 0.86611C7.93305 0.874144 7.94692 0.882167 7.96083 0.890005C7.97372 0.897062 7.98706 0.903555 8.00043 0.910064C8.02339 0.921235 8.04644 0.932456 8.0675 0.946672C8.1325 0.990838 8.19083 1.04334 8.25 1.09667C8.25956 1.10517 8.26987 1.11307 8.28024 1.121C8.29426 1.13174 8.30837 1.14255 8.32083 1.15501ZM12 16.0833C12.23 16.0833 12.4167 15.8958 12.4167 15.6667V7.33334H8.66667C7.74667 7.33334 7 6.58667 7 5.66667L7 1.91667L2 1.91667C1.77 1.91667 1.58333 2.10417 1.58333 2.33334L1.58333 15.6667C1.58333 15.8958 1.77 16.0833 2 16.0833H12ZM11.4817 6.08334L8.25 2.85084V5.66667C8.25 5.89584 8.43667 6.08334 8.66667 6.08334H11.4817Z",
|
|
26
|
+
fill: "#888888"
|
|
27
|
+
}));
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { IconDocumentReport, IconDocumentReport as default };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-9c5ac566.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-6b0fc1f2.js';
|
|
5
|
+
|
|
6
|
+
var IconVerified = function IconVerified(_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 20 20",
|
|
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
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26
|
+
d: "M13.964 7.75223C14.2184 7.51898 14.2356 7.12363 14.0024 6.86918C13.7691 6.61473 13.3738 6.59754 13.1193 6.83079L8.56046 11.0098L6.90028 9.34957C6.6562 9.10549 6.26047 9.10549 6.01639 9.34957C5.77231 9.59365 5.77231 9.98937 6.01639 10.2335L8.09972 12.3168C8.33634 12.5534 8.71733 12.5617 8.96399 12.3356L13.964 7.75223ZM16.875 4.1665C14.6555 4.1665 12.4934 3.38027 10.375 1.7915C10.1528 1.62484 9.84722 1.62484 9.625 1.7915C7.50664 3.38027 5.34451 4.1665 3.125 4.1665C2.77982 4.1665 2.5 4.44633 2.5 4.7915V9.16651C2.5 13.3342 4.96464 16.3963 9.77092 18.2897C9.91813 18.3477 10.0819 18.3477 10.2291 18.2897C15.0354 16.3963 17.5 13.3342 17.5 9.16651V4.7915C17.5 4.44633 17.2202 4.1665 16.875 4.1665ZM3.75 5.39811C5.89779 5.27138 7.98403 4.49008 10 3.06468C12.016 4.49008 14.1022 5.27138 16.25 5.39811V9.16651C16.25 12.7128 14.2055 15.3156 10 17.0347C5.79447 15.3156 3.75 12.7128 3.75 9.16651V5.39811Z",
|
|
27
|
+
fill: "#CCCCCC"
|
|
28
|
+
}));
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
export { IconVerified, IconVerified as default };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { _ as _defineProperty } from '../../defineProperty-9c5ac566.js';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import classNames from 'classnames';
|
|
4
|
+
import '../../typeof-6b0fc1f2.js';
|
|
5
|
+
|
|
6
|
+
var IconVerifiedFilled = function IconVerifiedFilled(_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 20 20",
|
|
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
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26
|
+
d: "M16.875 4.1665C14.6555 4.1665 12.4934 3.38027 10.375 1.7915C10.1528 1.62484 9.84722 1.62484 9.625 1.7915C7.50664 3.38027 5.34451 4.1665 3.125 4.1665C2.77982 4.1665 2.5 4.44633 2.5 4.7915V9.16651C2.5 13.3342 4.96464 16.3963 9.77092 18.2897C9.91813 18.3477 10.0819 18.3477 10.2291 18.2897C15.0354 16.3963 17.5 13.3342 17.5 9.16651V4.7915C17.5 4.44633 17.2202 4.1665 16.875 4.1665ZM13.964 7.75223L8.96399 12.3356C8.71733 12.5617 8.33634 12.5534 8.09972 12.3168L6.01639 10.2334C5.77231 9.98937 5.77231 9.59364 6.01639 9.34956C6.26047 9.10549 6.6562 9.10549 6.90028 9.34956L8.56046 11.0098L13.1193 6.83078C13.3738 6.59754 13.7691 6.61473 14.0024 6.86918C14.2356 7.12363 14.2184 7.51898 13.964 7.75223Z",
|
|
27
|
+
fill: "#888888"
|
|
28
|
+
}));
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
export { IconVerifiedFilled, IconVerifiedFilled as default };
|