@imtf/icons 0.2.9 → 0.2.10
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/lib/cjs/icons/ActiveOriginArchiveIcon.d.ts +7 -0
- package/lib/cjs/icons/ActiveOriginArchiveIcon.js +48 -0
- package/lib/cjs/icons/ArchivedIcon.d.ts +7 -0
- package/lib/cjs/icons/ArchivedIcon.js +44 -0
- package/lib/cjs/icons/PassivatedIcon.d.ts +7 -0
- package/lib/cjs/icons/PassivatedIcon.js +46 -0
- package/lib/cjs/icons/PassiveOriginArchiveIcon.d.ts +7 -0
- package/lib/cjs/icons/PassiveOriginArchiveIcon.js +43 -0
- package/lib/cjs/icons/SentToArchiveIcon.d.ts +7 -0
- package/lib/cjs/icons/SentToArchiveIcon.js +43 -0
- package/lib/cjs/icons/SentToPassivateIcon.d.ts +7 -0
- package/lib/cjs/icons/SentToPassivateIcon.js +46 -0
- package/lib/cjs/icons/index.d.ts +7 -1
- package/lib/cjs/icons/index.js +7 -1
- package/lib/esm/icons/ActiveOriginArchiveIcon.d.ts +7 -0
- package/lib/esm/icons/ActiveOriginArchiveIcon.js +39 -0
- package/lib/esm/icons/ArchivedIcon.d.ts +7 -0
- package/lib/esm/icons/ArchivedIcon.js +35 -0
- package/lib/esm/icons/PassivatedIcon.d.ts +7 -0
- package/lib/esm/icons/PassivatedIcon.js +37 -0
- package/lib/esm/icons/PassiveOriginArchiveIcon.d.ts +7 -0
- package/lib/esm/icons/PassiveOriginArchiveIcon.js +34 -0
- package/lib/esm/icons/SentToArchiveIcon.d.ts +7 -0
- package/lib/esm/icons/SentToArchiveIcon.js +34 -0
- package/lib/esm/icons/SentToPassivateIcon.d.ts +7 -0
- package/lib/esm/icons/SentToPassivateIcon.js +37 -0
- package/lib/esm/icons/index.d.ts +7 -1
- package/lib/esm/icons/index.js +7 -1
- package/package.json +1 -1
- package/svg/ActiveOriginArchive.svg +5 -0
- package/svg/Archived.svg +5 -0
- package/svg/{logo.json → Logo.json} +0 -0
- package/svg/Passivated.svg +6 -0
- package/svg/PassiveOriginArchive.svg +4 -0
- package/svg/SentToArchive.svg +4 -0
- package/svg/SentToPassivate.svg +5 -0
- package/svg/activeOriginArchive.json +4 -0
- package/svg/archived.json +4 -0
- package/svg/passivated.json +4 -0
- package/svg/passiveOriginArchive.json +4 -0
- package/svg/sentToArchive.json +4 -0
- package/svg/sentToPassivate.json +4 -0
- package/svg/Development.svg +0 -3
- package/svg/development.json +0 -4
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
const {
|
|
2
|
+
createElement,
|
|
3
|
+
forwardRef,
|
|
4
|
+
useContext,
|
|
5
|
+
useMemo
|
|
6
|
+
} = require('react');
|
|
7
|
+
|
|
8
|
+
const {
|
|
9
|
+
IconContext
|
|
10
|
+
} = require('../index.js');
|
|
11
|
+
|
|
12
|
+
const get = require('lodash.get');
|
|
13
|
+
|
|
14
|
+
const ActiveOriginArchiveIcon = ({
|
|
15
|
+
color: defaultColor,
|
|
16
|
+
size,
|
|
17
|
+
...props
|
|
18
|
+
}, ref) => {
|
|
19
|
+
const defaultContextValues = useContext(IconContext);
|
|
20
|
+
const defaultValues = { ...defaultContextValues,
|
|
21
|
+
color: defaultColor || defaultContextValues.color,
|
|
22
|
+
size: size || defaultContextValues.size,
|
|
23
|
+
...props
|
|
24
|
+
};
|
|
25
|
+
const color = useMemo(() => get(defaultValues.palette, defaultValues.color, defaultValues.color), [defaultValues.color, defaultValues.palette]);
|
|
26
|
+
return /*#__PURE__*/createElement("svg", Object.assign({
|
|
27
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28
|
+
fill: color,
|
|
29
|
+
viewBox: "0 0 18 18",
|
|
30
|
+
width: defaultValues.size,
|
|
31
|
+
height: defaultValues.size,
|
|
32
|
+
ref: ref
|
|
33
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
34
|
+
fill: "#000",
|
|
35
|
+
d: "M0 1c0-.552285.447715-1 1-1h12c.5523 0 1 .447715 1 1 0 .55228-.4477 1-1 1H1c-.552284 0-1-.44772-1-1Z"
|
|
36
|
+
}), /*#__PURE__*/createElement("path", {
|
|
37
|
+
fill: "#000",
|
|
38
|
+
fillRule: "evenodd",
|
|
39
|
+
d: "M1 3h12v7H7.58578l3.80002 3.8-.2.2H2c-.55228 0-1-.4477-1-1V3Zm9 2H4v1h6V5Z",
|
|
40
|
+
clipRule: "evenodd"
|
|
41
|
+
}), /*#__PURE__*/createElement("path", {
|
|
42
|
+
fill: "#000",
|
|
43
|
+
d: "M10 11h7v7l-2.8-2.8-2.8 2.8-1.4-1.4 2.8-2.8L10 11Z"
|
|
44
|
+
}));
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
const ForwardRef = forwardRef(ActiveOriginArchiveIcon);
|
|
48
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
const {
|
|
2
|
+
createElement,
|
|
3
|
+
forwardRef,
|
|
4
|
+
useContext,
|
|
5
|
+
useMemo
|
|
6
|
+
} = require('react');
|
|
7
|
+
|
|
8
|
+
const {
|
|
9
|
+
IconContext
|
|
10
|
+
} = require('../index.js');
|
|
11
|
+
|
|
12
|
+
const get = require('lodash.get');
|
|
13
|
+
|
|
14
|
+
const ArchivedIcon = ({
|
|
15
|
+
color: defaultColor,
|
|
16
|
+
size,
|
|
17
|
+
...props
|
|
18
|
+
}, ref) => {
|
|
19
|
+
const defaultContextValues = useContext(IconContext);
|
|
20
|
+
const defaultValues = { ...defaultContextValues,
|
|
21
|
+
color: defaultColor || defaultContextValues.color,
|
|
22
|
+
size: size || defaultContextValues.size,
|
|
23
|
+
...props
|
|
24
|
+
};
|
|
25
|
+
const color = useMemo(() => get(defaultValues.palette, defaultValues.color, defaultValues.color), [defaultValues.color, defaultValues.palette]);
|
|
26
|
+
return /*#__PURE__*/createElement("svg", Object.assign({
|
|
27
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28
|
+
fill: color,
|
|
29
|
+
viewBox: "0 0 18 18",
|
|
30
|
+
width: defaultValues.size,
|
|
31
|
+
height: defaultValues.size,
|
|
32
|
+
ref: ref
|
|
33
|
+
}, props), /*#__PURE__*/createElement("g", {
|
|
34
|
+
clipPath: "url(#a)"
|
|
35
|
+
}, /*#__PURE__*/createElement("path", {
|
|
36
|
+
fill: "#000",
|
|
37
|
+
stroke: "#000",
|
|
38
|
+
strokeWidth: 2,
|
|
39
|
+
d: "M14 7V6H4v4h10V7ZM1 2V1h16v1H1Zm15 3v12H2V5h14Z"
|
|
40
|
+
})));
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
const ForwardRef = forwardRef(ArchivedIcon);
|
|
44
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
const {
|
|
2
|
+
createElement,
|
|
3
|
+
forwardRef,
|
|
4
|
+
useContext,
|
|
5
|
+
useMemo
|
|
6
|
+
} = require('react');
|
|
7
|
+
|
|
8
|
+
const {
|
|
9
|
+
IconContext
|
|
10
|
+
} = require('../index.js');
|
|
11
|
+
|
|
12
|
+
const get = require('lodash.get');
|
|
13
|
+
|
|
14
|
+
const PassivatedIcon = ({
|
|
15
|
+
color: defaultColor,
|
|
16
|
+
size,
|
|
17
|
+
...props
|
|
18
|
+
}, ref) => {
|
|
19
|
+
const defaultContextValues = useContext(IconContext);
|
|
20
|
+
const defaultValues = { ...defaultContextValues,
|
|
21
|
+
color: defaultColor || defaultContextValues.color,
|
|
22
|
+
size: size || defaultContextValues.size,
|
|
23
|
+
...props
|
|
24
|
+
};
|
|
25
|
+
const color = useMemo(() => get(defaultValues.palette, defaultValues.color, defaultValues.color), [defaultValues.color, defaultValues.palette]);
|
|
26
|
+
return /*#__PURE__*/createElement("svg", Object.assign({
|
|
27
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28
|
+
fill: color,
|
|
29
|
+
viewBox: "0 0 18 18",
|
|
30
|
+
width: defaultValues.size,
|
|
31
|
+
height: defaultValues.size,
|
|
32
|
+
ref: ref
|
|
33
|
+
}, props), /*#__PURE__*/createElement("g", {
|
|
34
|
+
fill: "#000",
|
|
35
|
+
clipPath: "url(#a)"
|
|
36
|
+
}, /*#__PURE__*/createElement("path", {
|
|
37
|
+
d: "M0 1c0-.552285.447715-1 1-1h16c.5523 0 1 .447715 1 1v1c0 .55228-.4477 1-1 1H1c-.552284 0-1-.44772-1-1V1Zm6.17071 8C6.58254 7.83481 7.69378 7 9 7c1.3062 0 2.4175.83481 2.8293 2H6.17071ZM9 11c-.55229 0-1 .4477-1 1s.44771 1 1 1c.55228 0 1-.4477 1-1s-.44772-1-1-1Z"
|
|
38
|
+
}), /*#__PURE__*/createElement("path", {
|
|
39
|
+
fillRule: "evenodd",
|
|
40
|
+
d: "M1 4h16v13c0 .5523-.4477 1-1 1H2c-.55228 0-1-.4477-1-1V4Zm12 6v4c0 .5523-.4477 1-1 1H6c-.55228 0-1-.4477-1-1v-4c0-2.20914 1.79086-4 4-4 2.2091 0 4 1.79086 4 4Z",
|
|
41
|
+
clipRule: "evenodd"
|
|
42
|
+
})));
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
const ForwardRef = forwardRef(PassivatedIcon);
|
|
46
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
const {
|
|
2
|
+
createElement,
|
|
3
|
+
forwardRef,
|
|
4
|
+
useContext,
|
|
5
|
+
useMemo
|
|
6
|
+
} = require('react');
|
|
7
|
+
|
|
8
|
+
const {
|
|
9
|
+
IconContext
|
|
10
|
+
} = require('../index.js');
|
|
11
|
+
|
|
12
|
+
const get = require('lodash.get');
|
|
13
|
+
|
|
14
|
+
const PassiveOriginArchiveIcon = ({
|
|
15
|
+
color: defaultColor,
|
|
16
|
+
size,
|
|
17
|
+
...props
|
|
18
|
+
}, ref) => {
|
|
19
|
+
const defaultContextValues = useContext(IconContext);
|
|
20
|
+
const defaultValues = { ...defaultContextValues,
|
|
21
|
+
color: defaultColor || defaultContextValues.color,
|
|
22
|
+
size: size || defaultContextValues.size,
|
|
23
|
+
...props
|
|
24
|
+
};
|
|
25
|
+
const color = useMemo(() => get(defaultValues.palette, defaultValues.color, defaultValues.color), [defaultValues.color, defaultValues.palette]);
|
|
26
|
+
return /*#__PURE__*/createElement("svg", Object.assign({
|
|
27
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28
|
+
fill: color,
|
|
29
|
+
viewBox: "0 0 18 18",
|
|
30
|
+
width: defaultValues.size,
|
|
31
|
+
height: defaultValues.size,
|
|
32
|
+
ref: ref
|
|
33
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
34
|
+
fill: "#000",
|
|
35
|
+
d: "M1 0C.447715 0 0 .447715 0 1c0 .55228.447716 1 1 1h12c.5523 0 1-.44772 1-1 0-.552285-.4477-1-1-1H1Zm0 3h12v7h-2V8c0-2.20914-1.79086-4-4-4S3 5.79086 3 8v3c0 .5523.44772 1 1 1h5.58578l1.80002 1.8-.2.2H2c-.55228 0-1-.4477-1-1V3Z"
|
|
36
|
+
}), /*#__PURE__*/createElement("path", {
|
|
37
|
+
fill: "#000",
|
|
38
|
+
d: "M7 5c1.30622 0 2.41746.83481 2.82929 2H4.17071C4.58254 5.83481 5.69378 5 7 5Zm5.8 8.8L10 16.6l1.4 1.4 2.8-2.8L17 18v-7h-7l2.8 2.8ZM6 9c0-.55229.44772-1 1-1s1 .44771 1 1c0 .55228-.44772 1-1 1s-1-.44772-1-1Z"
|
|
39
|
+
}));
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
const ForwardRef = forwardRef(PassiveOriginArchiveIcon);
|
|
43
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
const {
|
|
2
|
+
createElement,
|
|
3
|
+
forwardRef,
|
|
4
|
+
useContext,
|
|
5
|
+
useMemo
|
|
6
|
+
} = require('react');
|
|
7
|
+
|
|
8
|
+
const {
|
|
9
|
+
IconContext
|
|
10
|
+
} = require('../index.js');
|
|
11
|
+
|
|
12
|
+
const get = require('lodash.get');
|
|
13
|
+
|
|
14
|
+
const SentToArchiveIcon = ({
|
|
15
|
+
color: defaultColor,
|
|
16
|
+
size,
|
|
17
|
+
...props
|
|
18
|
+
}, ref) => {
|
|
19
|
+
const defaultContextValues = useContext(IconContext);
|
|
20
|
+
const defaultValues = { ...defaultContextValues,
|
|
21
|
+
color: defaultColor || defaultContextValues.color,
|
|
22
|
+
size: size || defaultContextValues.size,
|
|
23
|
+
...props
|
|
24
|
+
};
|
|
25
|
+
const color = useMemo(() => get(defaultValues.palette, defaultValues.color, defaultValues.color), [defaultValues.color, defaultValues.palette]);
|
|
26
|
+
return /*#__PURE__*/createElement("svg", Object.assign({
|
|
27
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28
|
+
fill: color,
|
|
29
|
+
viewBox: "0 0 18 18",
|
|
30
|
+
width: defaultValues.size,
|
|
31
|
+
height: defaultValues.size,
|
|
32
|
+
ref: ref
|
|
33
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
34
|
+
fill: "#000",
|
|
35
|
+
d: "M7 4c0-.55228.44772-1 1-1h9c.5523 0 1 .44772 1 1s-.4477 1-1 1H8c-.55228 0-1-.44772-1-1Zm3.5621 5.00003L8 11.1351V14c0 .5523.44771 1 1 1h7c.5523 0 1-.4477 1-1V6H8v.86498l2.001 1.66753C10.0003 8.52176 10 8.51092 10 8.5c0-.27614.2239-.5.5-.5h4c.2761 0 .5.22386.5.5s-.2239.5-.5.5l-3.9379.00003Z"
|
|
36
|
+
}), /*#__PURE__*/createElement("path", {
|
|
37
|
+
fill: "#000",
|
|
38
|
+
d: "M9.00001 9.00003 3 14v-3H0V7h3V4l6.00001 5.00003Z"
|
|
39
|
+
}));
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
const ForwardRef = forwardRef(SentToArchiveIcon);
|
|
43
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
const {
|
|
2
|
+
createElement,
|
|
3
|
+
forwardRef,
|
|
4
|
+
useContext,
|
|
5
|
+
useMemo
|
|
6
|
+
} = require('react');
|
|
7
|
+
|
|
8
|
+
const {
|
|
9
|
+
IconContext
|
|
10
|
+
} = require('../index.js');
|
|
11
|
+
|
|
12
|
+
const get = require('lodash.get');
|
|
13
|
+
|
|
14
|
+
const SentToPassivateIcon = ({
|
|
15
|
+
color: defaultColor,
|
|
16
|
+
size,
|
|
17
|
+
...props
|
|
18
|
+
}, ref) => {
|
|
19
|
+
const defaultContextValues = useContext(IconContext);
|
|
20
|
+
const defaultValues = { ...defaultContextValues,
|
|
21
|
+
color: defaultColor || defaultContextValues.color,
|
|
22
|
+
size: size || defaultContextValues.size,
|
|
23
|
+
...props
|
|
24
|
+
};
|
|
25
|
+
const color = useMemo(() => get(defaultValues.palette, defaultValues.color, defaultValues.color), [defaultValues.color, defaultValues.palette]);
|
|
26
|
+
return /*#__PURE__*/createElement("svg", Object.assign({
|
|
27
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28
|
+
fill: color,
|
|
29
|
+
viewBox: "0 0 18 18",
|
|
30
|
+
width: defaultValues.size,
|
|
31
|
+
height: defaultValues.size,
|
|
32
|
+
ref: ref
|
|
33
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
34
|
+
fill: "#000",
|
|
35
|
+
d: "M8 3c-.55228 0-1 .44772-1 1s.44771 1 1 1h9c.5523 0 1-.44772 1-1s-.4477-1-1-1H8Zm.99998 6.00001L3 14v-3H0V7h3V4l5.99998 5.00001Z"
|
|
36
|
+
}), /*#__PURE__*/createElement("path", {
|
|
37
|
+
fill: "#000",
|
|
38
|
+
d: "M10.1468 8.65397C10.4935 7.68961 11.4162 7 12.5 7 13.8807 7 15 8.11929 15 9.5V13h-5V9.5l.0002-.03175L8 11.1351V14c0 .5523.44771 1 1 1h7c.5523 0 1-.4477 1-1V6H8v.86498l2.1468 1.78899Z"
|
|
39
|
+
}), /*#__PURE__*/createElement("path", {
|
|
40
|
+
fill: "#000",
|
|
41
|
+
d: "M11 10v-.5c0-.82843.6716-1.5 1.5-1.5s1.5.67157 1.5 1.5v.5h-3Zm2 2v-1h-1v1h1Z"
|
|
42
|
+
}));
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
const ForwardRef = forwardRef(SentToPassivateIcon);
|
|
46
|
+
module.exports = ForwardRef;
|
package/lib/cjs/icons/index.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
export { default as LogoIcon } from './LogoIcon';
|
|
1
2
|
export { default as AccountIcon } from './AccountIcon';
|
|
3
|
+
export { default as ActiveOriginArchiveIcon } from './ActiveOriginArchiveIcon';
|
|
2
4
|
export { default as AddIcon } from './AddIcon';
|
|
3
5
|
export { default as AddCircleIcon } from './AddCircleIcon';
|
|
4
6
|
export { default as AdminIcon } from './AdminIcon';
|
|
@@ -9,6 +11,7 @@ export { default as AlertLightIcon } from './AlertLightIcon';
|
|
|
9
11
|
export { default as AnnotationsIcon } from './AnnotationsIcon';
|
|
10
12
|
export { default as AntiMoneyLaundringIcon } from './AntiMoneyLaundringIcon';
|
|
11
13
|
export { default as AppIcon } from './AppIcon';
|
|
14
|
+
export { default as ArchivedIcon } from './ArchivedIcon';
|
|
12
15
|
export { default as ArrowDropDownIcon } from './ArrowDropDownIcon';
|
|
13
16
|
export { default as BackIcon } from './BackIcon';
|
|
14
17
|
export { default as BackgroundSearchIcon } from './BackgroundSearchIcon';
|
|
@@ -96,7 +99,6 @@ export { default as InkIcon } from './InkIcon';
|
|
|
96
99
|
export { default as LegalEntityIcon } from './LegalEntityIcon';
|
|
97
100
|
export { default as LinkIcon } from './LinkIcon';
|
|
98
101
|
export { default as LockIcon } from './LockIcon';
|
|
99
|
-
export { default as LogoIcon } from './LogoIcon';
|
|
100
102
|
export { default as LogoutIcon } from './LogoutIcon';
|
|
101
103
|
export { default as MarkerIcon } from './MarkerIcon';
|
|
102
104
|
export { default as MenuIcon } from './MenuIcon';
|
|
@@ -109,6 +111,8 @@ export { default as NotFoundIcon } from './NotFoundIcon';
|
|
|
109
111
|
export { default as NotificationsOutlineIcon } from './NotificationsOutlineIcon';
|
|
110
112
|
export { default as OpenIcon } from './OpenIcon';
|
|
111
113
|
export { default as OutgoingIcon } from './OutgoingIcon';
|
|
114
|
+
export { default as PassivatedIcon } from './PassivatedIcon';
|
|
115
|
+
export { default as PassiveOriginArchiveIcon } from './PassiveOriginArchiveIcon';
|
|
112
116
|
export { default as PermissionsIcon } from './PermissionsIcon';
|
|
113
117
|
export { default as PersonIcon } from './PersonIcon';
|
|
114
118
|
export { default as PinFilledIcon } from './PinFilledIcon';
|
|
@@ -130,6 +134,8 @@ export { default as SafeProgressIcon } from './SafeProgressIcon';
|
|
|
130
134
|
export { default as ScissorsIcon } from './ScissorsIcon';
|
|
131
135
|
export { default as SearchIcon } from './SearchIcon';
|
|
132
136
|
export { default as SendIcon } from './SendIcon';
|
|
137
|
+
export { default as SentToArchiveIcon } from './SentToArchiveIcon';
|
|
138
|
+
export { default as SentToPassivateIcon } from './SentToPassivateIcon';
|
|
133
139
|
export { default as ShieldWarningIcon } from './ShieldWarningIcon';
|
|
134
140
|
export { default as SidebarIcon } from './SidebarIcon';
|
|
135
141
|
export { default as SidebarCollapsedIcon } from './SidebarCollapsedIcon';
|
package/lib/cjs/icons/index.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
module.exports.LogoIcon = require('./LogoIcon.js');
|
|
1
2
|
module.exports.AccountIcon = require('./AccountIcon.js');
|
|
3
|
+
module.exports.ActiveOriginArchiveIcon = require('./ActiveOriginArchiveIcon.js');
|
|
2
4
|
module.exports.AddIcon = require('./AddIcon.js');
|
|
3
5
|
module.exports.AddCircleIcon = require('./AddCircleIcon.js');
|
|
4
6
|
module.exports.AdminIcon = require('./AdminIcon.js');
|
|
@@ -9,6 +11,7 @@ module.exports.AlertLightIcon = require('./AlertLightIcon.js');
|
|
|
9
11
|
module.exports.AnnotationsIcon = require('./AnnotationsIcon.js');
|
|
10
12
|
module.exports.AntiMoneyLaundringIcon = require('./AntiMoneyLaundringIcon.js');
|
|
11
13
|
module.exports.AppIcon = require('./AppIcon.js');
|
|
14
|
+
module.exports.ArchivedIcon = require('./ArchivedIcon.js');
|
|
12
15
|
module.exports.ArrowDropDownIcon = require('./ArrowDropDownIcon.js');
|
|
13
16
|
module.exports.BackIcon = require('./BackIcon.js');
|
|
14
17
|
module.exports.BackgroundSearchIcon = require('./BackgroundSearchIcon.js');
|
|
@@ -96,7 +99,6 @@ module.exports.InkIcon = require('./InkIcon.js');
|
|
|
96
99
|
module.exports.LegalEntityIcon = require('./LegalEntityIcon.js');
|
|
97
100
|
module.exports.LinkIcon = require('./LinkIcon.js');
|
|
98
101
|
module.exports.LockIcon = require('./LockIcon.js');
|
|
99
|
-
module.exports.LogoIcon = require('./LogoIcon.js');
|
|
100
102
|
module.exports.LogoutIcon = require('./LogoutIcon.js');
|
|
101
103
|
module.exports.MarkerIcon = require('./MarkerIcon.js');
|
|
102
104
|
module.exports.MenuIcon = require('./MenuIcon.js');
|
|
@@ -109,6 +111,8 @@ module.exports.NotFoundIcon = require('./NotFoundIcon.js');
|
|
|
109
111
|
module.exports.NotificationsOutlineIcon = require('./NotificationsOutlineIcon.js');
|
|
110
112
|
module.exports.OpenIcon = require('./OpenIcon.js');
|
|
111
113
|
module.exports.OutgoingIcon = require('./OutgoingIcon.js');
|
|
114
|
+
module.exports.PassivatedIcon = require('./PassivatedIcon.js');
|
|
115
|
+
module.exports.PassiveOriginArchiveIcon = require('./PassiveOriginArchiveIcon.js');
|
|
112
116
|
module.exports.PermissionsIcon = require('./PermissionsIcon.js');
|
|
113
117
|
module.exports.PersonIcon = require('./PersonIcon.js');
|
|
114
118
|
module.exports.PinFilledIcon = require('./PinFilledIcon.js');
|
|
@@ -130,6 +134,8 @@ module.exports.SafeProgressIcon = require('./SafeProgressIcon.js');
|
|
|
130
134
|
module.exports.ScissorsIcon = require('./ScissorsIcon.js');
|
|
131
135
|
module.exports.SearchIcon = require('./SearchIcon.js');
|
|
132
136
|
module.exports.SendIcon = require('./SendIcon.js');
|
|
137
|
+
module.exports.SentToArchiveIcon = require('./SentToArchiveIcon.js');
|
|
138
|
+
module.exports.SentToPassivateIcon = require('./SentToPassivateIcon.js');
|
|
133
139
|
module.exports.ShieldWarningIcon = require('./ShieldWarningIcon.js');
|
|
134
140
|
module.exports.SidebarIcon = require('./SidebarIcon.js');
|
|
135
141
|
module.exports.SidebarCollapsedIcon = require('./SidebarCollapsedIcon.js');
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { createElement, forwardRef, useContext, useMemo } from 'react';
|
|
2
|
+
import { IconContext } from '../index.js';
|
|
3
|
+
import get from 'lodash.get';
|
|
4
|
+
|
|
5
|
+
const ActiveOriginArchiveIcon = ({
|
|
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
|
+
fill: color,
|
|
20
|
+
viewBox: "0 0 18 18",
|
|
21
|
+
width: defaultValues.size,
|
|
22
|
+
height: defaultValues.size,
|
|
23
|
+
ref: ref
|
|
24
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
25
|
+
fill: "#000",
|
|
26
|
+
d: "M0 1c0-.552285.447715-1 1-1h12c.5523 0 1 .447715 1 1 0 .55228-.4477 1-1 1H1c-.552284 0-1-.44772-1-1Z"
|
|
27
|
+
}), /*#__PURE__*/createElement("path", {
|
|
28
|
+
fill: "#000",
|
|
29
|
+
fillRule: "evenodd",
|
|
30
|
+
d: "M1 3h12v7H7.58578l3.80002 3.8-.2.2H2c-.55228 0-1-.4477-1-1V3Zm9 2H4v1h6V5Z",
|
|
31
|
+
clipRule: "evenodd"
|
|
32
|
+
}), /*#__PURE__*/createElement("path", {
|
|
33
|
+
fill: "#000",
|
|
34
|
+
d: "M10 11h7v7l-2.8-2.8-2.8 2.8-1.4-1.4 2.8-2.8L10 11Z"
|
|
35
|
+
}));
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
const ForwardRef = /*#__PURE__*/forwardRef(ActiveOriginArchiveIcon);
|
|
39
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { createElement, forwardRef, useContext, useMemo } from 'react';
|
|
2
|
+
import { IconContext } from '../index.js';
|
|
3
|
+
import get from 'lodash.get';
|
|
4
|
+
|
|
5
|
+
const ArchivedIcon = ({
|
|
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
|
+
fill: color,
|
|
20
|
+
viewBox: "0 0 18 18",
|
|
21
|
+
width: defaultValues.size,
|
|
22
|
+
height: defaultValues.size,
|
|
23
|
+
ref: ref
|
|
24
|
+
}, props), /*#__PURE__*/createElement("g", {
|
|
25
|
+
clipPath: "url(#a)"
|
|
26
|
+
}, /*#__PURE__*/createElement("path", {
|
|
27
|
+
fill: "#000",
|
|
28
|
+
stroke: "#000",
|
|
29
|
+
strokeWidth: 2,
|
|
30
|
+
d: "M14 7V6H4v4h10V7ZM1 2V1h16v1H1Zm15 3v12H2V5h14Z"
|
|
31
|
+
})));
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
const ForwardRef = /*#__PURE__*/forwardRef(ArchivedIcon);
|
|
35
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { createElement, forwardRef, useContext, useMemo } from 'react';
|
|
2
|
+
import { IconContext } from '../index.js';
|
|
3
|
+
import get from 'lodash.get';
|
|
4
|
+
|
|
5
|
+
const PassivatedIcon = ({
|
|
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
|
+
fill: color,
|
|
20
|
+
viewBox: "0 0 18 18",
|
|
21
|
+
width: defaultValues.size,
|
|
22
|
+
height: defaultValues.size,
|
|
23
|
+
ref: ref
|
|
24
|
+
}, props), /*#__PURE__*/createElement("g", {
|
|
25
|
+
fill: "#000",
|
|
26
|
+
clipPath: "url(#a)"
|
|
27
|
+
}, /*#__PURE__*/createElement("path", {
|
|
28
|
+
d: "M0 1c0-.552285.447715-1 1-1h16c.5523 0 1 .447715 1 1v1c0 .55228-.4477 1-1 1H1c-.552284 0-1-.44772-1-1V1Zm6.17071 8C6.58254 7.83481 7.69378 7 9 7c1.3062 0 2.4175.83481 2.8293 2H6.17071ZM9 11c-.55229 0-1 .4477-1 1s.44771 1 1 1c.55228 0 1-.4477 1-1s-.44772-1-1-1Z"
|
|
29
|
+
}), /*#__PURE__*/createElement("path", {
|
|
30
|
+
fillRule: "evenodd",
|
|
31
|
+
d: "M1 4h16v13c0 .5523-.4477 1-1 1H2c-.55228 0-1-.4477-1-1V4Zm12 6v4c0 .5523-.4477 1-1 1H6c-.55228 0-1-.4477-1-1v-4c0-2.20914 1.79086-4 4-4 2.2091 0 4 1.79086 4 4Z",
|
|
32
|
+
clipRule: "evenodd"
|
|
33
|
+
})));
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
const ForwardRef = /*#__PURE__*/forwardRef(PassivatedIcon);
|
|
37
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { createElement, forwardRef, useContext, useMemo } from 'react';
|
|
2
|
+
import { IconContext } from '../index.js';
|
|
3
|
+
import get from 'lodash.get';
|
|
4
|
+
|
|
5
|
+
const PassiveOriginArchiveIcon = ({
|
|
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
|
+
fill: color,
|
|
20
|
+
viewBox: "0 0 18 18",
|
|
21
|
+
width: defaultValues.size,
|
|
22
|
+
height: defaultValues.size,
|
|
23
|
+
ref: ref
|
|
24
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
25
|
+
fill: "#000",
|
|
26
|
+
d: "M1 0C.447715 0 0 .447715 0 1c0 .55228.447716 1 1 1h12c.5523 0 1-.44772 1-1 0-.552285-.4477-1-1-1H1Zm0 3h12v7h-2V8c0-2.20914-1.79086-4-4-4S3 5.79086 3 8v3c0 .5523.44772 1 1 1h5.58578l1.80002 1.8-.2.2H2c-.55228 0-1-.4477-1-1V3Z"
|
|
27
|
+
}), /*#__PURE__*/createElement("path", {
|
|
28
|
+
fill: "#000",
|
|
29
|
+
d: "M7 5c1.30622 0 2.41746.83481 2.82929 2H4.17071C4.58254 5.83481 5.69378 5 7 5Zm5.8 8.8L10 16.6l1.4 1.4 2.8-2.8L17 18v-7h-7l2.8 2.8ZM6 9c0-.55229.44772-1 1-1s1 .44771 1 1c0 .55228-.44772 1-1 1s-1-.44772-1-1Z"
|
|
30
|
+
}));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
const ForwardRef = /*#__PURE__*/forwardRef(PassiveOriginArchiveIcon);
|
|
34
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { createElement, forwardRef, useContext, useMemo } from 'react';
|
|
2
|
+
import { IconContext } from '../index.js';
|
|
3
|
+
import get from 'lodash.get';
|
|
4
|
+
|
|
5
|
+
const SentToArchiveIcon = ({
|
|
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
|
+
fill: color,
|
|
20
|
+
viewBox: "0 0 18 18",
|
|
21
|
+
width: defaultValues.size,
|
|
22
|
+
height: defaultValues.size,
|
|
23
|
+
ref: ref
|
|
24
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
25
|
+
fill: "#000",
|
|
26
|
+
d: "M7 4c0-.55228.44772-1 1-1h9c.5523 0 1 .44772 1 1s-.4477 1-1 1H8c-.55228 0-1-.44772-1-1Zm3.5621 5.00003L8 11.1351V14c0 .5523.44771 1 1 1h7c.5523 0 1-.4477 1-1V6H8v.86498l2.001 1.66753C10.0003 8.52176 10 8.51092 10 8.5c0-.27614.2239-.5.5-.5h4c.2761 0 .5.22386.5.5s-.2239.5-.5.5l-3.9379.00003Z"
|
|
27
|
+
}), /*#__PURE__*/createElement("path", {
|
|
28
|
+
fill: "#000",
|
|
29
|
+
d: "M9.00001 9.00003 3 14v-3H0V7h3V4l6.00001 5.00003Z"
|
|
30
|
+
}));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
const ForwardRef = /*#__PURE__*/forwardRef(SentToArchiveIcon);
|
|
34
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { createElement, forwardRef, useContext, useMemo } from 'react';
|
|
2
|
+
import { IconContext } from '../index.js';
|
|
3
|
+
import get from 'lodash.get';
|
|
4
|
+
|
|
5
|
+
const SentToPassivateIcon = ({
|
|
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
|
+
fill: color,
|
|
20
|
+
viewBox: "0 0 18 18",
|
|
21
|
+
width: defaultValues.size,
|
|
22
|
+
height: defaultValues.size,
|
|
23
|
+
ref: ref
|
|
24
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
25
|
+
fill: "#000",
|
|
26
|
+
d: "M8 3c-.55228 0-1 .44772-1 1s.44771 1 1 1h9c.5523 0 1-.44772 1-1s-.4477-1-1-1H8Zm.99998 6.00001L3 14v-3H0V7h3V4l5.99998 5.00001Z"
|
|
27
|
+
}), /*#__PURE__*/createElement("path", {
|
|
28
|
+
fill: "#000",
|
|
29
|
+
d: "M10.1468 8.65397C10.4935 7.68961 11.4162 7 12.5 7 13.8807 7 15 8.11929 15 9.5V13h-5V9.5l.0002-.03175L8 11.1351V14c0 .5523.44771 1 1 1h7c.5523 0 1-.4477 1-1V6H8v.86498l2.1468 1.78899Z"
|
|
30
|
+
}), /*#__PURE__*/createElement("path", {
|
|
31
|
+
fill: "#000",
|
|
32
|
+
d: "M11 10v-.5c0-.82843.6716-1.5 1.5-1.5s1.5.67157 1.5 1.5v.5h-3Zm2 2v-1h-1v1h1Z"
|
|
33
|
+
}));
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
const ForwardRef = /*#__PURE__*/forwardRef(SentToPassivateIcon);
|
|
37
|
+
export default ForwardRef;
|
package/lib/esm/icons/index.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
export { default as LogoIcon } from './LogoIcon';
|
|
1
2
|
export { default as AccountIcon } from './AccountIcon';
|
|
3
|
+
export { default as ActiveOriginArchiveIcon } from './ActiveOriginArchiveIcon';
|
|
2
4
|
export { default as AddIcon } from './AddIcon';
|
|
3
5
|
export { default as AddCircleIcon } from './AddCircleIcon';
|
|
4
6
|
export { default as AdminIcon } from './AdminIcon';
|
|
@@ -9,6 +11,7 @@ export { default as AlertLightIcon } from './AlertLightIcon';
|
|
|
9
11
|
export { default as AnnotationsIcon } from './AnnotationsIcon';
|
|
10
12
|
export { default as AntiMoneyLaundringIcon } from './AntiMoneyLaundringIcon';
|
|
11
13
|
export { default as AppIcon } from './AppIcon';
|
|
14
|
+
export { default as ArchivedIcon } from './ArchivedIcon';
|
|
12
15
|
export { default as ArrowDropDownIcon } from './ArrowDropDownIcon';
|
|
13
16
|
export { default as BackIcon } from './BackIcon';
|
|
14
17
|
export { default as BackgroundSearchIcon } from './BackgroundSearchIcon';
|
|
@@ -96,7 +99,6 @@ export { default as InkIcon } from './InkIcon';
|
|
|
96
99
|
export { default as LegalEntityIcon } from './LegalEntityIcon';
|
|
97
100
|
export { default as LinkIcon } from './LinkIcon';
|
|
98
101
|
export { default as LockIcon } from './LockIcon';
|
|
99
|
-
export { default as LogoIcon } from './LogoIcon';
|
|
100
102
|
export { default as LogoutIcon } from './LogoutIcon';
|
|
101
103
|
export { default as MarkerIcon } from './MarkerIcon';
|
|
102
104
|
export { default as MenuIcon } from './MenuIcon';
|
|
@@ -109,6 +111,8 @@ export { default as NotFoundIcon } from './NotFoundIcon';
|
|
|
109
111
|
export { default as NotificationsOutlineIcon } from './NotificationsOutlineIcon';
|
|
110
112
|
export { default as OpenIcon } from './OpenIcon';
|
|
111
113
|
export { default as OutgoingIcon } from './OutgoingIcon';
|
|
114
|
+
export { default as PassivatedIcon } from './PassivatedIcon';
|
|
115
|
+
export { default as PassiveOriginArchiveIcon } from './PassiveOriginArchiveIcon';
|
|
112
116
|
export { default as PermissionsIcon } from './PermissionsIcon';
|
|
113
117
|
export { default as PersonIcon } from './PersonIcon';
|
|
114
118
|
export { default as PinFilledIcon } from './PinFilledIcon';
|
|
@@ -130,6 +134,8 @@ export { default as SafeProgressIcon } from './SafeProgressIcon';
|
|
|
130
134
|
export { default as ScissorsIcon } from './ScissorsIcon';
|
|
131
135
|
export { default as SearchIcon } from './SearchIcon';
|
|
132
136
|
export { default as SendIcon } from './SendIcon';
|
|
137
|
+
export { default as SentToArchiveIcon } from './SentToArchiveIcon';
|
|
138
|
+
export { default as SentToPassivateIcon } from './SentToPassivateIcon';
|
|
133
139
|
export { default as ShieldWarningIcon } from './ShieldWarningIcon';
|
|
134
140
|
export { default as SidebarIcon } from './SidebarIcon';
|
|
135
141
|
export { default as SidebarCollapsedIcon } from './SidebarCollapsedIcon';
|
package/lib/esm/icons/index.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
export { default as LogoIcon } from './LogoIcon.js';
|
|
1
2
|
export { default as AccountIcon } from './AccountIcon.js';
|
|
3
|
+
export { default as ActiveOriginArchiveIcon } from './ActiveOriginArchiveIcon.js';
|
|
2
4
|
export { default as AddIcon } from './AddIcon.js';
|
|
3
5
|
export { default as AddCircleIcon } from './AddCircleIcon.js';
|
|
4
6
|
export { default as AdminIcon } from './AdminIcon.js';
|
|
@@ -9,6 +11,7 @@ export { default as AlertLightIcon } from './AlertLightIcon.js';
|
|
|
9
11
|
export { default as AnnotationsIcon } from './AnnotationsIcon.js';
|
|
10
12
|
export { default as AntiMoneyLaundringIcon } from './AntiMoneyLaundringIcon.js';
|
|
11
13
|
export { default as AppIcon } from './AppIcon.js';
|
|
14
|
+
export { default as ArchivedIcon } from './ArchivedIcon.js';
|
|
12
15
|
export { default as ArrowDropDownIcon } from './ArrowDropDownIcon.js';
|
|
13
16
|
export { default as BackIcon } from './BackIcon.js';
|
|
14
17
|
export { default as BackgroundSearchIcon } from './BackgroundSearchIcon.js';
|
|
@@ -96,7 +99,6 @@ export { default as InkIcon } from './InkIcon.js';
|
|
|
96
99
|
export { default as LegalEntityIcon } from './LegalEntityIcon.js';
|
|
97
100
|
export { default as LinkIcon } from './LinkIcon.js';
|
|
98
101
|
export { default as LockIcon } from './LockIcon.js';
|
|
99
|
-
export { default as LogoIcon } from './LogoIcon.js';
|
|
100
102
|
export { default as LogoutIcon } from './LogoutIcon.js';
|
|
101
103
|
export { default as MarkerIcon } from './MarkerIcon.js';
|
|
102
104
|
export { default as MenuIcon } from './MenuIcon.js';
|
|
@@ -109,6 +111,8 @@ export { default as NotFoundIcon } from './NotFoundIcon.js';
|
|
|
109
111
|
export { default as NotificationsOutlineIcon } from './NotificationsOutlineIcon.js';
|
|
110
112
|
export { default as OpenIcon } from './OpenIcon.js';
|
|
111
113
|
export { default as OutgoingIcon } from './OutgoingIcon.js';
|
|
114
|
+
export { default as PassivatedIcon } from './PassivatedIcon.js';
|
|
115
|
+
export { default as PassiveOriginArchiveIcon } from './PassiveOriginArchiveIcon.js';
|
|
112
116
|
export { default as PermissionsIcon } from './PermissionsIcon.js';
|
|
113
117
|
export { default as PersonIcon } from './PersonIcon.js';
|
|
114
118
|
export { default as PinFilledIcon } from './PinFilledIcon.js';
|
|
@@ -130,6 +134,8 @@ export { default as SafeProgressIcon } from './SafeProgressIcon.js';
|
|
|
130
134
|
export { default as ScissorsIcon } from './ScissorsIcon.js';
|
|
131
135
|
export { default as SearchIcon } from './SearchIcon.js';
|
|
132
136
|
export { default as SendIcon } from './SendIcon.js';
|
|
137
|
+
export { default as SentToArchiveIcon } from './SentToArchiveIcon.js';
|
|
138
|
+
export { default as SentToPassivateIcon } from './SentToPassivateIcon.js';
|
|
133
139
|
export { default as ShieldWarningIcon } from './ShieldWarningIcon.js';
|
|
134
140
|
export { default as SidebarIcon } from './SidebarIcon.js';
|
|
135
141
|
export { default as SidebarCollapsedIcon } from './SidebarCollapsedIcon.js';
|
package/package.json
CHANGED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 18 18">
|
|
2
|
+
<path fill="#000" d="M0 1c0-.552285.447715-1 1-1h12c.5523 0 1 .447715 1 1 0 .55228-.4477 1-1 1H1c-.552284 0-1-.44772-1-1Z"/>
|
|
3
|
+
<path fill="#000" fill-rule="evenodd" d="M1 3h12v7H7.58578l3.80002 3.8-.2.2H2c-.55228 0-1-.4477-1-1V3Zm9 2H4v1h6V5Z" clip-rule="evenodd"/>
|
|
4
|
+
<path fill="#000" d="M10 11h7v7l-2.8-2.8-2.8 2.8-1.4-1.4 2.8-2.8L10 11Z"/>
|
|
5
|
+
</svg>
|
package/svg/Archived.svg
ADDED
|
File without changes
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 18 18">
|
|
2
|
+
<g fill="#000" clip-path="url(#a)">
|
|
3
|
+
<path d="M0 1c0-.552285.447715-1 1-1h16c.5523 0 1 .447715 1 1v1c0 .55228-.4477 1-1 1H1c-.552284 0-1-.44772-1-1V1Zm6.17071 8C6.58254 7.83481 7.69378 7 9 7c1.3062 0 2.4175.83481 2.8293 2H6.17071ZM9 11c-.55229 0-1 .4477-1 1s.44771 1 1 1c.55228 0 1-.4477 1-1s-.44772-1-1-1Z"/>
|
|
4
|
+
<path fill-rule="evenodd" d="M1 4h16v13c0 .5523-.4477 1-1 1H2c-.55228 0-1-.4477-1-1V4Zm12 6v4c0 .5523-.4477 1-1 1H6c-.55228 0-1-.4477-1-1v-4c0-2.20914 1.79086-4 4-4 2.2091 0 4 1.79086 4 4Z" clip-rule="evenodd"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 18 18">
|
|
2
|
+
<path fill="#000" d="M1 0C.447715 0 0 .447715 0 1c0 .55228.447716 1 1 1h12c.5523 0 1-.44772 1-1 0-.552285-.4477-1-1-1H1Zm0 3h12v7h-2V8c0-2.20914-1.79086-4-4-4S3 5.79086 3 8v3c0 .5523.44772 1 1 1h5.58578l1.80002 1.8-.2.2H2c-.55228 0-1-.4477-1-1V3Z"/>
|
|
3
|
+
<path fill="#000" d="M7 5c1.30622 0 2.41746.83481 2.82929 2H4.17071C4.58254 5.83481 5.69378 5 7 5Zm5.8 8.8L10 16.6l1.4 1.4 2.8-2.8L17 18v-7h-7l2.8 2.8ZM6 9c0-.55229.44772-1 1-1s1 .44771 1 1c0 .55228-.44772 1-1 1s-1-.44772-1-1Z"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 18 18">
|
|
2
|
+
<path fill="#000" d="M7 4c0-.55228.44772-1 1-1h9c.5523 0 1 .44772 1 1s-.4477 1-1 1H8c-.55228 0-1-.44772-1-1Zm3.5621 5.00003L8 11.1351V14c0 .5523.44771 1 1 1h7c.5523 0 1-.4477 1-1V6H8v.86498l2.001 1.66753C10.0003 8.52176 10 8.51092 10 8.5c0-.27614.2239-.5.5-.5h4c.2761 0 .5.22386.5.5s-.2239.5-.5.5l-3.9379.00003Z"/>
|
|
3
|
+
<path fill="#000" d="M9.00001 9.00003 3 14v-3H0V7h3V4l6.00001 5.00003Z"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 18 18">
|
|
2
|
+
<path fill="#000" d="M8 3c-.55228 0-1 .44772-1 1s.44771 1 1 1h9c.5523 0 1-.44772 1-1s-.4477-1-1-1H8Zm.99998 6.00001L3 14v-3H0V7h3V4l5.99998 5.00001Z"/>
|
|
3
|
+
<path fill="#000" d="M10.1468 8.65397C10.4935 7.68961 11.4162 7 12.5 7 13.8807 7 15 8.11929 15 9.5V13h-5V9.5l.0002-.03175L8 11.1351V14c0 .5523.44771 1 1 1h7c.5523 0 1-.4477 1-1V6H8v.86498l2.1468 1.78899Z"/>
|
|
4
|
+
<path fill="#000" d="M11 10v-.5c0-.82843.6716-1.5 1.5-1.5s1.5.67157 1.5 1.5v.5h-3Zm2 2v-1h-1v1h1Z"/>
|
|
5
|
+
</svg>
|
package/svg/Development.svg
DELETED
package/svg/development.json
DELETED