@imtf/icons 0.2.0 → 0.2.3

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.
@@ -31,7 +31,7 @@ const EyeIcon = ({
31
31
  fill: color,
32
32
  ref: ref
33
33
  }, props), /*#__PURE__*/createElement("path", {
34
- d: "M12 4C6.54545455 4 1.88727273 7.39272727 0 12.1818182c1.88727273 4.7890909 6.54545455 8.1818182 12 8.1818182 5.4545455 0 10.1127273-3.3927273 12-8.1818182C22.1127273 7.39272727 17.4545455 4 12 4Zm0 13.6363636c-3.01090909 0-5.45454545-2.4436363-5.45454545-5.4545454 0-3.01090911 2.44363636-5.45454547 5.45454545-5.45454547 3.0109091 0 5.4545455 2.44363636 5.4545455 5.45454547 0 3.0109091-2.4436364 5.4545454-5.4545455 5.4545454Zm0-8.72727269c-1.8109091 0-3.27272727 1.46181819-3.27272727 3.27272729 0 1.8109091 1.46181817 3.2727273 3.27272727 3.2727273s3.2727273-1.4618182 3.2727273-3.2727273c0-1.8109091-1.4618182-3.27272729-3.2727273-3.27272729Z"
34
+ d: "M12 9a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m0 8a5 5 0 0 1-5-5 5 5 0 0 1 5-5 5 5 0 0 1 5 5 5 5 0 0 1-5 5m0-12.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5Z"
35
35
  }));
36
36
  };
37
37
 
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function EyeOffIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default EyeOffIcon;
@@ -11,7 +11,7 @@ const {
11
11
 
12
12
  const get = require('lodash.get');
13
13
 
14
- const LogoIcon = ({
14
+ const EyeOffIcon = ({
15
15
  color: defaultColor,
16
16
  size,
17
17
  ...props
@@ -25,23 +25,15 @@ const LogoIcon = ({
25
25
  const color = useMemo(() => get(defaultValues.palette, defaultValues.color, defaultValues.color), [defaultValues.color, defaultValues.palette]);
26
26
  return /*#__PURE__*/createElement("svg", Object.assign({
27
27
  xmlns: "http://www.w3.org/2000/svg",
28
- viewBox: "0 0 159 65",
28
+ viewBox: "0 0 24 24",
29
29
  width: defaultValues.size,
30
30
  height: defaultValues.size,
31
31
  fill: color,
32
32
  ref: ref
33
33
  }, props), /*#__PURE__*/createElement("path", {
34
- d: "M61.98 38.88h-.978l-4.888-9.57-.002 16.349H50.64V19.141h5.264l5.587 11.565 5.768-11.565h5.279v26.518h-5.67V29.31zM23.071 19.141h5.474V45.66h-5.474z"
35
- }), /*#__PURE__*/createElement("path", {
36
- fill: "#D93753",
37
- d: "M14.664 0v4.387l-9.19-.001v56.227h9.19V65H0V0z"
38
- }), /*#__PURE__*/createElement("path", {
39
- d: "M108.122793 19.1411043v4.3865031l-5.865712-.000209.000099 22.1321109h-5.4745713l-.0002993-22.1321109-5.8653134.000209v-4.3865031h17.205797Zm32.065349 0v4.3865031l-8.211957-.000209v6.5798933l7.625396.0000703v4.3865031l-7.625396-.0002792.0001 11.1659234h-5.474572v-26.518405h13.686429Z"
40
- }), /*#__PURE__*/createElement("path", {
41
- fill: "#D93753",
42
- d: "M159 65h-11.564v-4.432h7.228V4.432h-7.228V0H159z"
34
+ d: "M11.83 9 15 12.16V12a3 3 0 0 0-3-3h-.17m-4.3.8 1.55 1.55c-.05.21-.08.42-.08.65a3 3 0 0 0 3 3c.22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53a5 5 0 0 1-5-5c0-.79.2-1.53.53-2.2M2 4.27l2.28 2.28.45.45C3.08 8.3 1.78 10 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.43.42L19.73 22 21 20.73 3.27 3M12 7a5 5 0 0 1 5 5c0 .64-.13 1.26-.36 1.82l2.93 2.93c1.5-1.25 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-4 .7l2.17 2.15C10.74 7.13 11.35 7 12 7Z"
43
35
  }));
44
36
  };
45
37
 
46
- const ForwardRef = forwardRef(LogoIcon);
38
+ const ForwardRef = forwardRef(EyeOffIcon);
47
39
  module.exports = ForwardRef;
@@ -1,3 +1,2 @@
1
1
  export * from './providers';
2
2
  export * from './components';
3
- export * from './icons';
package/lib/cjs/index.js CHANGED
@@ -12,4 +12,3 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
13
  __exportStar(require("./providers"), exports);
14
14
  __exportStar(require("./components"), exports);
15
- __exportStar(require("./icons"), exports);
@@ -22,7 +22,7 @@ const EyeIcon = ({
22
22
  fill: color,
23
23
  ref: ref
24
24
  }, props), /*#__PURE__*/createElement("path", {
25
- d: "M12 4C6.54545455 4 1.88727273 7.39272727 0 12.1818182c1.88727273 4.7890909 6.54545455 8.1818182 12 8.1818182 5.4545455 0 10.1127273-3.3927273 12-8.1818182C22.1127273 7.39272727 17.4545455 4 12 4Zm0 13.6363636c-3.01090909 0-5.45454545-2.4436363-5.45454545-5.4545454 0-3.01090911 2.44363636-5.45454547 5.45454545-5.45454547 3.0109091 0 5.4545455 2.44363636 5.4545455 5.45454547 0 3.0109091-2.4436364 5.4545454-5.4545455 5.4545454Zm0-8.72727269c-1.8109091 0-3.27272727 1.46181819-3.27272727 3.27272729 0 1.8109091 1.46181817 3.2727273 3.27272727 3.2727273s3.2727273-1.4618182 3.2727273-3.2727273c0-1.8109091-1.4618182-3.27272729-3.2727273-3.27272729Z"
25
+ d: "M12 9a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m0 8a5 5 0 0 1-5-5 5 5 0 0 1 5-5 5 5 0 0 1 5 5 5 5 0 0 1-5 5m0-12.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5Z"
26
26
  }));
27
27
  };
28
28
 
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function EyeOffIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default EyeOffIcon;
@@ -0,0 +1,30 @@
1
+ import { createElement, forwardRef, useContext, useMemo } from 'react';
2
+ import { IconContext } from '../index.js';
3
+ import get from 'lodash.get';
4
+
5
+ const EyeOffIcon = ({
6
+ color: defaultColor,
7
+ size,
8
+ ...props
9
+ }, ref) => {
10
+ const defaultContextValues = useContext(IconContext);
11
+ const defaultValues = { ...defaultContextValues,
12
+ color: defaultColor || defaultContextValues.color,
13
+ size: size || defaultContextValues.size,
14
+ ...props
15
+ };
16
+ const color = useMemo(() => get(defaultValues.palette, defaultValues.color, defaultValues.color), [defaultValues.color, defaultValues.palette]);
17
+ return /*#__PURE__*/createElement("svg", Object.assign({
18
+ xmlns: "http://www.w3.org/2000/svg",
19
+ viewBox: "0 0 24 24",
20
+ width: defaultValues.size,
21
+ height: defaultValues.size,
22
+ fill: color,
23
+ ref: ref
24
+ }, props), /*#__PURE__*/createElement("path", {
25
+ d: "M11.83 9 15 12.16V12a3 3 0 0 0-3-3h-.17m-4.3.8 1.55 1.55c-.05.21-.08.42-.08.65a3 3 0 0 0 3 3c.22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53a5 5 0 0 1-5-5c0-.79.2-1.53.53-2.2M2 4.27l2.28 2.28.45.45C3.08 8.3 1.78 10 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.43.42L19.73 22 21 20.73 3.27 3M12 7a5 5 0 0 1 5 5c0 .64-.13 1.26-.36 1.82l2.93 2.93c1.5-1.25 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-4 .7l2.17 2.15C10.74 7.13 11.35 7 12 7Z"
26
+ }));
27
+ };
28
+
29
+ const ForwardRef = /*#__PURE__*/forwardRef(EyeOffIcon);
30
+ export default ForwardRef;
@@ -1,3 +1,2 @@
1
1
  export * from './providers';
2
2
  export * from './components';
3
- export * from './icons';
package/lib/esm/index.js CHANGED
@@ -1,3 +1,2 @@
1
1
  export * from './providers';
2
2
  export * from './components';
3
- export * from './icons';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@imtf/icons",
3
3
  "private": false,
4
- "version": "0.2.0",
4
+ "version": "0.2.3",
5
5
  "description": "Library of icons (React components, font and svg)",
6
6
  "main": "./lib/cjs/index.js",
7
7
  "module": "./lib/esm/index.js",
@@ -26,8 +26,11 @@
26
26
  "watch": "rollup -cw"
27
27
  },
28
28
  "peerDependencies": {
29
- "react": "^17.0.2",
30
- "react-dom": "^17.0.2"
29
+ "react": "^17.0 || ^18.0",
30
+ "react-dom": "^17.0 || ^18.0"
31
+ },
32
+ "dependencies": {
33
+ "lodash.get": "^4.4.2"
31
34
  },
32
35
  "devDependencies": {
33
36
  "@babel/core": "^7.16.0",
@@ -46,8 +49,5 @@
46
49
  "svgo": "^2.8.0",
47
50
  "ts-node": "^10.4.0",
48
51
  "typescript": "^4.4.4"
49
- },
50
- "dependencies": {
51
- "lodash.get": "^4.4.2"
52
52
  }
53
53
  }
package/svg/Eye.svg CHANGED
@@ -1,3 +1,3 @@
1
1
  <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
- <path d="M12 4C6.54545455 4 1.88727273 7.39272727 0 12.1818182c1.88727273 4.7890909 6.54545455 8.1818182 12 8.1818182 5.4545455 0 10.1127273-3.3927273 12-8.1818182C22.1127273 7.39272727 17.4545455 4 12 4Zm0 13.6363636c-3.01090909 0-5.45454545-2.4436363-5.45454545-5.4545454 0-3.01090911 2.44363636-5.45454547 5.45454545-5.45454547 3.0109091 0 5.4545455 2.44363636 5.4545455 5.45454547 0 3.0109091-2.4436364 5.4545454-5.4545455 5.4545454Zm0-8.72727269c-1.8109091 0-3.27272727 1.46181819-3.27272727 3.27272729 0 1.8109091 1.46181817 3.2727273 3.27272727 3.2727273s3.2727273-1.4618182 3.2727273-3.2727273c0-1.8109091-1.4618182-3.27272729-3.2727273-3.27272729Z"/>
2
+ <path d="M12 9a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m0 8a5 5 0 0 1-5-5 5 5 0 0 1 5-5 5 5 0 0 1 5 5 5 5 0 0 1-5 5m0-12.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5Z"/>
3
3
  </svg>
package/svg/EyeOff.svg ADDED
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M11.83 9 15 12.16V12a3 3 0 0 0-3-3h-.17m-4.3.8 1.55 1.55c-.05.21-.08.42-.08.65a3 3 0 0 0 3 3c.22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53a5 5 0 0 1-5-5c0-.79.2-1.53.53-2.2M2 4.27l2.28 2.28.45.45C3.08 8.3 1.78 10 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.43.42L19.73 22 21 20.73 3.27 3M12 7a5 5 0 0 1 5 5c0 .64-.13 1.26-.36 1.82l2.93 2.93c1.5-1.25 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-4 .7l2.17 2.15C10.74 7.13 11.35 7 12 7Z"/>
3
+ </svg>
package/svg/Logo1.svg ADDED
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 138.9 78.66">
2
+ <path d="M34.02 31.36h3.25v15.95h-3.25zm16.83 0h3.27l3.41 6.94 3.53-6.94h3.23v15.95h-3.41V37.24l-3.04 5.95h-.59l-2.98-5.95v10.07h-3.42V31.36zM75.57 34v-2.64h10.57v2.61h-3.52v13.34H79.1V34h-3.53zm21.84 13.31V31.36h8.36v2.61h-4.81v3.98h4.5v2.62h-4.5v6.74h-3.55z"/>
3
+ <path d="M19.84 19.84v38.98h8.86v-2.61h-5.61V22.48h5.61v-2.64h-8.86zm99.22 38.98V19.84h-8.86v2.64h5.61v33.73h-5.61v2.61h8.86z" style="fill:#d73d54"/>
4
+ </svg>
package/svg/eye.json CHANGED
@@ -1,4 +1,6 @@
1
1
  {
2
- "aliases": [],
2
+ "aliases": [
3
+ "visibility"
4
+ ],
3
5
  "description": ""
4
- }
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "aliases": [
3
+ "visibility"
4
+ ],
5
+ "description": ""
6
+ }
package/svg/logo1.json ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "aliases": [],
3
+ "description": ""
4
+ }
@@ -1,7 +0,0 @@
1
- import * as React from 'react';
2
- interface IconProps {
3
- color?: string;
4
- size?: string | number;
5
- }
6
- declare function LogoIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
- export default LogoIcon;
@@ -1,146 +0,0 @@
1
- export { default as AccountIcon } from './AccountIcon';
2
- export { default as AddIcon } from './AddIcon';
3
- export { default as AddCircleIcon } from './AddCircleIcon';
4
- export { default as AdminIcon } from './AdminIcon';
5
- export { default as AlertIcon } from './AlertIcon';
6
- export { default as AlertCircleIcon } from './AlertCircleIcon';
7
- export { default as AlertCircleOutlinedIcon } from './AlertCircleOutlinedIcon';
8
- export { default as AlertLightIcon } from './AlertLightIcon';
9
- export { default as AnnotationsIcon } from './AnnotationsIcon';
10
- export { default as AntiMoneyLaundringIcon } from './AntiMoneyLaundringIcon';
11
- export { default as AppIcon } from './AppIcon';
12
- export { default as ArrowDropDownIcon } from './ArrowDropDownIcon';
13
- export { default as BackIcon } from './BackIcon';
14
- export { default as BackgroundSearchIcon } from './BackgroundSearchIcon';
15
- export { default as BaseDefaultIcon } from './BaseDefaultIcon';
16
- export { default as BindersIcon } from './BindersIcon';
17
- export { default as BinocularsIcon } from './BinocularsIcon';
18
- export { default as BookmarksIcon } from './BookmarksIcon';
19
- export { default as BusinessIcon } from './BusinessIcon';
20
- export { default as CalendarIcon } from './CalendarIcon';
21
- export { default as CancelIcon } from './CancelIcon';
22
- export { default as CaseManagerIcon } from './CaseManagerIcon';
23
- export { default as CheckIcon } from './CheckIcon';
24
- export { default as ChevronDownIcon } from './ChevronDownIcon';
25
- export { default as ChevronLeftIcon } from './ChevronLeftIcon';
26
- export { default as ChevronRightIcon } from './ChevronRightIcon';
27
- export { default as ChevronUpIcon } from './ChevronUpIcon';
28
- export { default as CircleIcon } from './CircleIcon';
29
- export { default as CollapseAllIcon } from './CollapseAllIcon';
30
- export { default as CommentIcon } from './CommentIcon';
31
- export { default as CommentResolvedIcon } from './CommentResolvedIcon';
32
- export { default as CommentUnresolvedIcon } from './CommentUnresolvedIcon';
33
- export { default as CompareIcon } from './CompareIcon';
34
- export { default as ComposeIcon } from './ComposeIcon';
35
- export { default as ComposeFilled1Icon } from './ComposeFilled1Icon';
36
- export { default as ComposeFilled2Icon } from './ComposeFilled2Icon';
37
- export { default as ConfigurationIcon } from './ConfigurationIcon';
38
- export { default as CustomerIcon } from './CustomerIcon';
39
- export { default as DashboardIcon } from './DashboardIcon';
40
- export { default as DefaultIcon } from './DefaultIcon';
41
- export { default as DeleteIcon } from './DeleteIcon';
42
- export { default as DetailsIcon } from './DetailsIcon';
43
- export { default as DocIcon } from './DocIcon';
44
- export { default as DocLinkIcon } from './DocLinkIcon';
45
- export { default as DocumentIcon } from './DocumentIcon';
46
- export { default as DocumentManagementIcon } from './DocumentManagementIcon';
47
- export { default as DossierIcon } from './DossierIcon';
48
- export { default as DownloadIcon } from './DownloadIcon';
49
- export { default as DragIcon } from './DragIcon';
50
- export { default as DragHandleIcon } from './DragHandleIcon';
51
- export { default as DropZoneIcon } from './DropZoneIcon';
52
- export { default as DuplicateIcon } from './DuplicateIcon';
53
- export { default as EditIcon } from './EditIcon';
54
- export { default as EditedIcon } from './EditedIcon';
55
- export { default as EmptyNotificationIcon } from './EmptyNotificationIcon';
56
- export { default as EntityIcon } from './EntityIcon';
57
- export { default as EraseIcon } from './EraseIcon';
58
- export { default as ExpandContentIcon } from './ExpandContentIcon';
59
- export { default as ExternalLinkIcon } from './ExternalLinkIcon';
60
- export { default as EyeIcon } from './EyeIcon';
61
- export { default as FileIcon } from './FileIcon';
62
- export { default as FileArchiveIcon } from './FileArchiveIcon';
63
- export { default as FileImageIcon } from './FileImageIcon';
64
- export { default as FileImageLinkIcon } from './FileImageLinkIcon';
65
- export { default as FileLinkIcon } from './FileLinkIcon';
66
- export { default as FilePdfIcon } from './FilePdfIcon';
67
- export { default as FilePdfLinkIcon } from './FilePdfLinkIcon';
68
- export { default as FileStackIcon } from './FileStackIcon';
69
- export { default as FlagIcon } from './FlagIcon';
70
- export { default as FloppyIcon } from './FloppyIcon';
71
- export { default as FloppyFilledIcon } from './FloppyFilledIcon';
72
- export { default as FolderIcon } from './FolderIcon';
73
- export { default as FolderAddIcon } from './FolderAddIcon';
74
- export { default as FolderOpenIcon } from './FolderOpenIcon';
75
- export { default as FolderTemplateIcon } from './FolderTemplateIcon';
76
- export { default as FormIcon } from './FormIcon';
77
- export { default as FraudDetectionPreventionIcon } from './FraudDetectionPreventionIcon';
78
- export { default as FullscreenIcon } from './FullscreenIcon';
79
- export { default as GaugeIcon } from './GaugeIcon';
80
- export { default as GaugeLightIcon } from './GaugeLightIcon';
81
- export { default as GenerateFileIcon } from './GenerateFileIcon';
82
- export { default as GraphIcon } from './GraphIcon';
83
- export { default as GroupIcon } from './GroupIcon';
84
- export { default as HistoryIcon } from './HistoryIcon';
85
- export { default as HomeIcon } from './HomeIcon';
86
- export { default as HorseIcon } from './HorseIcon';
87
- export { default as InboxIcon } from './InboxIcon';
88
- export { default as InfoIcon } from './InfoIcon';
89
- export { default as InheritableIcon } from './InheritableIcon';
90
- export { default as InkIcon } from './InkIcon';
91
- export { default as LinkIcon } from './LinkIcon';
92
- export { default as LockIcon } from './LockIcon';
93
- export { default as LogoIcon } from './LogoIcon';
94
- export { default as LogoutIcon } from './LogoutIcon';
95
- export { default as MarkerIcon } from './MarkerIcon';
96
- export { default as MenuIcon } from './MenuIcon';
97
- export { default as MinusIcon } from './MinusIcon';
98
- export { default as MoreIcon } from './MoreIcon';
99
- export { default as NameScreeningIcon } from './NameScreeningIcon';
100
- export { default as NewIcon } from './NewIcon';
101
- export { default as NotFoundIcon } from './NotFoundIcon';
102
- export { default as NotificationsOutlineIcon } from './NotificationsOutlineIcon';
103
- export { default as OpenIcon } from './OpenIcon';
104
- export { default as PermissionsIcon } from './PermissionsIcon';
105
- export { default as PersonIcon } from './PersonIcon';
106
- export { default as PinFilledIcon } from './PinFilledIcon';
107
- export { default as PinOutlinedIcon } from './PinOutlinedIcon';
108
- export { default as PlayIcon } from './PlayIcon';
109
- export { default as PptIcon } from './PptIcon';
110
- export { default as PptLinkIcon } from './PptLinkIcon';
111
- export { default as PreviewIcon } from './PreviewIcon';
112
- export { default as PrintIcon } from './PrintIcon';
113
- export { default as QuestionnaireIcon } from './QuestionnaireIcon';
114
- export { default as QuestionnaireErrorIcon } from './QuestionnaireErrorIcon';
115
- export { default as RegulatoryReportingIcon } from './RegulatoryReportingIcon';
116
- export { default as RemoveIcon } from './RemoveIcon';
117
- export { default as RiskScoringIcon } from './RiskScoringIcon';
118
- export { default as RotateRightIcon } from './RotateRightIcon';
119
- export { default as SafeOkIcon } from './SafeOkIcon';
120
- export { default as SafePassiveIcon } from './SafePassiveIcon';
121
- export { default as SafeProgressIcon } from './SafeProgressIcon';
122
- export { default as ScissorsIcon } from './ScissorsIcon';
123
- export { default as SearchIcon } from './SearchIcon';
124
- export { default as SendIcon } from './SendIcon';
125
- export { default as ShieldWarningIcon } from './ShieldWarningIcon';
126
- export { default as SidebarIcon } from './SidebarIcon';
127
- export { default as SidebarCollapsedIcon } from './SidebarCollapsedIcon';
128
- export { default as SidebarExpandedIcon } from './SidebarExpandedIcon';
129
- export { default as SquareIcon } from './SquareIcon';
130
- export { default as StarIcon } from './StarIcon';
131
- export { default as StarBorderIcon } from './StarBorderIcon';
132
- export { default as SystemBotIcon } from './SystemBotIcon';
133
- export { default as TableIcon } from './TableIcon';
134
- export { default as TaskIcon } from './TaskIcon';
135
- export { default as ThumbnailsIcon } from './ThumbnailsIcon';
136
- export { default as TimelapsIcon } from './TimelapsIcon';
137
- export { default as TimelineIcon } from './TimelineIcon';
138
- export { default as ToolsIcon } from './ToolsIcon';
139
- export { default as TransactionsSanctionsScreeningIcon } from './TransactionsSanctionsScreeningIcon';
140
- export { default as TypesIcon } from './TypesIcon';
141
- export { default as UploadIcon } from './UploadIcon';
142
- export { default as ViewTreeIcon } from './ViewTreeIcon';
143
- export { default as WarningIcon } from './WarningIcon';
144
- export { default as WatermarkIcon } from './WatermarkIcon';
145
- export { default as XlsIcon } from './XlsIcon';
146
- export { default as XlsLinkIcon } from './XlsLinkIcon';
@@ -1,146 +0,0 @@
1
- module.exports.AccountIcon = require('./AccountIcon.js');
2
- module.exports.AddIcon = require('./AddIcon.js');
3
- module.exports.AddCircleIcon = require('./AddCircleIcon.js');
4
- module.exports.AdminIcon = require('./AdminIcon.js');
5
- module.exports.AlertIcon = require('./AlertIcon.js');
6
- module.exports.AlertCircleIcon = require('./AlertCircleIcon.js');
7
- module.exports.AlertCircleOutlinedIcon = require('./AlertCircleOutlinedIcon.js');
8
- module.exports.AlertLightIcon = require('./AlertLightIcon.js');
9
- module.exports.AnnotationsIcon = require('./AnnotationsIcon.js');
10
- module.exports.AntiMoneyLaundringIcon = require('./AntiMoneyLaundringIcon.js');
11
- module.exports.AppIcon = require('./AppIcon.js');
12
- module.exports.ArrowDropDownIcon = require('./ArrowDropDownIcon.js');
13
- module.exports.BackIcon = require('./BackIcon.js');
14
- module.exports.BackgroundSearchIcon = require('./BackgroundSearchIcon.js');
15
- module.exports.BaseDefaultIcon = require('./BaseDefaultIcon.js');
16
- module.exports.BindersIcon = require('./BindersIcon.js');
17
- module.exports.BinocularsIcon = require('./BinocularsIcon.js');
18
- module.exports.BookmarksIcon = require('./BookmarksIcon.js');
19
- module.exports.BusinessIcon = require('./BusinessIcon.js');
20
- module.exports.CalendarIcon = require('./CalendarIcon.js');
21
- module.exports.CancelIcon = require('./CancelIcon.js');
22
- module.exports.CaseManagerIcon = require('./CaseManagerIcon.js');
23
- module.exports.CheckIcon = require('./CheckIcon.js');
24
- module.exports.ChevronDownIcon = require('./ChevronDownIcon.js');
25
- module.exports.ChevronLeftIcon = require('./ChevronLeftIcon.js');
26
- module.exports.ChevronRightIcon = require('./ChevronRightIcon.js');
27
- module.exports.ChevronUpIcon = require('./ChevronUpIcon.js');
28
- module.exports.CircleIcon = require('./CircleIcon.js');
29
- module.exports.CollapseAllIcon = require('./CollapseAllIcon.js');
30
- module.exports.CommentIcon = require('./CommentIcon.js');
31
- module.exports.CommentResolvedIcon = require('./CommentResolvedIcon.js');
32
- module.exports.CommentUnresolvedIcon = require('./CommentUnresolvedIcon.js');
33
- module.exports.CompareIcon = require('./CompareIcon.js');
34
- module.exports.ComposeIcon = require('./ComposeIcon.js');
35
- module.exports.ComposeFilled1Icon = require('./ComposeFilled1Icon.js');
36
- module.exports.ComposeFilled2Icon = require('./ComposeFilled2Icon.js');
37
- module.exports.ConfigurationIcon = require('./ConfigurationIcon.js');
38
- module.exports.CustomerIcon = require('./CustomerIcon.js');
39
- module.exports.DashboardIcon = require('./DashboardIcon.js');
40
- module.exports.DefaultIcon = require('./DefaultIcon.js');
41
- module.exports.DeleteIcon = require('./DeleteIcon.js');
42
- module.exports.DetailsIcon = require('./DetailsIcon.js');
43
- module.exports.DocIcon = require('./DocIcon.js');
44
- module.exports.DocLinkIcon = require('./DocLinkIcon.js');
45
- module.exports.DocumentIcon = require('./DocumentIcon.js');
46
- module.exports.DocumentManagementIcon = require('./DocumentManagementIcon.js');
47
- module.exports.DossierIcon = require('./DossierIcon.js');
48
- module.exports.DownloadIcon = require('./DownloadIcon.js');
49
- module.exports.DragIcon = require('./DragIcon.js');
50
- module.exports.DragHandleIcon = require('./DragHandleIcon.js');
51
- module.exports.DropZoneIcon = require('./DropZoneIcon.js');
52
- module.exports.DuplicateIcon = require('./DuplicateIcon.js');
53
- module.exports.EditIcon = require('./EditIcon.js');
54
- module.exports.EditedIcon = require('./EditedIcon.js');
55
- module.exports.EmptyNotificationIcon = require('./EmptyNotificationIcon.js');
56
- module.exports.EntityIcon = require('./EntityIcon.js');
57
- module.exports.EraseIcon = require('./EraseIcon.js');
58
- module.exports.ExpandContentIcon = require('./ExpandContentIcon.js');
59
- module.exports.ExternalLinkIcon = require('./ExternalLinkIcon.js');
60
- module.exports.EyeIcon = require('./EyeIcon.js');
61
- module.exports.FileIcon = require('./FileIcon.js');
62
- module.exports.FileArchiveIcon = require('./FileArchiveIcon.js');
63
- module.exports.FileImageIcon = require('./FileImageIcon.js');
64
- module.exports.FileImageLinkIcon = require('./FileImageLinkIcon.js');
65
- module.exports.FileLinkIcon = require('./FileLinkIcon.js');
66
- module.exports.FilePdfIcon = require('./FilePdfIcon.js');
67
- module.exports.FilePdfLinkIcon = require('./FilePdfLinkIcon.js');
68
- module.exports.FileStackIcon = require('./FileStackIcon.js');
69
- module.exports.FlagIcon = require('./FlagIcon.js');
70
- module.exports.FloppyIcon = require('./FloppyIcon.js');
71
- module.exports.FloppyFilledIcon = require('./FloppyFilledIcon.js');
72
- module.exports.FolderIcon = require('./FolderIcon.js');
73
- module.exports.FolderAddIcon = require('./FolderAddIcon.js');
74
- module.exports.FolderOpenIcon = require('./FolderOpenIcon.js');
75
- module.exports.FolderTemplateIcon = require('./FolderTemplateIcon.js');
76
- module.exports.FormIcon = require('./FormIcon.js');
77
- module.exports.FraudDetectionPreventionIcon = require('./FraudDetectionPreventionIcon.js');
78
- module.exports.FullscreenIcon = require('./FullscreenIcon.js');
79
- module.exports.GaugeIcon = require('./GaugeIcon.js');
80
- module.exports.GaugeLightIcon = require('./GaugeLightIcon.js');
81
- module.exports.GenerateFileIcon = require('./GenerateFileIcon.js');
82
- module.exports.GraphIcon = require('./GraphIcon.js');
83
- module.exports.GroupIcon = require('./GroupIcon.js');
84
- module.exports.HistoryIcon = require('./HistoryIcon.js');
85
- module.exports.HomeIcon = require('./HomeIcon.js');
86
- module.exports.HorseIcon = require('./HorseIcon.js');
87
- module.exports.InboxIcon = require('./InboxIcon.js');
88
- module.exports.InfoIcon = require('./InfoIcon.js');
89
- module.exports.InheritableIcon = require('./InheritableIcon.js');
90
- module.exports.InkIcon = require('./InkIcon.js');
91
- module.exports.LinkIcon = require('./LinkIcon.js');
92
- module.exports.LockIcon = require('./LockIcon.js');
93
- module.exports.LogoIcon = require('./LogoIcon.js');
94
- module.exports.LogoutIcon = require('./LogoutIcon.js');
95
- module.exports.MarkerIcon = require('./MarkerIcon.js');
96
- module.exports.MenuIcon = require('./MenuIcon.js');
97
- module.exports.MinusIcon = require('./MinusIcon.js');
98
- module.exports.MoreIcon = require('./MoreIcon.js');
99
- module.exports.NameScreeningIcon = require('./NameScreeningIcon.js');
100
- module.exports.NewIcon = require('./NewIcon.js');
101
- module.exports.NotFoundIcon = require('./NotFoundIcon.js');
102
- module.exports.NotificationsOutlineIcon = require('./NotificationsOutlineIcon.js');
103
- module.exports.OpenIcon = require('./OpenIcon.js');
104
- module.exports.PermissionsIcon = require('./PermissionsIcon.js');
105
- module.exports.PersonIcon = require('./PersonIcon.js');
106
- module.exports.PinFilledIcon = require('./PinFilledIcon.js');
107
- module.exports.PinOutlinedIcon = require('./PinOutlinedIcon.js');
108
- module.exports.PlayIcon = require('./PlayIcon.js');
109
- module.exports.PptIcon = require('./PptIcon.js');
110
- module.exports.PptLinkIcon = require('./PptLinkIcon.js');
111
- module.exports.PreviewIcon = require('./PreviewIcon.js');
112
- module.exports.PrintIcon = require('./PrintIcon.js');
113
- module.exports.QuestionnaireIcon = require('./QuestionnaireIcon.js');
114
- module.exports.QuestionnaireErrorIcon = require('./QuestionnaireErrorIcon.js');
115
- module.exports.RegulatoryReportingIcon = require('./RegulatoryReportingIcon.js');
116
- module.exports.RemoveIcon = require('./RemoveIcon.js');
117
- module.exports.RiskScoringIcon = require('./RiskScoringIcon.js');
118
- module.exports.RotateRightIcon = require('./RotateRightIcon.js');
119
- module.exports.SafeOkIcon = require('./SafeOkIcon.js');
120
- module.exports.SafePassiveIcon = require('./SafePassiveIcon.js');
121
- module.exports.SafeProgressIcon = require('./SafeProgressIcon.js');
122
- module.exports.ScissorsIcon = require('./ScissorsIcon.js');
123
- module.exports.SearchIcon = require('./SearchIcon.js');
124
- module.exports.SendIcon = require('./SendIcon.js');
125
- module.exports.ShieldWarningIcon = require('./ShieldWarningIcon.js');
126
- module.exports.SidebarIcon = require('./SidebarIcon.js');
127
- module.exports.SidebarCollapsedIcon = require('./SidebarCollapsedIcon.js');
128
- module.exports.SidebarExpandedIcon = require('./SidebarExpandedIcon.js');
129
- module.exports.SquareIcon = require('./SquareIcon.js');
130
- module.exports.StarIcon = require('./StarIcon.js');
131
- module.exports.StarBorderIcon = require('./StarBorderIcon.js');
132
- module.exports.SystemBotIcon = require('./SystemBotIcon.js');
133
- module.exports.TableIcon = require('./TableIcon.js');
134
- module.exports.TaskIcon = require('./TaskIcon.js');
135
- module.exports.ThumbnailsIcon = require('./ThumbnailsIcon.js');
136
- module.exports.TimelapsIcon = require('./TimelapsIcon.js');
137
- module.exports.TimelineIcon = require('./TimelineIcon.js');
138
- module.exports.ToolsIcon = require('./ToolsIcon.js');
139
- module.exports.TransactionsSanctionsScreeningIcon = require('./TransactionsSanctionsScreeningIcon.js');
140
- module.exports.TypesIcon = require('./TypesIcon.js');
141
- module.exports.UploadIcon = require('./UploadIcon.js');
142
- module.exports.ViewTreeIcon = require('./ViewTreeIcon.js');
143
- module.exports.WarningIcon = require('./WarningIcon.js');
144
- module.exports.WatermarkIcon = require('./WatermarkIcon.js');
145
- module.exports.XlsIcon = require('./XlsIcon.js');
146
- module.exports.XlsLinkIcon = require('./XlsLinkIcon.js');
@@ -1,7 +0,0 @@
1
- import * as React from 'react';
2
- interface IconProps {
3
- color?: string;
4
- size?: string | number;
5
- }
6
- declare function LogoIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
- export default LogoIcon;
@@ -1,38 +0,0 @@
1
- import { createElement, forwardRef, useContext, useMemo } from 'react';
2
- import { IconContext } from '../index.js';
3
- import get from 'lodash.get';
4
-
5
- const LogoIcon = ({
6
- color: defaultColor,
7
- size,
8
- ...props
9
- }, ref) => {
10
- const defaultContextValues = useContext(IconContext);
11
- const defaultValues = { ...defaultContextValues,
12
- color: defaultColor || defaultContextValues.color,
13
- size: size || defaultContextValues.size,
14
- ...props
15
- };
16
- const color = useMemo(() => get(defaultValues.palette, defaultValues.color, defaultValues.color), [defaultValues.color, defaultValues.palette]);
17
- return /*#__PURE__*/createElement("svg", Object.assign({
18
- xmlns: "http://www.w3.org/2000/svg",
19
- viewBox: "0 0 159 65",
20
- width: defaultValues.size,
21
- height: defaultValues.size,
22
- fill: color,
23
- ref: ref
24
- }, props), /*#__PURE__*/createElement("path", {
25
- d: "M61.98 38.88h-.978l-4.888-9.57-.002 16.349H50.64V19.141h5.264l5.587 11.565 5.768-11.565h5.279v26.518h-5.67V29.31zM23.071 19.141h5.474V45.66h-5.474z"
26
- }), /*#__PURE__*/createElement("path", {
27
- fill: "#D93753",
28
- d: "M14.664 0v4.387l-9.19-.001v56.227h9.19V65H0V0z"
29
- }), /*#__PURE__*/createElement("path", {
30
- d: "M108.122793 19.1411043v4.3865031l-5.865712-.000209.000099 22.1321109h-5.4745713l-.0002993-22.1321109-5.8653134.000209v-4.3865031h17.205797Zm32.065349 0v4.3865031l-8.211957-.000209v6.5798933l7.625396.0000703v4.3865031l-7.625396-.0002792.0001 11.1659234h-5.474572v-26.518405h13.686429Z"
31
- }), /*#__PURE__*/createElement("path", {
32
- fill: "#D93753",
33
- d: "M159 65h-11.564v-4.432h7.228V4.432h-7.228V0H159z"
34
- }));
35
- };
36
-
37
- const ForwardRef = /*#__PURE__*/forwardRef(LogoIcon);
38
- export default ForwardRef;
@@ -1,146 +0,0 @@
1
- export { default as AccountIcon } from './AccountIcon';
2
- export { default as AddIcon } from './AddIcon';
3
- export { default as AddCircleIcon } from './AddCircleIcon';
4
- export { default as AdminIcon } from './AdminIcon';
5
- export { default as AlertIcon } from './AlertIcon';
6
- export { default as AlertCircleIcon } from './AlertCircleIcon';
7
- export { default as AlertCircleOutlinedIcon } from './AlertCircleOutlinedIcon';
8
- export { default as AlertLightIcon } from './AlertLightIcon';
9
- export { default as AnnotationsIcon } from './AnnotationsIcon';
10
- export { default as AntiMoneyLaundringIcon } from './AntiMoneyLaundringIcon';
11
- export { default as AppIcon } from './AppIcon';
12
- export { default as ArrowDropDownIcon } from './ArrowDropDownIcon';
13
- export { default as BackIcon } from './BackIcon';
14
- export { default as BackgroundSearchIcon } from './BackgroundSearchIcon';
15
- export { default as BaseDefaultIcon } from './BaseDefaultIcon';
16
- export { default as BindersIcon } from './BindersIcon';
17
- export { default as BinocularsIcon } from './BinocularsIcon';
18
- export { default as BookmarksIcon } from './BookmarksIcon';
19
- export { default as BusinessIcon } from './BusinessIcon';
20
- export { default as CalendarIcon } from './CalendarIcon';
21
- export { default as CancelIcon } from './CancelIcon';
22
- export { default as CaseManagerIcon } from './CaseManagerIcon';
23
- export { default as CheckIcon } from './CheckIcon';
24
- export { default as ChevronDownIcon } from './ChevronDownIcon';
25
- export { default as ChevronLeftIcon } from './ChevronLeftIcon';
26
- export { default as ChevronRightIcon } from './ChevronRightIcon';
27
- export { default as ChevronUpIcon } from './ChevronUpIcon';
28
- export { default as CircleIcon } from './CircleIcon';
29
- export { default as CollapseAllIcon } from './CollapseAllIcon';
30
- export { default as CommentIcon } from './CommentIcon';
31
- export { default as CommentResolvedIcon } from './CommentResolvedIcon';
32
- export { default as CommentUnresolvedIcon } from './CommentUnresolvedIcon';
33
- export { default as CompareIcon } from './CompareIcon';
34
- export { default as ComposeIcon } from './ComposeIcon';
35
- export { default as ComposeFilled1Icon } from './ComposeFilled1Icon';
36
- export { default as ComposeFilled2Icon } from './ComposeFilled2Icon';
37
- export { default as ConfigurationIcon } from './ConfigurationIcon';
38
- export { default as CustomerIcon } from './CustomerIcon';
39
- export { default as DashboardIcon } from './DashboardIcon';
40
- export { default as DefaultIcon } from './DefaultIcon';
41
- export { default as DeleteIcon } from './DeleteIcon';
42
- export { default as DetailsIcon } from './DetailsIcon';
43
- export { default as DocIcon } from './DocIcon';
44
- export { default as DocLinkIcon } from './DocLinkIcon';
45
- export { default as DocumentIcon } from './DocumentIcon';
46
- export { default as DocumentManagementIcon } from './DocumentManagementIcon';
47
- export { default as DossierIcon } from './DossierIcon';
48
- export { default as DownloadIcon } from './DownloadIcon';
49
- export { default as DragIcon } from './DragIcon';
50
- export { default as DragHandleIcon } from './DragHandleIcon';
51
- export { default as DropZoneIcon } from './DropZoneIcon';
52
- export { default as DuplicateIcon } from './DuplicateIcon';
53
- export { default as EditIcon } from './EditIcon';
54
- export { default as EditedIcon } from './EditedIcon';
55
- export { default as EmptyNotificationIcon } from './EmptyNotificationIcon';
56
- export { default as EntityIcon } from './EntityIcon';
57
- export { default as EraseIcon } from './EraseIcon';
58
- export { default as ExpandContentIcon } from './ExpandContentIcon';
59
- export { default as ExternalLinkIcon } from './ExternalLinkIcon';
60
- export { default as EyeIcon } from './EyeIcon';
61
- export { default as FileIcon } from './FileIcon';
62
- export { default as FileArchiveIcon } from './FileArchiveIcon';
63
- export { default as FileImageIcon } from './FileImageIcon';
64
- export { default as FileImageLinkIcon } from './FileImageLinkIcon';
65
- export { default as FileLinkIcon } from './FileLinkIcon';
66
- export { default as FilePdfIcon } from './FilePdfIcon';
67
- export { default as FilePdfLinkIcon } from './FilePdfLinkIcon';
68
- export { default as FileStackIcon } from './FileStackIcon';
69
- export { default as FlagIcon } from './FlagIcon';
70
- export { default as FloppyIcon } from './FloppyIcon';
71
- export { default as FloppyFilledIcon } from './FloppyFilledIcon';
72
- export { default as FolderIcon } from './FolderIcon';
73
- export { default as FolderAddIcon } from './FolderAddIcon';
74
- export { default as FolderOpenIcon } from './FolderOpenIcon';
75
- export { default as FolderTemplateIcon } from './FolderTemplateIcon';
76
- export { default as FormIcon } from './FormIcon';
77
- export { default as FraudDetectionPreventionIcon } from './FraudDetectionPreventionIcon';
78
- export { default as FullscreenIcon } from './FullscreenIcon';
79
- export { default as GaugeIcon } from './GaugeIcon';
80
- export { default as GaugeLightIcon } from './GaugeLightIcon';
81
- export { default as GenerateFileIcon } from './GenerateFileIcon';
82
- export { default as GraphIcon } from './GraphIcon';
83
- export { default as GroupIcon } from './GroupIcon';
84
- export { default as HistoryIcon } from './HistoryIcon';
85
- export { default as HomeIcon } from './HomeIcon';
86
- export { default as HorseIcon } from './HorseIcon';
87
- export { default as InboxIcon } from './InboxIcon';
88
- export { default as InfoIcon } from './InfoIcon';
89
- export { default as InheritableIcon } from './InheritableIcon';
90
- export { default as InkIcon } from './InkIcon';
91
- export { default as LinkIcon } from './LinkIcon';
92
- export { default as LockIcon } from './LockIcon';
93
- export { default as LogoIcon } from './LogoIcon';
94
- export { default as LogoutIcon } from './LogoutIcon';
95
- export { default as MarkerIcon } from './MarkerIcon';
96
- export { default as MenuIcon } from './MenuIcon';
97
- export { default as MinusIcon } from './MinusIcon';
98
- export { default as MoreIcon } from './MoreIcon';
99
- export { default as NameScreeningIcon } from './NameScreeningIcon';
100
- export { default as NewIcon } from './NewIcon';
101
- export { default as NotFoundIcon } from './NotFoundIcon';
102
- export { default as NotificationsOutlineIcon } from './NotificationsOutlineIcon';
103
- export { default as OpenIcon } from './OpenIcon';
104
- export { default as PermissionsIcon } from './PermissionsIcon';
105
- export { default as PersonIcon } from './PersonIcon';
106
- export { default as PinFilledIcon } from './PinFilledIcon';
107
- export { default as PinOutlinedIcon } from './PinOutlinedIcon';
108
- export { default as PlayIcon } from './PlayIcon';
109
- export { default as PptIcon } from './PptIcon';
110
- export { default as PptLinkIcon } from './PptLinkIcon';
111
- export { default as PreviewIcon } from './PreviewIcon';
112
- export { default as PrintIcon } from './PrintIcon';
113
- export { default as QuestionnaireIcon } from './QuestionnaireIcon';
114
- export { default as QuestionnaireErrorIcon } from './QuestionnaireErrorIcon';
115
- export { default as RegulatoryReportingIcon } from './RegulatoryReportingIcon';
116
- export { default as RemoveIcon } from './RemoveIcon';
117
- export { default as RiskScoringIcon } from './RiskScoringIcon';
118
- export { default as RotateRightIcon } from './RotateRightIcon';
119
- export { default as SafeOkIcon } from './SafeOkIcon';
120
- export { default as SafePassiveIcon } from './SafePassiveIcon';
121
- export { default as SafeProgressIcon } from './SafeProgressIcon';
122
- export { default as ScissorsIcon } from './ScissorsIcon';
123
- export { default as SearchIcon } from './SearchIcon';
124
- export { default as SendIcon } from './SendIcon';
125
- export { default as ShieldWarningIcon } from './ShieldWarningIcon';
126
- export { default as SidebarIcon } from './SidebarIcon';
127
- export { default as SidebarCollapsedIcon } from './SidebarCollapsedIcon';
128
- export { default as SidebarExpandedIcon } from './SidebarExpandedIcon';
129
- export { default as SquareIcon } from './SquareIcon';
130
- export { default as StarIcon } from './StarIcon';
131
- export { default as StarBorderIcon } from './StarBorderIcon';
132
- export { default as SystemBotIcon } from './SystemBotIcon';
133
- export { default as TableIcon } from './TableIcon';
134
- export { default as TaskIcon } from './TaskIcon';
135
- export { default as ThumbnailsIcon } from './ThumbnailsIcon';
136
- export { default as TimelapsIcon } from './TimelapsIcon';
137
- export { default as TimelineIcon } from './TimelineIcon';
138
- export { default as ToolsIcon } from './ToolsIcon';
139
- export { default as TransactionsSanctionsScreeningIcon } from './TransactionsSanctionsScreeningIcon';
140
- export { default as TypesIcon } from './TypesIcon';
141
- export { default as UploadIcon } from './UploadIcon';
142
- export { default as ViewTreeIcon } from './ViewTreeIcon';
143
- export { default as WarningIcon } from './WarningIcon';
144
- export { default as WatermarkIcon } from './WatermarkIcon';
145
- export { default as XlsIcon } from './XlsIcon';
146
- export { default as XlsLinkIcon } from './XlsLinkIcon';
@@ -1,146 +0,0 @@
1
- export { default as AccountIcon } from './AccountIcon.js';
2
- export { default as AddIcon } from './AddIcon.js';
3
- export { default as AddCircleIcon } from './AddCircleIcon.js';
4
- export { default as AdminIcon } from './AdminIcon.js';
5
- export { default as AlertIcon } from './AlertIcon.js';
6
- export { default as AlertCircleIcon } from './AlertCircleIcon.js';
7
- export { default as AlertCircleOutlinedIcon } from './AlertCircleOutlinedIcon.js';
8
- export { default as AlertLightIcon } from './AlertLightIcon.js';
9
- export { default as AnnotationsIcon } from './AnnotationsIcon.js';
10
- export { default as AntiMoneyLaundringIcon } from './AntiMoneyLaundringIcon.js';
11
- export { default as AppIcon } from './AppIcon.js';
12
- export { default as ArrowDropDownIcon } from './ArrowDropDownIcon.js';
13
- export { default as BackIcon } from './BackIcon.js';
14
- export { default as BackgroundSearchIcon } from './BackgroundSearchIcon.js';
15
- export { default as BaseDefaultIcon } from './BaseDefaultIcon.js';
16
- export { default as BindersIcon } from './BindersIcon.js';
17
- export { default as BinocularsIcon } from './BinocularsIcon.js';
18
- export { default as BookmarksIcon } from './BookmarksIcon.js';
19
- export { default as BusinessIcon } from './BusinessIcon.js';
20
- export { default as CalendarIcon } from './CalendarIcon.js';
21
- export { default as CancelIcon } from './CancelIcon.js';
22
- export { default as CaseManagerIcon } from './CaseManagerIcon.js';
23
- export { default as CheckIcon } from './CheckIcon.js';
24
- export { default as ChevronDownIcon } from './ChevronDownIcon.js';
25
- export { default as ChevronLeftIcon } from './ChevronLeftIcon.js';
26
- export { default as ChevronRightIcon } from './ChevronRightIcon.js';
27
- export { default as ChevronUpIcon } from './ChevronUpIcon.js';
28
- export { default as CircleIcon } from './CircleIcon.js';
29
- export { default as CollapseAllIcon } from './CollapseAllIcon.js';
30
- export { default as CommentIcon } from './CommentIcon.js';
31
- export { default as CommentResolvedIcon } from './CommentResolvedIcon.js';
32
- export { default as CommentUnresolvedIcon } from './CommentUnresolvedIcon.js';
33
- export { default as CompareIcon } from './CompareIcon.js';
34
- export { default as ComposeIcon } from './ComposeIcon.js';
35
- export { default as ComposeFilled1Icon } from './ComposeFilled1Icon.js';
36
- export { default as ComposeFilled2Icon } from './ComposeFilled2Icon.js';
37
- export { default as ConfigurationIcon } from './ConfigurationIcon.js';
38
- export { default as CustomerIcon } from './CustomerIcon.js';
39
- export { default as DashboardIcon } from './DashboardIcon.js';
40
- export { default as DefaultIcon } from './DefaultIcon.js';
41
- export { default as DeleteIcon } from './DeleteIcon.js';
42
- export { default as DetailsIcon } from './DetailsIcon.js';
43
- export { default as DocIcon } from './DocIcon.js';
44
- export { default as DocLinkIcon } from './DocLinkIcon.js';
45
- export { default as DocumentIcon } from './DocumentIcon.js';
46
- export { default as DocumentManagementIcon } from './DocumentManagementIcon.js';
47
- export { default as DossierIcon } from './DossierIcon.js';
48
- export { default as DownloadIcon } from './DownloadIcon.js';
49
- export { default as DragIcon } from './DragIcon.js';
50
- export { default as DragHandleIcon } from './DragHandleIcon.js';
51
- export { default as DropZoneIcon } from './DropZoneIcon.js';
52
- export { default as DuplicateIcon } from './DuplicateIcon.js';
53
- export { default as EditIcon } from './EditIcon.js';
54
- export { default as EditedIcon } from './EditedIcon.js';
55
- export { default as EmptyNotificationIcon } from './EmptyNotificationIcon.js';
56
- export { default as EntityIcon } from './EntityIcon.js';
57
- export { default as EraseIcon } from './EraseIcon.js';
58
- export { default as ExpandContentIcon } from './ExpandContentIcon.js';
59
- export { default as ExternalLinkIcon } from './ExternalLinkIcon.js';
60
- export { default as EyeIcon } from './EyeIcon.js';
61
- export { default as FileIcon } from './FileIcon.js';
62
- export { default as FileArchiveIcon } from './FileArchiveIcon.js';
63
- export { default as FileImageIcon } from './FileImageIcon.js';
64
- export { default as FileImageLinkIcon } from './FileImageLinkIcon.js';
65
- export { default as FileLinkIcon } from './FileLinkIcon.js';
66
- export { default as FilePdfIcon } from './FilePdfIcon.js';
67
- export { default as FilePdfLinkIcon } from './FilePdfLinkIcon.js';
68
- export { default as FileStackIcon } from './FileStackIcon.js';
69
- export { default as FlagIcon } from './FlagIcon.js';
70
- export { default as FloppyIcon } from './FloppyIcon.js';
71
- export { default as FloppyFilledIcon } from './FloppyFilledIcon.js';
72
- export { default as FolderIcon } from './FolderIcon.js';
73
- export { default as FolderAddIcon } from './FolderAddIcon.js';
74
- export { default as FolderOpenIcon } from './FolderOpenIcon.js';
75
- export { default as FolderTemplateIcon } from './FolderTemplateIcon.js';
76
- export { default as FormIcon } from './FormIcon.js';
77
- export { default as FraudDetectionPreventionIcon } from './FraudDetectionPreventionIcon.js';
78
- export { default as FullscreenIcon } from './FullscreenIcon.js';
79
- export { default as GaugeIcon } from './GaugeIcon.js';
80
- export { default as GaugeLightIcon } from './GaugeLightIcon.js';
81
- export { default as GenerateFileIcon } from './GenerateFileIcon.js';
82
- export { default as GraphIcon } from './GraphIcon.js';
83
- export { default as GroupIcon } from './GroupIcon.js';
84
- export { default as HistoryIcon } from './HistoryIcon.js';
85
- export { default as HomeIcon } from './HomeIcon.js';
86
- export { default as HorseIcon } from './HorseIcon.js';
87
- export { default as InboxIcon } from './InboxIcon.js';
88
- export { default as InfoIcon } from './InfoIcon.js';
89
- export { default as InheritableIcon } from './InheritableIcon.js';
90
- export { default as InkIcon } from './InkIcon.js';
91
- export { default as LinkIcon } from './LinkIcon.js';
92
- export { default as LockIcon } from './LockIcon.js';
93
- export { default as LogoIcon } from './LogoIcon.js';
94
- export { default as LogoutIcon } from './LogoutIcon.js';
95
- export { default as MarkerIcon } from './MarkerIcon.js';
96
- export { default as MenuIcon } from './MenuIcon.js';
97
- export { default as MinusIcon } from './MinusIcon.js';
98
- export { default as MoreIcon } from './MoreIcon.js';
99
- export { default as NameScreeningIcon } from './NameScreeningIcon.js';
100
- export { default as NewIcon } from './NewIcon.js';
101
- export { default as NotFoundIcon } from './NotFoundIcon.js';
102
- export { default as NotificationsOutlineIcon } from './NotificationsOutlineIcon.js';
103
- export { default as OpenIcon } from './OpenIcon.js';
104
- export { default as PermissionsIcon } from './PermissionsIcon.js';
105
- export { default as PersonIcon } from './PersonIcon.js';
106
- export { default as PinFilledIcon } from './PinFilledIcon.js';
107
- export { default as PinOutlinedIcon } from './PinOutlinedIcon.js';
108
- export { default as PlayIcon } from './PlayIcon.js';
109
- export { default as PptIcon } from './PptIcon.js';
110
- export { default as PptLinkIcon } from './PptLinkIcon.js';
111
- export { default as PreviewIcon } from './PreviewIcon.js';
112
- export { default as PrintIcon } from './PrintIcon.js';
113
- export { default as QuestionnaireIcon } from './QuestionnaireIcon.js';
114
- export { default as QuestionnaireErrorIcon } from './QuestionnaireErrorIcon.js';
115
- export { default as RegulatoryReportingIcon } from './RegulatoryReportingIcon.js';
116
- export { default as RemoveIcon } from './RemoveIcon.js';
117
- export { default as RiskScoringIcon } from './RiskScoringIcon.js';
118
- export { default as RotateRightIcon } from './RotateRightIcon.js';
119
- export { default as SafeOkIcon } from './SafeOkIcon.js';
120
- export { default as SafePassiveIcon } from './SafePassiveIcon.js';
121
- export { default as SafeProgressIcon } from './SafeProgressIcon.js';
122
- export { default as ScissorsIcon } from './ScissorsIcon.js';
123
- export { default as SearchIcon } from './SearchIcon.js';
124
- export { default as SendIcon } from './SendIcon.js';
125
- export { default as ShieldWarningIcon } from './ShieldWarningIcon.js';
126
- export { default as SidebarIcon } from './SidebarIcon.js';
127
- export { default as SidebarCollapsedIcon } from './SidebarCollapsedIcon.js';
128
- export { default as SidebarExpandedIcon } from './SidebarExpandedIcon.js';
129
- export { default as SquareIcon } from './SquareIcon.js';
130
- export { default as StarIcon } from './StarIcon.js';
131
- export { default as StarBorderIcon } from './StarBorderIcon.js';
132
- export { default as SystemBotIcon } from './SystemBotIcon.js';
133
- export { default as TableIcon } from './TableIcon.js';
134
- export { default as TaskIcon } from './TaskIcon.js';
135
- export { default as ThumbnailsIcon } from './ThumbnailsIcon.js';
136
- export { default as TimelapsIcon } from './TimelapsIcon.js';
137
- export { default as TimelineIcon } from './TimelineIcon.js';
138
- export { default as ToolsIcon } from './ToolsIcon.js';
139
- export { default as TransactionsSanctionsScreeningIcon } from './TransactionsSanctionsScreeningIcon.js';
140
- export { default as TypesIcon } from './TypesIcon.js';
141
- export { default as UploadIcon } from './UploadIcon.js';
142
- export { default as ViewTreeIcon } from './ViewTreeIcon.js';
143
- export { default as WarningIcon } from './WarningIcon.js';
144
- export { default as WatermarkIcon } from './WatermarkIcon.js';
145
- export { default as XlsIcon } from './XlsIcon.js';
146
- export { default as XlsLinkIcon } from './XlsLinkIcon.js';