@imtf/icons 0.2.8 → 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/CodeIcon.d.ts +7 -0
- package/lib/cjs/icons/CodeIcon.js +39 -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/WorkbenchIcon.d.ts +7 -0
- package/lib/cjs/icons/WorkbenchIcon.js +41 -0
- package/lib/cjs/icons/index.d.ts +9 -1
- package/lib/cjs/icons/index.js +9 -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/CodeIcon.d.ts +7 -0
- package/lib/esm/icons/CodeIcon.js +30 -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/WorkbenchIcon.d.ts +7 -0
- package/lib/esm/icons/WorkbenchIcon.js +32 -0
- package/lib/esm/icons/index.d.ts +9 -1
- package/lib/esm/icons/index.js +9 -1
- package/package.json +1 -1
- package/svg/ActiveOriginArchive.svg +5 -0
- package/svg/Archived.svg +5 -0
- package/svg/Code.svg +3 -0
- package/svg/{legalEntity.svg → LegalEntity.svg} +0 -0
- package/svg/{logo.json → Logo.json} +0 -0
- package/svg/{naturalPerson.svg → NaturalPerson.svg} +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/Workbench.svg +4 -0
- package/svg/activeOriginArchive.json +4 -0
- package/svg/archived.json +4 -0
- package/svg/code.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/workbench.json +4 -0
- package/changelog.md +0 -63
- package/svg/.DS_Store +0 -0
|
@@ -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,39 @@
|
|
|
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 CodeIcon = ({
|
|
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
|
+
viewBox: "0 0 24 24",
|
|
29
|
+
width: defaultValues.size,
|
|
30
|
+
height: defaultValues.size,
|
|
31
|
+
fill: color,
|
|
32
|
+
ref: ref
|
|
33
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
34
|
+
d: "M9.4 16.6 4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4Zm5.2 0 4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4Z"
|
|
35
|
+
}));
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
const ForwardRef = forwardRef(CodeIcon);
|
|
39
|
+
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;
|
|
@@ -0,0 +1,41 @@
|
|
|
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 WorkbenchIcon = ({
|
|
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
|
+
viewBox: "0 0 24 24",
|
|
29
|
+
width: defaultValues.size,
|
|
30
|
+
height: defaultValues.size,
|
|
31
|
+
fill: color,
|
|
32
|
+
ref: ref
|
|
33
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
34
|
+
d: "m21.67 18.1701-5.3-5.3h-.99l-2.54 2.54v.99l5.3 5.3c.39.39 1.02.39 1.41 0l2.12-2.12c.39-.38.39-1.02 0-1.41Z"
|
|
35
|
+
}), /*#__PURE__*/createElement("path", {
|
|
36
|
+
d: "m17.34 10.19 1.41-1.41 2.12 2.12c1.17-1.17 1.17-3.07 0-4.24l-3.54-3.54-1.41 1.41V1.71l-.7-.71-3.54 3.54.71.71h2.83l-1.41 1.41 1.06 1.06-2.89 2.89-4.13-4.13V5.06L4.83 2.04 2 4.87 5.03 7.9h1.41l4.13 4.13-.85.85H7.6l-5.3 5.3c-.39.39-.39 1.02 0 1.41l2.12 2.12c.39.39 1.02.39 1.41 0l5.3-5.3v-2.12l5.15-5.15 1.06 1.05Z"
|
|
37
|
+
}));
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
const ForwardRef = forwardRef(WorkbenchIcon);
|
|
41
|
+
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';
|
|
@@ -26,6 +29,7 @@ export { default as ChevronLeftIcon } from './ChevronLeftIcon';
|
|
|
26
29
|
export { default as ChevronRightIcon } from './ChevronRightIcon';
|
|
27
30
|
export { default as ChevronUpIcon } from './ChevronUpIcon';
|
|
28
31
|
export { default as CircleIcon } from './CircleIcon';
|
|
32
|
+
export { default as CodeIcon } from './CodeIcon';
|
|
29
33
|
export { default as CollapseAllIcon } from './CollapseAllIcon';
|
|
30
34
|
export { default as CommentIcon } from './CommentIcon';
|
|
31
35
|
export { default as CommentResolvedIcon } from './CommentResolvedIcon';
|
|
@@ -95,7 +99,6 @@ export { default as InkIcon } from './InkIcon';
|
|
|
95
99
|
export { default as LegalEntityIcon } from './LegalEntityIcon';
|
|
96
100
|
export { default as LinkIcon } from './LinkIcon';
|
|
97
101
|
export { default as LockIcon } from './LockIcon';
|
|
98
|
-
export { default as LogoIcon } from './LogoIcon';
|
|
99
102
|
export { default as LogoutIcon } from './LogoutIcon';
|
|
100
103
|
export { default as MarkerIcon } from './MarkerIcon';
|
|
101
104
|
export { default as MenuIcon } from './MenuIcon';
|
|
@@ -108,6 +111,8 @@ export { default as NotFoundIcon } from './NotFoundIcon';
|
|
|
108
111
|
export { default as NotificationsOutlineIcon } from './NotificationsOutlineIcon';
|
|
109
112
|
export { default as OpenIcon } from './OpenIcon';
|
|
110
113
|
export { default as OutgoingIcon } from './OutgoingIcon';
|
|
114
|
+
export { default as PassivatedIcon } from './PassivatedIcon';
|
|
115
|
+
export { default as PassiveOriginArchiveIcon } from './PassiveOriginArchiveIcon';
|
|
111
116
|
export { default as PermissionsIcon } from './PermissionsIcon';
|
|
112
117
|
export { default as PersonIcon } from './PersonIcon';
|
|
113
118
|
export { default as PinFilledIcon } from './PinFilledIcon';
|
|
@@ -129,6 +134,8 @@ export { default as SafeProgressIcon } from './SafeProgressIcon';
|
|
|
129
134
|
export { default as ScissorsIcon } from './ScissorsIcon';
|
|
130
135
|
export { default as SearchIcon } from './SearchIcon';
|
|
131
136
|
export { default as SendIcon } from './SendIcon';
|
|
137
|
+
export { default as SentToArchiveIcon } from './SentToArchiveIcon';
|
|
138
|
+
export { default as SentToPassivateIcon } from './SentToPassivateIcon';
|
|
132
139
|
export { default as ShieldWarningIcon } from './ShieldWarningIcon';
|
|
133
140
|
export { default as SidebarIcon } from './SidebarIcon';
|
|
134
141
|
export { default as SidebarCollapsedIcon } from './SidebarCollapsedIcon';
|
|
@@ -149,5 +156,6 @@ export { default as UploadIcon } from './UploadIcon';
|
|
|
149
156
|
export { default as ViewTreeIcon } from './ViewTreeIcon';
|
|
150
157
|
export { default as WarningIcon } from './WarningIcon';
|
|
151
158
|
export { default as WatermarkIcon } from './WatermarkIcon';
|
|
159
|
+
export { default as WorkbenchIcon } from './WorkbenchIcon';
|
|
152
160
|
export { default as XlsIcon } from './XlsIcon';
|
|
153
161
|
export { default as XlsLinkIcon } from './XlsLinkIcon';
|
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');
|
|
@@ -26,6 +29,7 @@ module.exports.ChevronLeftIcon = require('./ChevronLeftIcon.js');
|
|
|
26
29
|
module.exports.ChevronRightIcon = require('./ChevronRightIcon.js');
|
|
27
30
|
module.exports.ChevronUpIcon = require('./ChevronUpIcon.js');
|
|
28
31
|
module.exports.CircleIcon = require('./CircleIcon.js');
|
|
32
|
+
module.exports.CodeIcon = require('./CodeIcon.js');
|
|
29
33
|
module.exports.CollapseAllIcon = require('./CollapseAllIcon.js');
|
|
30
34
|
module.exports.CommentIcon = require('./CommentIcon.js');
|
|
31
35
|
module.exports.CommentResolvedIcon = require('./CommentResolvedIcon.js');
|
|
@@ -95,7 +99,6 @@ module.exports.InkIcon = require('./InkIcon.js');
|
|
|
95
99
|
module.exports.LegalEntityIcon = require('./LegalEntityIcon.js');
|
|
96
100
|
module.exports.LinkIcon = require('./LinkIcon.js');
|
|
97
101
|
module.exports.LockIcon = require('./LockIcon.js');
|
|
98
|
-
module.exports.LogoIcon = require('./LogoIcon.js');
|
|
99
102
|
module.exports.LogoutIcon = require('./LogoutIcon.js');
|
|
100
103
|
module.exports.MarkerIcon = require('./MarkerIcon.js');
|
|
101
104
|
module.exports.MenuIcon = require('./MenuIcon.js');
|
|
@@ -108,6 +111,8 @@ module.exports.NotFoundIcon = require('./NotFoundIcon.js');
|
|
|
108
111
|
module.exports.NotificationsOutlineIcon = require('./NotificationsOutlineIcon.js');
|
|
109
112
|
module.exports.OpenIcon = require('./OpenIcon.js');
|
|
110
113
|
module.exports.OutgoingIcon = require('./OutgoingIcon.js');
|
|
114
|
+
module.exports.PassivatedIcon = require('./PassivatedIcon.js');
|
|
115
|
+
module.exports.PassiveOriginArchiveIcon = require('./PassiveOriginArchiveIcon.js');
|
|
111
116
|
module.exports.PermissionsIcon = require('./PermissionsIcon.js');
|
|
112
117
|
module.exports.PersonIcon = require('./PersonIcon.js');
|
|
113
118
|
module.exports.PinFilledIcon = require('./PinFilledIcon.js');
|
|
@@ -129,6 +134,8 @@ module.exports.SafeProgressIcon = require('./SafeProgressIcon.js');
|
|
|
129
134
|
module.exports.ScissorsIcon = require('./ScissorsIcon.js');
|
|
130
135
|
module.exports.SearchIcon = require('./SearchIcon.js');
|
|
131
136
|
module.exports.SendIcon = require('./SendIcon.js');
|
|
137
|
+
module.exports.SentToArchiveIcon = require('./SentToArchiveIcon.js');
|
|
138
|
+
module.exports.SentToPassivateIcon = require('./SentToPassivateIcon.js');
|
|
132
139
|
module.exports.ShieldWarningIcon = require('./ShieldWarningIcon.js');
|
|
133
140
|
module.exports.SidebarIcon = require('./SidebarIcon.js');
|
|
134
141
|
module.exports.SidebarCollapsedIcon = require('./SidebarCollapsedIcon.js');
|
|
@@ -149,5 +156,6 @@ module.exports.UploadIcon = require('./UploadIcon.js');
|
|
|
149
156
|
module.exports.ViewTreeIcon = require('./ViewTreeIcon.js');
|
|
150
157
|
module.exports.WarningIcon = require('./WarningIcon.js');
|
|
151
158
|
module.exports.WatermarkIcon = require('./WatermarkIcon.js');
|
|
159
|
+
module.exports.WorkbenchIcon = require('./WorkbenchIcon.js');
|
|
152
160
|
module.exports.XlsIcon = require('./XlsIcon.js');
|
|
153
161
|
module.exports.XlsLinkIcon = require('./XlsLinkIcon.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,30 @@
|
|
|
1
|
+
import { createElement, forwardRef, useContext, useMemo } from 'react';
|
|
2
|
+
import { IconContext } from '../index.js';
|
|
3
|
+
import get from 'lodash.get';
|
|
4
|
+
|
|
5
|
+
const CodeIcon = ({
|
|
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: "M9.4 16.6 4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4Zm5.2 0 4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4Z"
|
|
26
|
+
}));
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
const ForwardRef = /*#__PURE__*/forwardRef(CodeIcon);
|
|
30
|
+
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;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { createElement, forwardRef, useContext, useMemo } from 'react';
|
|
2
|
+
import { IconContext } from '../index.js';
|
|
3
|
+
import get from 'lodash.get';
|
|
4
|
+
|
|
5
|
+
const WorkbenchIcon = ({
|
|
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: "m21.67 18.1701-5.3-5.3h-.99l-2.54 2.54v.99l5.3 5.3c.39.39 1.02.39 1.41 0l2.12-2.12c.39-.38.39-1.02 0-1.41Z"
|
|
26
|
+
}), /*#__PURE__*/createElement("path", {
|
|
27
|
+
d: "m17.34 10.19 1.41-1.41 2.12 2.12c1.17-1.17 1.17-3.07 0-4.24l-3.54-3.54-1.41 1.41V1.71l-.7-.71-3.54 3.54.71.71h2.83l-1.41 1.41 1.06 1.06-2.89 2.89-4.13-4.13V5.06L4.83 2.04 2 4.87 5.03 7.9h1.41l4.13 4.13-.85.85H7.6l-5.3 5.3c-.39.39-.39 1.02 0 1.41l2.12 2.12c.39.39 1.02.39 1.41 0l5.3-5.3v-2.12l5.15-5.15 1.06 1.05Z"
|
|
28
|
+
}));
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
const ForwardRef = /*#__PURE__*/forwardRef(WorkbenchIcon);
|
|
32
|
+
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';
|
|
@@ -26,6 +29,7 @@ export { default as ChevronLeftIcon } from './ChevronLeftIcon';
|
|
|
26
29
|
export { default as ChevronRightIcon } from './ChevronRightIcon';
|
|
27
30
|
export { default as ChevronUpIcon } from './ChevronUpIcon';
|
|
28
31
|
export { default as CircleIcon } from './CircleIcon';
|
|
32
|
+
export { default as CodeIcon } from './CodeIcon';
|
|
29
33
|
export { default as CollapseAllIcon } from './CollapseAllIcon';
|
|
30
34
|
export { default as CommentIcon } from './CommentIcon';
|
|
31
35
|
export { default as CommentResolvedIcon } from './CommentResolvedIcon';
|
|
@@ -95,7 +99,6 @@ export { default as InkIcon } from './InkIcon';
|
|
|
95
99
|
export { default as LegalEntityIcon } from './LegalEntityIcon';
|
|
96
100
|
export { default as LinkIcon } from './LinkIcon';
|
|
97
101
|
export { default as LockIcon } from './LockIcon';
|
|
98
|
-
export { default as LogoIcon } from './LogoIcon';
|
|
99
102
|
export { default as LogoutIcon } from './LogoutIcon';
|
|
100
103
|
export { default as MarkerIcon } from './MarkerIcon';
|
|
101
104
|
export { default as MenuIcon } from './MenuIcon';
|
|
@@ -108,6 +111,8 @@ export { default as NotFoundIcon } from './NotFoundIcon';
|
|
|
108
111
|
export { default as NotificationsOutlineIcon } from './NotificationsOutlineIcon';
|
|
109
112
|
export { default as OpenIcon } from './OpenIcon';
|
|
110
113
|
export { default as OutgoingIcon } from './OutgoingIcon';
|
|
114
|
+
export { default as PassivatedIcon } from './PassivatedIcon';
|
|
115
|
+
export { default as PassiveOriginArchiveIcon } from './PassiveOriginArchiveIcon';
|
|
111
116
|
export { default as PermissionsIcon } from './PermissionsIcon';
|
|
112
117
|
export { default as PersonIcon } from './PersonIcon';
|
|
113
118
|
export { default as PinFilledIcon } from './PinFilledIcon';
|
|
@@ -129,6 +134,8 @@ export { default as SafeProgressIcon } from './SafeProgressIcon';
|
|
|
129
134
|
export { default as ScissorsIcon } from './ScissorsIcon';
|
|
130
135
|
export { default as SearchIcon } from './SearchIcon';
|
|
131
136
|
export { default as SendIcon } from './SendIcon';
|
|
137
|
+
export { default as SentToArchiveIcon } from './SentToArchiveIcon';
|
|
138
|
+
export { default as SentToPassivateIcon } from './SentToPassivateIcon';
|
|
132
139
|
export { default as ShieldWarningIcon } from './ShieldWarningIcon';
|
|
133
140
|
export { default as SidebarIcon } from './SidebarIcon';
|
|
134
141
|
export { default as SidebarCollapsedIcon } from './SidebarCollapsedIcon';
|
|
@@ -149,5 +156,6 @@ export { default as UploadIcon } from './UploadIcon';
|
|
|
149
156
|
export { default as ViewTreeIcon } from './ViewTreeIcon';
|
|
150
157
|
export { default as WarningIcon } from './WarningIcon';
|
|
151
158
|
export { default as WatermarkIcon } from './WatermarkIcon';
|
|
159
|
+
export { default as WorkbenchIcon } from './WorkbenchIcon';
|
|
152
160
|
export { default as XlsIcon } from './XlsIcon';
|
|
153
161
|
export { default as XlsLinkIcon } from './XlsLinkIcon';
|
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';
|
|
@@ -26,6 +29,7 @@ export { default as ChevronLeftIcon } from './ChevronLeftIcon.js';
|
|
|
26
29
|
export { default as ChevronRightIcon } from './ChevronRightIcon.js';
|
|
27
30
|
export { default as ChevronUpIcon } from './ChevronUpIcon.js';
|
|
28
31
|
export { default as CircleIcon } from './CircleIcon.js';
|
|
32
|
+
export { default as CodeIcon } from './CodeIcon.js';
|
|
29
33
|
export { default as CollapseAllIcon } from './CollapseAllIcon.js';
|
|
30
34
|
export { default as CommentIcon } from './CommentIcon.js';
|
|
31
35
|
export { default as CommentResolvedIcon } from './CommentResolvedIcon.js';
|
|
@@ -95,7 +99,6 @@ export { default as InkIcon } from './InkIcon.js';
|
|
|
95
99
|
export { default as LegalEntityIcon } from './LegalEntityIcon.js';
|
|
96
100
|
export { default as LinkIcon } from './LinkIcon.js';
|
|
97
101
|
export { default as LockIcon } from './LockIcon.js';
|
|
98
|
-
export { default as LogoIcon } from './LogoIcon.js';
|
|
99
102
|
export { default as LogoutIcon } from './LogoutIcon.js';
|
|
100
103
|
export { default as MarkerIcon } from './MarkerIcon.js';
|
|
101
104
|
export { default as MenuIcon } from './MenuIcon.js';
|
|
@@ -108,6 +111,8 @@ export { default as NotFoundIcon } from './NotFoundIcon.js';
|
|
|
108
111
|
export { default as NotificationsOutlineIcon } from './NotificationsOutlineIcon.js';
|
|
109
112
|
export { default as OpenIcon } from './OpenIcon.js';
|
|
110
113
|
export { default as OutgoingIcon } from './OutgoingIcon.js';
|
|
114
|
+
export { default as PassivatedIcon } from './PassivatedIcon.js';
|
|
115
|
+
export { default as PassiveOriginArchiveIcon } from './PassiveOriginArchiveIcon.js';
|
|
111
116
|
export { default as PermissionsIcon } from './PermissionsIcon.js';
|
|
112
117
|
export { default as PersonIcon } from './PersonIcon.js';
|
|
113
118
|
export { default as PinFilledIcon } from './PinFilledIcon.js';
|
|
@@ -129,6 +134,8 @@ export { default as SafeProgressIcon } from './SafeProgressIcon.js';
|
|
|
129
134
|
export { default as ScissorsIcon } from './ScissorsIcon.js';
|
|
130
135
|
export { default as SearchIcon } from './SearchIcon.js';
|
|
131
136
|
export { default as SendIcon } from './SendIcon.js';
|
|
137
|
+
export { default as SentToArchiveIcon } from './SentToArchiveIcon.js';
|
|
138
|
+
export { default as SentToPassivateIcon } from './SentToPassivateIcon.js';
|
|
132
139
|
export { default as ShieldWarningIcon } from './ShieldWarningIcon.js';
|
|
133
140
|
export { default as SidebarIcon } from './SidebarIcon.js';
|
|
134
141
|
export { default as SidebarCollapsedIcon } from './SidebarCollapsedIcon.js';
|
|
@@ -149,5 +156,6 @@ export { default as UploadIcon } from './UploadIcon.js';
|
|
|
149
156
|
export { default as ViewTreeIcon } from './ViewTreeIcon.js';
|
|
150
157
|
export { default as WarningIcon } from './WarningIcon.js';
|
|
151
158
|
export { default as WatermarkIcon } from './WatermarkIcon.js';
|
|
159
|
+
export { default as WorkbenchIcon } from './WorkbenchIcon.js';
|
|
152
160
|
export { default as XlsIcon } from './XlsIcon.js';
|
|
153
161
|
export { default as XlsLinkIcon } from './XlsLinkIcon.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
package/svg/Code.svg
ADDED
|
File without changes
|
|
File without changes
|
|
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>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
2
|
+
<path d="m21.67 18.1701-5.3-5.3h-.99l-2.54 2.54v.99l5.3 5.3c.39.39 1.02.39 1.41 0l2.12-2.12c.39-.38.39-1.02 0-1.41Z"/>
|
|
3
|
+
<path d="m17.34 10.19 1.41-1.41 2.12 2.12c1.17-1.17 1.17-3.07 0-4.24l-3.54-3.54-1.41 1.41V1.71l-.7-.71-3.54 3.54.71.71h2.83l-1.41 1.41 1.06 1.06-2.89 2.89-4.13-4.13V5.06L4.83 2.04 2 4.87 5.03 7.9h1.41l4.13 4.13-.85.85H7.6l-5.3 5.3c-.39.39-.39 1.02 0 1.41l2.12 2.12c.39.39 1.02.39 1.41 0l5.3-5.3v-2.12l5.15-5.15 1.06 1.05Z"/>
|
|
4
|
+
</svg>
|
package/svg/code.json
ADDED
package/changelog.md
DELETED
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
# Icons changelog
|
|
2
|
-
|
|
3
|
-
## 0.2.8
|
|
4
|
-
|
|
5
|
-
- fix: `sideEffects` in package.json must be a boolean or an array
|
|
6
|
-
|
|
7
|
-
## 0.2.7
|
|
8
|
-
|
|
9
|
-
- Updated Group icon
|
|
10
|
-
- Add GroupAdd, GroupRemove, LegalEntity, NaturalPerson icons
|
|
11
|
-
|
|
12
|
-
## 0.2.6
|
|
13
|
-
|
|
14
|
-
- Add Incoming & Outgoing icons
|
|
15
|
-
|
|
16
|
-
## 0.2.5
|
|
17
|
-
|
|
18
|
-
- Add paddingless logo v0.2.5
|
|
19
|
-
|
|
20
|
-
## 0.2.4
|
|
21
|
-
|
|
22
|
-
- Rename logo icon to fix build issue
|
|
23
|
-
|
|
24
|
-
## 0.2.3
|
|
25
|
-
|
|
26
|
-
- Add correct IMTF logo version
|
|
27
|
-
|
|
28
|
-
## 0.2.2
|
|
29
|
-
|
|
30
|
-
- Added Eye Off icon
|
|
31
|
-
|
|
32
|
-
## 0.2.1
|
|
33
|
-
|
|
34
|
-
- Added React 18 to peer dependencies.
|
|
35
|
-
|
|
36
|
-
## 0.2.0
|
|
37
|
-
|
|
38
|
-
- Forwarded ref to svg component / icons
|
|
39
|
-
|
|
40
|
-
## 0.1.3
|
|
41
|
-
|
|
42
|
-
- Fix logo icon color
|
|
43
|
-
|
|
44
|
-
## 0.1.2
|
|
45
|
-
|
|
46
|
-
- Fix changelog issue
|
|
47
|
-
- Add new logo icon
|
|
48
|
-
|
|
49
|
-
## 0.1.1
|
|
50
|
-
|
|
51
|
-
- Add props interface to ts icons
|
|
52
|
-
|
|
53
|
-
## 0.1.0
|
|
54
|
-
|
|
55
|
-
- Added modules icons
|
|
56
|
-
|
|
57
|
-
## 0.0.8
|
|
58
|
-
|
|
59
|
-
- Remove side effects to enable tree shaking
|
|
60
|
-
|
|
61
|
-
## 0.0.7
|
|
62
|
-
|
|
63
|
-
- main export added to package js (was preventing test passing in @imtf/react-component)
|
package/svg/.DS_Store
DELETED
|
Binary file
|