a-icons 1.2.35 → 1.2.37

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.
Files changed (48) hide show
  1. package/es/DocumentErrorFilled.d.ts +6 -0
  2. package/es/DocumentErrorFilled.js +36 -0
  3. package/es/DocumentPassFilled.d.ts +6 -0
  4. package/es/DocumentPassFilled.js +31 -0
  5. package/es/DocumentTextFilled.d.ts +6 -0
  6. package/es/DocumentTextFilled.js +36 -0
  7. package/es/DocumentVoteFilled.d.ts +6 -0
  8. package/es/DocumentVoteFilled.js +31 -0
  9. package/es/FileTextOutlined.d.ts +6 -0
  10. package/es/FileTextOutlined.js +40 -0
  11. package/es/PeopleTieOutlined.d.ts +6 -0
  12. package/es/PeopleTieOutlined.js +34 -0
  13. package/es/index.d.ts +6 -0
  14. package/es/index.js +6 -0
  15. package/lib/DocumentErrorFilled.d.ts +6 -0
  16. package/lib/DocumentErrorFilled.js +79 -0
  17. package/lib/DocumentPassFilled.d.ts +6 -0
  18. package/lib/DocumentPassFilled.js +74 -0
  19. package/lib/DocumentTextFilled.d.ts +6 -0
  20. package/lib/DocumentTextFilled.js +79 -0
  21. package/lib/DocumentVoteFilled.d.ts +6 -0
  22. package/lib/DocumentVoteFilled.js +74 -0
  23. package/lib/FileTextOutlined.d.ts +6 -0
  24. package/lib/FileTextOutlined.js +83 -0
  25. package/lib/PeopleTieOutlined.d.ts +6 -0
  26. package/lib/PeopleTieOutlined.js +77 -0
  27. package/lib/index.d.ts +6 -0
  28. package/lib/index.js +48 -6
  29. package/package.json +3 -3
  30. package/src/DocumentErrorFilled.tsx +21 -0
  31. package/src/DocumentPassFilled.tsx +18 -0
  32. package/src/DocumentTextFilled.tsx +21 -0
  33. package/src/DocumentVoteFilled.tsx +18 -0
  34. package/src/FileTextOutlined.tsx +28 -0
  35. package/src/PeopleTieOutlined.tsx +22 -0
  36. package/src/index.tsx +6 -0
  37. package/svgs/filled/document-error-filled.svg +6 -0
  38. package/svgs/filled/document-pass-filled.svg +5 -0
  39. package/svgs/filled/document-text-filled.svg +6 -0
  40. package/svgs/filled/document-vote-filled.svg +5 -0
  41. package/svgs/outlined/file-text-outlined.svg +7 -0
  42. package/svgs/outlined/people-tie-outlined.svg +11 -0
  43. package/tmpAllSvgs/document-error-filled.svg +6 -0
  44. package/tmpAllSvgs/document-pass-filled.svg +5 -0
  45. package/tmpAllSvgs/document-text-filled.svg +6 -0
  46. package/tmpAllSvgs/document-vote-filled.svg +5 -0
  47. package/tmpAllSvgs/file-text-outlined.svg +7 -0
  48. package/tmpAllSvgs/people-tie-outlined.svg +11 -0
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function DocumentErrorFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace DocumentErrorFilled {
4
+ var displayName: string;
5
+ }
6
+ export default DocumentErrorFilled;
@@ -0,0 +1,36 @@
1
+ var __assign = this && this.__assign || function () {
2
+ __assign = Object.assign || function (t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) {
6
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
7
+ }
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ import * as React from 'react';
14
+ import Icon from 'a-base-icon/lib/icon';
15
+ function DocumentErrorFilled(componentProps) {
16
+ var IconNode = function IconNode(props) {
17
+ return /*#__PURE__*/React.createElement("svg", __assign({
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ xmlns: "http://www.w3.org/2000/svg"
21
+ }, props), /*#__PURE__*/React.createElement("path", {
22
+ fillRule: "evenodd",
23
+ clipRule: "evenodd",
24
+ d: "M13 7a2 2 0 002 2h6v8.241c0 .805 0 1.47-.044 2.011-.046.562-.144 1.08-.392 1.564a4.002 4.002 0 01-1.748 1.748c-.485.248-1.002.346-1.564.392-.541.044-1.206.044-2.01.044H8.758c-.805 0-1.47 0-2.011-.044-.562-.046-1.08-.144-1.564-.392a4.001 4.001 0 01-1.748-1.748c-.248-.485-.346-1.002-.392-1.564C3 18.711 3 18.046 3 17.242V6.758c0-.805 0-1.47.044-2.011.046-.562.144-1.08.392-1.564a4.001 4.001 0 011.748-1.748c.485-.248 1.002-.346 1.564-.392C7.29 1 7.954 1 8.758 1H13v6zm-1 6.488l-2.5-2.5-1.414 1.414 2.5 2.5-2.5 2.5L9.5 18.816l2.5-2.5 2.5 2.5 1.414-1.414-2.5-2.5 2.5-2.5-1.414-1.414-2.5 2.5z",
25
+ fill: "currentColor"
26
+ }), /*#__PURE__*/React.createElement("path", {
27
+ d: "M20.414 7H15V1.586L20.414 7z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
32
+ component: IconNode
33
+ }));
34
+ }
35
+ DocumentErrorFilled.displayName = 'DocumentErrorFilled';
36
+ export default DocumentErrorFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function DocumentPassFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace DocumentPassFilled {
4
+ var displayName: string;
5
+ }
6
+ export default DocumentPassFilled;
@@ -0,0 +1,31 @@
1
+ var __assign = this && this.__assign || function () {
2
+ __assign = Object.assign || function (t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) {
6
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
7
+ }
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ import * as React from 'react';
14
+ import Icon from 'a-base-icon/lib/icon';
15
+ function DocumentPassFilled(componentProps) {
16
+ var IconNode = function IconNode(props) {
17
+ return /*#__PURE__*/React.createElement("svg", __assign({
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ xmlns: "http://www.w3.org/2000/svg"
21
+ }, props), /*#__PURE__*/React.createElement("path", {
22
+ d: "M14.432 1c.252 0 .498 0 .707.017.228.018.498.063.77.2a2 2 0 01.873.875c.138.271.183.54.201.77l.01.146c.394.013.733.046 1.042.129a4 4 0 012.83 2.828C21 6.476 21 7.067 21 7.862v9.38c0 .804 0 1.469-.044 2.01-.046.562-.144 1.08-.392 1.564a4.002 4.002 0 01-1.748 1.748c-.485.248-1.002.346-1.564.392-.541.044-1.206.044-2.01.044H8.758c-.805 0-1.47 0-2.011-.044-.562-.046-1.078-.145-1.563-.392a4.002 4.002 0 01-1.748-1.748c-.248-.485-.347-1.002-.393-1.564C3 18.711 3 18.046 3 17.242v-9.38c0-.795 0-1.386.137-1.897a4 4 0 012.828-2.828c.31-.083.648-.116 1.043-.13.002-.05.005-.099.009-.146.018-.228.063-.498.2-.77a2 2 0 01.875-.873c.271-.139.542-.183.77-.201C9.07 1 9.316 1 9.568 1h4.864zM11 15.586l-2-2L7.586 15l2.707 2.707a1 1 0 001.414 0l5.207-5.207-1.414-1.414-4.5 4.5zM9.6 3c-.296 0-.459.001-.576.01l-.012.002-.001.012C9 3.141 9 3.304 9 3.6v.8c0 .297.001.459.01.576l.002.012.012.001c.117.01.28.011.577.011h4.8c.296 0 .458-.001.575-.01l.012-.002.002-.012c.01-.117.01-.28.01-.576v-.8c0-.297 0-.459-.01-.576l-.002-.012-.012-.001A8.102 8.102 0 0014.4 3H9.6z",
23
+ fill: "currentColor"
24
+ }));
25
+ };
26
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
27
+ component: IconNode
28
+ }));
29
+ }
30
+ DocumentPassFilled.displayName = 'DocumentPassFilled';
31
+ export default DocumentPassFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function DocumentTextFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace DocumentTextFilled {
4
+ var displayName: string;
5
+ }
6
+ export default DocumentTextFilled;
@@ -0,0 +1,36 @@
1
+ var __assign = this && this.__assign || function () {
2
+ __assign = Object.assign || function (t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) {
6
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
7
+ }
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ import * as React from 'react';
14
+ import Icon from 'a-base-icon/lib/icon';
15
+ function DocumentTextFilled(componentProps) {
16
+ var IconNode = function IconNode(props) {
17
+ return /*#__PURE__*/React.createElement("svg", __assign({
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ xmlns: "http://www.w3.org/2000/svg"
21
+ }, props), /*#__PURE__*/React.createElement("path", {
22
+ d: "M20.414 7L15 1.586V7h5.414z",
23
+ fill: "currentColor"
24
+ }), /*#__PURE__*/React.createElement("path", {
25
+ fillRule: "evenodd",
26
+ clipRule: "evenodd",
27
+ d: "M21 9h-6a2 2 0 01-2-2V1H8.759c-.805 0-1.47 0-2.01.044-.563.046-1.08.145-1.565.392a4 4 0 00-1.748 1.748c-.247.485-.346 1.002-.392 1.564C3 5.29 3 5.954 3 6.758v10.483c0 .805 0 1.47.044 2.01.046.563.145 1.08.392 1.565a4 4 0 001.748 1.748c.485.247 1.002.346 1.564.392C7.29 23 7.954 23 8.758 23h6.483c.805 0 1.47 0 2.01-.044.563-.046 1.08-.145 1.565-.392a4 4 0 001.748-1.748c.247-.485.346-1.002.392-1.564.044-.541.044-1.206.044-2.01V9zM7 12h10v2H7v-2zm0 4h10v2H7v-2z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
32
+ component: IconNode
33
+ }));
34
+ }
35
+ DocumentTextFilled.displayName = 'DocumentTextFilled';
36
+ export default DocumentTextFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function DocumentVoteFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace DocumentVoteFilled {
4
+ var displayName: string;
5
+ }
6
+ export default DocumentVoteFilled;
@@ -0,0 +1,31 @@
1
+ var __assign = this && this.__assign || function () {
2
+ __assign = Object.assign || function (t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) {
6
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
7
+ }
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ import * as React from 'react';
14
+ import Icon from 'a-base-icon/lib/icon';
15
+ function DocumentVoteFilled(componentProps) {
16
+ var IconNode = function IconNode(props) {
17
+ return /*#__PURE__*/React.createElement("svg", __assign({
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ xmlns: "http://www.w3.org/2000/svg"
21
+ }, props), /*#__PURE__*/React.createElement("path", {
22
+ d: "M14.432 1c.252 0 .498 0 .707.017.228.018.498.063.77.2a2 2 0 01.873.875c.138.271.183.54.201.77l.01.146c.394.013.733.046 1.042.129a4 4 0 012.83 2.828C21 6.476 21 7.067 21 7.862v9.38c0 .804 0 1.469-.044 2.01-.046.562-.144 1.08-.392 1.564a4.002 4.002 0 01-1.748 1.748c-.485.248-1.002.346-1.564.392-.541.044-1.206.044-2.01.044H8.758c-.805 0-1.47 0-2.011-.044-.562-.046-1.078-.145-1.563-.392a4.002 4.002 0 01-1.748-1.748c-.248-.485-.347-1.002-.393-1.564C3 18.711 3 18.046 3 17.242v-9.38c0-.795 0-1.386.137-1.897a4 4 0 012.828-2.828c.31-.083.648-.116 1.043-.13.002-.05.005-.099.009-.146.018-.228.063-.498.2-.77a2 2 0 01.875-.873c.271-.139.542-.183.77-.201C9.07 1 9.316 1 9.568 1h4.864zM12 13.086l-2.5-2.5L8.086 12l2.5 2.5-2.5 2.5L9.5 18.414l2.5-2.5 2.5 2.5L15.914 17l-2.5-2.5 2.5-2.5-1.414-1.414-2.5 2.5zM9.6 3c-.296 0-.459.001-.576.01l-.012.002-.001.012C9 3.141 9 3.304 9 3.6v.8c0 .297.001.459.01.576l.002.012.012.001c.117.01.28.011.577.011h4.8c.296 0 .458-.001.575-.01l.012-.002.002-.012c.01-.117.01-.28.01-.576v-.8c0-.297 0-.459-.01-.576l-.002-.012-.012-.001A8.102 8.102 0 0014.4 3H9.6z",
23
+ fill: "currentColor"
24
+ }));
25
+ };
26
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
27
+ component: IconNode
28
+ }));
29
+ }
30
+ DocumentVoteFilled.displayName = 'DocumentVoteFilled';
31
+ export default DocumentVoteFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function FileTextOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace FileTextOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default FileTextOutlined;
@@ -0,0 +1,40 @@
1
+ var __assign = this && this.__assign || function () {
2
+ __assign = Object.assign || function (t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) {
6
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
7
+ }
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ import * as React from 'react';
14
+ import Icon from 'a-base-icon/lib/icon';
15
+ function FileTextOutlined(componentProps) {
16
+ var IconNode = function IconNode(props) {
17
+ return /*#__PURE__*/React.createElement("svg", __assign({
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ xmlns: "http://www.w3.org/2000/svg"
21
+ }, props), /*#__PURE__*/React.createElement("path", {
22
+ d: "M13 7l-1.116-2.231c-.32-.642-.481-.963-.72-1.198a2 2 0 00-.748-.462C10.1 3 9.74 3 9.022 3H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 00-.874.874C2 4.52 2 5.08 2 6.2V7m0 0h15.2c1.68 0 2.52 0 3.162.327a3 3 0 011.311 1.311C22 9.28 22 10.12 22 11.8v4.4c0 1.68 0 2.52-.327 3.162a3 3 0 01-1.311 1.311C19.72 21 18.88 21 17.2 21H6.8c-1.68 0-2.52 0-3.162-.327a3 3 0 01-1.311-1.311C2 18.72 2 17.88 2 16.2V7z",
23
+ stroke: "currentColor",
24
+ strokeWidth: 2,
25
+ strokeLinecap: "round",
26
+ strokeLinejoin: "round"
27
+ }), /*#__PURE__*/React.createElement("path", {
28
+ d: "M15.5 16.08h-7m7-4h-7",
29
+ stroke: "currentColor",
30
+ strokeWidth: 2,
31
+ strokeLinecap: "square",
32
+ strokeLinejoin: "round"
33
+ }));
34
+ };
35
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
36
+ component: IconNode
37
+ }));
38
+ }
39
+ FileTextOutlined.displayName = 'FileTextOutlined';
40
+ export default FileTextOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function PeopleTieOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace PeopleTieOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default PeopleTieOutlined;
@@ -0,0 +1,34 @@
1
+ var __assign = this && this.__assign || function () {
2
+ __assign = Object.assign || function (t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) {
6
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
7
+ }
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ import * as React from 'react';
14
+ import Icon from 'a-base-icon/lib/icon';
15
+ function PeopleTieOutlined(componentProps) {
16
+ var IconNode = function IconNode(props) {
17
+ return /*#__PURE__*/React.createElement("svg", __assign({
18
+ viewBox: "0 0 24 24",
19
+ fill: "none",
20
+ xmlns: "http://www.w3.org/2000/svg"
21
+ }, props), /*#__PURE__*/React.createElement("path", {
22
+ d: "M14.286 5.286A2.286 2.286 0 1012 7.571v2l-.221-.005a4.286 4.286 0 01-4.06-4.06l-.006-.22A4.287 4.287 0 0112.001 1l.22.006a4.286 4.286 0 014.065 4.28l-.006.22A4.285 4.285 0 0112 9.57v-2a2.286 2.286 0 002.286-2.285zM18.714 15.143c0-1.413-1.087-2.56-2.428-2.56H7.714c-1.34 0-2.428 1.147-2.428 2.56v6.824h-2v-6.823c0-2.578 1.983-4.668 4.428-4.668h8.572c2.445 0 4.428 2.09 4.428 4.667v6.824h-2v-6.823z",
23
+ fill: "currentColor"
24
+ }), /*#__PURE__*/React.createElement("path", {
25
+ d: "M12 14.084a.84.84 0 01.735.462l2.572 4.85c.214.404.121.919-.216 1.204l-2.571 2.174a.793.793 0 01-1.04 0L8.91 20.6c-.338-.285-.43-.8-.217-1.204l2.572-4.85.063-.102a.826.826 0 01.672-.36zm-1.463 5.541L12 20.862l1.462-1.237L12 16.867l-1.463 2.758z",
26
+ fill: "currentColor"
27
+ }));
28
+ };
29
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
30
+ component: IconNode
31
+ }));
32
+ }
33
+ PeopleTieOutlined.displayName = 'PeopleTieOutlined';
34
+ export default PeopleTieOutlined;
package/es/index.d.ts CHANGED
@@ -116,8 +116,12 @@ export { default as DiamondMoneyFilled } from './DiamondMoneyFilled';
116
116
  export { default as DiamondMoneyOutlined } from './DiamondMoneyOutlined';
117
117
  export { default as DisplayerOutlined } from './DisplayerOutlined';
118
118
  export { default as DocumentEditOutlined } from './DocumentEditOutlined';
119
+ export { default as DocumentErrorFilled } from './DocumentErrorFilled';
119
120
  export { default as DocumentFilled } from './DocumentFilled';
120
121
  export { default as DocumentOutlined } from './DocumentOutlined';
122
+ export { default as DocumentPassFilled } from './DocumentPassFilled';
123
+ export { default as DocumentTextFilled } from './DocumentTextFilled';
124
+ export { default as DocumentVoteFilled } from './DocumentVoteFilled';
121
125
  export { default as DollarInCircleOutlined } from './DollarInCircleOutlined';
122
126
  export { default as DollarOutlined } from './DollarOutlined';
123
127
  export { default as DotsOutlined } from './DotsOutlined';
@@ -159,6 +163,7 @@ export { default as FileListFilled } from './FileListFilled';
159
163
  export { default as FileOutlined } from './FileOutlined';
160
164
  export { default as FileSearchFilled } from './FileSearchFilled';
161
165
  export { default as FileShieldOutlined } from './FileShieldOutlined';
166
+ export { default as FileTextOutlined } from './FileTextOutlined';
162
167
  export { default as FilletFileListFilled } from './FilletFileListFilled';
163
168
  export { default as FilletFileListOutlined } from './FilletFileListOutlined';
164
169
  export { default as FilterCupOutlined } from './FilterCupOutlined';
@@ -274,6 +279,7 @@ export { default as PeopleQuestionFilled } from './PeopleQuestionFilled';
274
279
  export { default as PeopleSettingFilled } from './PeopleSettingFilled';
275
280
  export { default as PeopleTeamFilled } from './PeopleTeamFilled';
276
281
  export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
282
+ export { default as PeopleTieOutlined } from './PeopleTieOutlined';
277
283
  export { default as PersonGroupFilled } from './PersonGroupFilled';
278
284
  export { default as PersonLeftArrowFilled } from './PersonLeftArrowFilled';
279
285
  export { default as PersonTransferFilled } from './PersonTransferFilled';
package/es/index.js CHANGED
@@ -116,8 +116,12 @@ export { default as DiamondMoneyFilled } from './DiamondMoneyFilled';
116
116
  export { default as DiamondMoneyOutlined } from './DiamondMoneyOutlined';
117
117
  export { default as DisplayerOutlined } from './DisplayerOutlined';
118
118
  export { default as DocumentEditOutlined } from './DocumentEditOutlined';
119
+ export { default as DocumentErrorFilled } from './DocumentErrorFilled';
119
120
  export { default as DocumentFilled } from './DocumentFilled';
120
121
  export { default as DocumentOutlined } from './DocumentOutlined';
122
+ export { default as DocumentPassFilled } from './DocumentPassFilled';
123
+ export { default as DocumentTextFilled } from './DocumentTextFilled';
124
+ export { default as DocumentVoteFilled } from './DocumentVoteFilled';
121
125
  export { default as DollarInCircleOutlined } from './DollarInCircleOutlined';
122
126
  export { default as DollarOutlined } from './DollarOutlined';
123
127
  export { default as DotsOutlined } from './DotsOutlined';
@@ -159,6 +163,7 @@ export { default as FileListFilled } from './FileListFilled';
159
163
  export { default as FileOutlined } from './FileOutlined';
160
164
  export { default as FileSearchFilled } from './FileSearchFilled';
161
165
  export { default as FileShieldOutlined } from './FileShieldOutlined';
166
+ export { default as FileTextOutlined } from './FileTextOutlined';
162
167
  export { default as FilletFileListFilled } from './FilletFileListFilled';
163
168
  export { default as FilletFileListOutlined } from './FilletFileListOutlined';
164
169
  export { default as FilterCupOutlined } from './FilterCupOutlined';
@@ -274,6 +279,7 @@ export { default as PeopleQuestionFilled } from './PeopleQuestionFilled';
274
279
  export { default as PeopleSettingFilled } from './PeopleSettingFilled';
275
280
  export { default as PeopleTeamFilled } from './PeopleTeamFilled';
276
281
  export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
282
+ export { default as PeopleTieOutlined } from './PeopleTieOutlined';
277
283
  export { default as PersonGroupFilled } from './PersonGroupFilled';
278
284
  export { default as PersonLeftArrowFilled } from './PersonLeftArrowFilled';
279
285
  export { default as PersonTransferFilled } from './PersonTransferFilled';
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function DocumentErrorFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace DocumentErrorFilled {
4
+ var displayName: string;
5
+ }
6
+ export default DocumentErrorFilled;
@@ -0,0 +1,79 @@
1
+ "use strict";
2
+
3
+ var __assign = this && this.__assign || function () {
4
+ __assign = Object.assign || function (t) {
5
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
6
+ s = arguments[i];
7
+ for (var p in s) {
8
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
9
+ }
10
+ }
11
+ return t;
12
+ };
13
+ return __assign.apply(this, arguments);
14
+ };
15
+ var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ var desc = Object.getOwnPropertyDescriptor(m, k);
18
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
19
+ desc = {
20
+ enumerable: true,
21
+ get: function get() {
22
+ return m[k];
23
+ }
24
+ };
25
+ }
26
+ Object.defineProperty(o, k2, desc);
27
+ } : function (o, m, k, k2) {
28
+ if (k2 === undefined) k2 = k;
29
+ o[k2] = m[k];
30
+ });
31
+ var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
32
+ Object.defineProperty(o, "default", {
33
+ enumerable: true,
34
+ value: v
35
+ });
36
+ } : function (o, v) {
37
+ o["default"] = v;
38
+ });
39
+ var __importStar = this && this.__importStar || function (mod) {
40
+ if (mod && mod.__esModule) return mod;
41
+ var result = {};
42
+ if (mod != null) for (var k in mod) {
43
+ if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
44
+ }
45
+ __setModuleDefault(result, mod);
46
+ return result;
47
+ };
48
+ var __importDefault = this && this.__importDefault || function (mod) {
49
+ return mod && mod.__esModule ? mod : {
50
+ "default": mod
51
+ };
52
+ };
53
+ Object.defineProperty(exports, "__esModule", {
54
+ value: true
55
+ });
56
+ var React = __importStar(require("react"));
57
+ var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
58
+ function DocumentErrorFilled(componentProps) {
59
+ var IconNode = function IconNode(props) {
60
+ return React.createElement("svg", __assign({
61
+ viewBox: "0 0 24 24",
62
+ fill: "none",
63
+ xmlns: "http://www.w3.org/2000/svg"
64
+ }, props), React.createElement("path", {
65
+ fillRule: "evenodd",
66
+ clipRule: "evenodd",
67
+ d: "M13 7a2 2 0 002 2h6v8.241c0 .805 0 1.47-.044 2.011-.046.562-.144 1.08-.392 1.564a4.002 4.002 0 01-1.748 1.748c-.485.248-1.002.346-1.564.392-.541.044-1.206.044-2.01.044H8.758c-.805 0-1.47 0-2.011-.044-.562-.046-1.08-.144-1.564-.392a4.001 4.001 0 01-1.748-1.748c-.248-.485-.346-1.002-.392-1.564C3 18.711 3 18.046 3 17.242V6.758c0-.805 0-1.47.044-2.011.046-.562.144-1.08.392-1.564a4.001 4.001 0 011.748-1.748c.485-.248 1.002-.346 1.564-.392C7.29 1 7.954 1 8.758 1H13v6zm-1 6.488l-2.5-2.5-1.414 1.414 2.5 2.5-2.5 2.5L9.5 18.816l2.5-2.5 2.5 2.5 1.414-1.414-2.5-2.5 2.5-2.5-1.414-1.414-2.5 2.5z",
68
+ fill: "currentColor"
69
+ }), React.createElement("path", {
70
+ d: "M20.414 7H15V1.586L20.414 7z",
71
+ fill: "currentColor"
72
+ }));
73
+ };
74
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
75
+ component: IconNode
76
+ }));
77
+ }
78
+ DocumentErrorFilled.displayName = 'DocumentErrorFilled';
79
+ exports["default"] = DocumentErrorFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function DocumentPassFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace DocumentPassFilled {
4
+ var displayName: string;
5
+ }
6
+ export default DocumentPassFilled;
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+
3
+ var __assign = this && this.__assign || function () {
4
+ __assign = Object.assign || function (t) {
5
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
6
+ s = arguments[i];
7
+ for (var p in s) {
8
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
9
+ }
10
+ }
11
+ return t;
12
+ };
13
+ return __assign.apply(this, arguments);
14
+ };
15
+ var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ var desc = Object.getOwnPropertyDescriptor(m, k);
18
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
19
+ desc = {
20
+ enumerable: true,
21
+ get: function get() {
22
+ return m[k];
23
+ }
24
+ };
25
+ }
26
+ Object.defineProperty(o, k2, desc);
27
+ } : function (o, m, k, k2) {
28
+ if (k2 === undefined) k2 = k;
29
+ o[k2] = m[k];
30
+ });
31
+ var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
32
+ Object.defineProperty(o, "default", {
33
+ enumerable: true,
34
+ value: v
35
+ });
36
+ } : function (o, v) {
37
+ o["default"] = v;
38
+ });
39
+ var __importStar = this && this.__importStar || function (mod) {
40
+ if (mod && mod.__esModule) return mod;
41
+ var result = {};
42
+ if (mod != null) for (var k in mod) {
43
+ if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
44
+ }
45
+ __setModuleDefault(result, mod);
46
+ return result;
47
+ };
48
+ var __importDefault = this && this.__importDefault || function (mod) {
49
+ return mod && mod.__esModule ? mod : {
50
+ "default": mod
51
+ };
52
+ };
53
+ Object.defineProperty(exports, "__esModule", {
54
+ value: true
55
+ });
56
+ var React = __importStar(require("react"));
57
+ var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
58
+ function DocumentPassFilled(componentProps) {
59
+ var IconNode = function IconNode(props) {
60
+ return React.createElement("svg", __assign({
61
+ viewBox: "0 0 24 24",
62
+ fill: "none",
63
+ xmlns: "http://www.w3.org/2000/svg"
64
+ }, props), React.createElement("path", {
65
+ d: "M14.432 1c.252 0 .498 0 .707.017.228.018.498.063.77.2a2 2 0 01.873.875c.138.271.183.54.201.77l.01.146c.394.013.733.046 1.042.129a4 4 0 012.83 2.828C21 6.476 21 7.067 21 7.862v9.38c0 .804 0 1.469-.044 2.01-.046.562-.144 1.08-.392 1.564a4.002 4.002 0 01-1.748 1.748c-.485.248-1.002.346-1.564.392-.541.044-1.206.044-2.01.044H8.758c-.805 0-1.47 0-2.011-.044-.562-.046-1.078-.145-1.563-.392a4.002 4.002 0 01-1.748-1.748c-.248-.485-.347-1.002-.393-1.564C3 18.711 3 18.046 3 17.242v-9.38c0-.795 0-1.386.137-1.897a4 4 0 012.828-2.828c.31-.083.648-.116 1.043-.13.002-.05.005-.099.009-.146.018-.228.063-.498.2-.77a2 2 0 01.875-.873c.271-.139.542-.183.77-.201C9.07 1 9.316 1 9.568 1h4.864zM11 15.586l-2-2L7.586 15l2.707 2.707a1 1 0 001.414 0l5.207-5.207-1.414-1.414-4.5 4.5zM9.6 3c-.296 0-.459.001-.576.01l-.012.002-.001.012C9 3.141 9 3.304 9 3.6v.8c0 .297.001.459.01.576l.002.012.012.001c.117.01.28.011.577.011h4.8c.296 0 .458-.001.575-.01l.012-.002.002-.012c.01-.117.01-.28.01-.576v-.8c0-.297 0-.459-.01-.576l-.002-.012-.012-.001A8.102 8.102 0 0014.4 3H9.6z",
66
+ fill: "currentColor"
67
+ }));
68
+ };
69
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
70
+ component: IconNode
71
+ }));
72
+ }
73
+ DocumentPassFilled.displayName = 'DocumentPassFilled';
74
+ exports["default"] = DocumentPassFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function DocumentTextFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace DocumentTextFilled {
4
+ var displayName: string;
5
+ }
6
+ export default DocumentTextFilled;
@@ -0,0 +1,79 @@
1
+ "use strict";
2
+
3
+ var __assign = this && this.__assign || function () {
4
+ __assign = Object.assign || function (t) {
5
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
6
+ s = arguments[i];
7
+ for (var p in s) {
8
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
9
+ }
10
+ }
11
+ return t;
12
+ };
13
+ return __assign.apply(this, arguments);
14
+ };
15
+ var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ var desc = Object.getOwnPropertyDescriptor(m, k);
18
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
19
+ desc = {
20
+ enumerable: true,
21
+ get: function get() {
22
+ return m[k];
23
+ }
24
+ };
25
+ }
26
+ Object.defineProperty(o, k2, desc);
27
+ } : function (o, m, k, k2) {
28
+ if (k2 === undefined) k2 = k;
29
+ o[k2] = m[k];
30
+ });
31
+ var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
32
+ Object.defineProperty(o, "default", {
33
+ enumerable: true,
34
+ value: v
35
+ });
36
+ } : function (o, v) {
37
+ o["default"] = v;
38
+ });
39
+ var __importStar = this && this.__importStar || function (mod) {
40
+ if (mod && mod.__esModule) return mod;
41
+ var result = {};
42
+ if (mod != null) for (var k in mod) {
43
+ if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
44
+ }
45
+ __setModuleDefault(result, mod);
46
+ return result;
47
+ };
48
+ var __importDefault = this && this.__importDefault || function (mod) {
49
+ return mod && mod.__esModule ? mod : {
50
+ "default": mod
51
+ };
52
+ };
53
+ Object.defineProperty(exports, "__esModule", {
54
+ value: true
55
+ });
56
+ var React = __importStar(require("react"));
57
+ var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
58
+ function DocumentTextFilled(componentProps) {
59
+ var IconNode = function IconNode(props) {
60
+ return React.createElement("svg", __assign({
61
+ viewBox: "0 0 24 24",
62
+ fill: "none",
63
+ xmlns: "http://www.w3.org/2000/svg"
64
+ }, props), React.createElement("path", {
65
+ d: "M20.414 7L15 1.586V7h5.414z",
66
+ fill: "currentColor"
67
+ }), React.createElement("path", {
68
+ fillRule: "evenodd",
69
+ clipRule: "evenodd",
70
+ d: "M21 9h-6a2 2 0 01-2-2V1H8.759c-.805 0-1.47 0-2.01.044-.563.046-1.08.145-1.565.392a4 4 0 00-1.748 1.748c-.247.485-.346 1.002-.392 1.564C3 5.29 3 5.954 3 6.758v10.483c0 .805 0 1.47.044 2.01.046.563.145 1.08.392 1.565a4 4 0 001.748 1.748c.485.247 1.002.346 1.564.392C7.29 23 7.954 23 8.758 23h6.483c.805 0 1.47 0 2.01-.044.563-.046 1.08-.145 1.565-.392a4 4 0 001.748-1.748c.247-.485.346-1.002.392-1.564.044-.541.044-1.206.044-2.01V9zM7 12h10v2H7v-2zm0 4h10v2H7v-2z",
71
+ fill: "currentColor"
72
+ }));
73
+ };
74
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
75
+ component: IconNode
76
+ }));
77
+ }
78
+ DocumentTextFilled.displayName = 'DocumentTextFilled';
79
+ exports["default"] = DocumentTextFilled;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function DocumentVoteFilled(componentProps: IconProps): JSX.Element;
3
+ declare namespace DocumentVoteFilled {
4
+ var displayName: string;
5
+ }
6
+ export default DocumentVoteFilled;