@imtf/icons 0.2.11 → 0.2.12
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/TaskApprovalTriggeredIcon.d.ts +7 -0
- package/lib/cjs/icons/TaskApprovalTriggeredIcon.js +46 -0
- package/lib/cjs/icons/TaskApprovedIcon.d.ts +7 -0
- package/lib/cjs/icons/TaskApprovedIcon.js +42 -0
- package/lib/cjs/icons/TaskRejectedIcon.d.ts +7 -0
- package/lib/cjs/icons/TaskRejectedIcon.js +42 -0
- package/lib/cjs/icons/index.d.ts +3 -0
- package/lib/cjs/icons/index.js +3 -0
- package/lib/esm/icons/TaskApprovalTriggeredIcon.d.ts +7 -0
- package/lib/esm/icons/TaskApprovalTriggeredIcon.js +37 -0
- package/lib/esm/icons/TaskApprovedIcon.d.ts +7 -0
- package/lib/esm/icons/TaskApprovedIcon.js +33 -0
- package/lib/esm/icons/TaskRejectedIcon.d.ts +7 -0
- package/lib/esm/icons/TaskRejectedIcon.js +33 -0
- package/lib/esm/icons/index.d.ts +3 -0
- package/lib/esm/icons/index.js +3 -0
- package/package.json +1 -1
- package/svg/TaskApprovalTriggered.svg +6 -0
- package/svg/TaskApproved.svg +5 -0
- package/svg/TaskRejected.svg +5 -0
- package/svg/taskApprovalTriggered.json +4 -0
- package/svg/taskApproved.json +4 -0
- package/svg/taskRejected.json +4 -0
|
@@ -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 TaskApprovalTriggeredIcon = ({
|
|
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 18 18",
|
|
29
|
+
width: defaultValues.size,
|
|
30
|
+
height: defaultValues.size,
|
|
31
|
+
fill: color,
|
|
32
|
+
color: color,
|
|
33
|
+
ref: ref
|
|
34
|
+
}, props), /*#__PURE__*/createElement("g", {
|
|
35
|
+
clipPath: "url(#a)"
|
|
36
|
+
}, /*#__PURE__*/createElement("path", {
|
|
37
|
+
fillRule: "evenodd",
|
|
38
|
+
d: "M1.55556 0H12.4444C13.3078 0 14 .7 14 1.55556v5.52049c-2.8377.4364-5 2.6987-5 5.42395 0 .52.07873 1.0232.22585 1.5H1.55556C.692222 14 0 13.3 0 12.4444V1.55556C0 .7.692222 0 1.55556 0Zm0 7 3.88888 3.8889 6.99996-7.00001-1.0966-1.10445-5.90336 5.90334-2.79222-2.78445L1.55556 7Z",
|
|
39
|
+
clipRule: "evenodd"
|
|
40
|
+
}), /*#__PURE__*/createElement("path", {
|
|
41
|
+
d: "M14.3333 10.0833v1.25L16 9.66667 14.3333 8v1.25C12.4917 9.25 11 10.7417 11 12.5833c0 .6542.1917 1.2625.5167 1.775l.6083-.6083c-.1875-.3458-.2917-.7458-.2917-1.1667 0-1.3791 1.1209-2.5 2.5-2.5Zm2.8167.725-.6083.6084c.1833.35.2916.7458.2916 1.1666 0 1.3792-1.1208 2.5-2.5 2.5v-1.25L12.6667 15.5l1.6666 1.6667v-1.25c1.8417 0 3.3334-1.4917 3.3334-3.3334 0-.6541-.1917-1.2625-.5167-1.775Z"
|
|
42
|
+
})));
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
const ForwardRef = forwardRef(TaskApprovalTriggeredIcon);
|
|
46
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,42 @@
|
|
|
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 TaskApprovedIcon = ({
|
|
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 18 18",
|
|
29
|
+
width: defaultValues.size,
|
|
30
|
+
height: defaultValues.size,
|
|
31
|
+
fill: color,
|
|
32
|
+
color: color,
|
|
33
|
+
ref: ref
|
|
34
|
+
}, props), /*#__PURE__*/createElement("g", {
|
|
35
|
+
clipPath: "url(#a)"
|
|
36
|
+
}, /*#__PURE__*/createElement("path", {
|
|
37
|
+
d: "M16 0H2C.89 0 0 .9 0 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V2c0-1.1-.89-2-2-2ZM7 14 2 9l1.41-1.41L7 11.17l7.59-7.59L16 5l-9 9Z"
|
|
38
|
+
})));
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
const ForwardRef = forwardRef(TaskApprovedIcon);
|
|
42
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,42 @@
|
|
|
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 TaskRejectedIcon = ({
|
|
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 18 18",
|
|
29
|
+
width: defaultValues.size,
|
|
30
|
+
height: defaultValues.size,
|
|
31
|
+
fill: color,
|
|
32
|
+
color: color,
|
|
33
|
+
ref: ref
|
|
34
|
+
}, props), /*#__PURE__*/createElement("g", {
|
|
35
|
+
clipPath: "url(#a)"
|
|
36
|
+
}, /*#__PURE__*/createElement("path", {
|
|
37
|
+
d: "M9 0C4.032 0 0 4.032 0 9s4.032 9 9 9 9-4.032 9-9-4.032-9-9-9Zm0 16.2c-3.978 0-7.2-3.222-7.2-7.2 0-1.665.567-3.195 1.521-4.41L13.41 14.679C12.195 15.633 10.665 16.2 9 16.2Zm5.679-2.79L4.59 3.321C5.805 2.367 7.335 1.8 9 1.8c3.978 0 7.2 3.222 7.2 7.2 0 1.665-.567 3.195-1.521 4.41Z"
|
|
38
|
+
})));
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
const ForwardRef = forwardRef(TaskRejectedIcon);
|
|
42
|
+
module.exports = ForwardRef;
|
package/lib/cjs/icons/index.d.ts
CHANGED
|
@@ -146,6 +146,9 @@ export { default as StarBorderIcon } from './StarBorderIcon';
|
|
|
146
146
|
export { default as SystemBotIcon } from './SystemBotIcon';
|
|
147
147
|
export { default as TableIcon } from './TableIcon';
|
|
148
148
|
export { default as TaskIcon } from './TaskIcon';
|
|
149
|
+
export { default as TaskApprovalTriggeredIcon } from './TaskApprovalTriggeredIcon';
|
|
150
|
+
export { default as TaskApprovedIcon } from './TaskApprovedIcon';
|
|
151
|
+
export { default as TaskRejectedIcon } from './TaskRejectedIcon';
|
|
149
152
|
export { default as ThumbnailsIcon } from './ThumbnailsIcon';
|
|
150
153
|
export { default as TimelapsIcon } from './TimelapsIcon';
|
|
151
154
|
export { default as TimelineIcon } from './TimelineIcon';
|
package/lib/cjs/icons/index.js
CHANGED
|
@@ -146,6 +146,9 @@ module.exports.StarBorderIcon = require('./StarBorderIcon.js');
|
|
|
146
146
|
module.exports.SystemBotIcon = require('./SystemBotIcon.js');
|
|
147
147
|
module.exports.TableIcon = require('./TableIcon.js');
|
|
148
148
|
module.exports.TaskIcon = require('./TaskIcon.js');
|
|
149
|
+
module.exports.TaskApprovalTriggeredIcon = require('./TaskApprovalTriggeredIcon.js');
|
|
150
|
+
module.exports.TaskApprovedIcon = require('./TaskApprovedIcon.js');
|
|
151
|
+
module.exports.TaskRejectedIcon = require('./TaskRejectedIcon.js');
|
|
149
152
|
module.exports.ThumbnailsIcon = require('./ThumbnailsIcon.js');
|
|
150
153
|
module.exports.TimelapsIcon = require('./TimelapsIcon.js');
|
|
151
154
|
module.exports.TimelineIcon = require('./TimelineIcon.js');
|
|
@@ -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 TaskApprovalTriggeredIcon = ({
|
|
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 18 18",
|
|
20
|
+
width: defaultValues.size,
|
|
21
|
+
height: defaultValues.size,
|
|
22
|
+
fill: color,
|
|
23
|
+
color: color,
|
|
24
|
+
ref: ref
|
|
25
|
+
}, props), /*#__PURE__*/createElement("g", {
|
|
26
|
+
clipPath: "url(#a)"
|
|
27
|
+
}, /*#__PURE__*/createElement("path", {
|
|
28
|
+
fillRule: "evenodd",
|
|
29
|
+
d: "M1.55556 0H12.4444C13.3078 0 14 .7 14 1.55556v5.52049c-2.8377.4364-5 2.6987-5 5.42395 0 .52.07873 1.0232.22585 1.5H1.55556C.692222 14 0 13.3 0 12.4444V1.55556C0 .7.692222 0 1.55556 0Zm0 7 3.88888 3.8889 6.99996-7.00001-1.0966-1.10445-5.90336 5.90334-2.79222-2.78445L1.55556 7Z",
|
|
30
|
+
clipRule: "evenodd"
|
|
31
|
+
}), /*#__PURE__*/createElement("path", {
|
|
32
|
+
d: "M14.3333 10.0833v1.25L16 9.66667 14.3333 8v1.25C12.4917 9.25 11 10.7417 11 12.5833c0 .6542.1917 1.2625.5167 1.775l.6083-.6083c-.1875-.3458-.2917-.7458-.2917-1.1667 0-1.3791 1.1209-2.5 2.5-2.5Zm2.8167.725-.6083.6084c.1833.35.2916.7458.2916 1.1666 0 1.3792-1.1208 2.5-2.5 2.5v-1.25L12.6667 15.5l1.6666 1.6667v-1.25c1.8417 0 3.3334-1.4917 3.3334-3.3334 0-.6541-.1917-1.2625-.5167-1.775Z"
|
|
33
|
+
})));
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
const ForwardRef = /*#__PURE__*/forwardRef(TaskApprovalTriggeredIcon);
|
|
37
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { createElement, forwardRef, useContext, useMemo } from 'react';
|
|
2
|
+
import { IconContext } from '../index.js';
|
|
3
|
+
import get from 'lodash.get';
|
|
4
|
+
|
|
5
|
+
const TaskApprovedIcon = ({
|
|
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 18 18",
|
|
20
|
+
width: defaultValues.size,
|
|
21
|
+
height: defaultValues.size,
|
|
22
|
+
fill: color,
|
|
23
|
+
color: color,
|
|
24
|
+
ref: ref
|
|
25
|
+
}, props), /*#__PURE__*/createElement("g", {
|
|
26
|
+
clipPath: "url(#a)"
|
|
27
|
+
}, /*#__PURE__*/createElement("path", {
|
|
28
|
+
d: "M16 0H2C.89 0 0 .9 0 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V2c0-1.1-.89-2-2-2ZM7 14 2 9l1.41-1.41L7 11.17l7.59-7.59L16 5l-9 9Z"
|
|
29
|
+
})));
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
const ForwardRef = /*#__PURE__*/forwardRef(TaskApprovedIcon);
|
|
33
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { createElement, forwardRef, useContext, useMemo } from 'react';
|
|
2
|
+
import { IconContext } from '../index.js';
|
|
3
|
+
import get from 'lodash.get';
|
|
4
|
+
|
|
5
|
+
const TaskRejectedIcon = ({
|
|
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 18 18",
|
|
20
|
+
width: defaultValues.size,
|
|
21
|
+
height: defaultValues.size,
|
|
22
|
+
fill: color,
|
|
23
|
+
color: color,
|
|
24
|
+
ref: ref
|
|
25
|
+
}, props), /*#__PURE__*/createElement("g", {
|
|
26
|
+
clipPath: "url(#a)"
|
|
27
|
+
}, /*#__PURE__*/createElement("path", {
|
|
28
|
+
d: "M9 0C4.032 0 0 4.032 0 9s4.032 9 9 9 9-4.032 9-9-4.032-9-9-9Zm0 16.2c-3.978 0-7.2-3.222-7.2-7.2 0-1.665.567-3.195 1.521-4.41L13.41 14.679C12.195 15.633 10.665 16.2 9 16.2Zm5.679-2.79L4.59 3.321C5.805 2.367 7.335 1.8 9 1.8c3.978 0 7.2 3.222 7.2 7.2 0 1.665-.567 3.195-1.521 4.41Z"
|
|
29
|
+
})));
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
const ForwardRef = /*#__PURE__*/forwardRef(TaskRejectedIcon);
|
|
33
|
+
export default ForwardRef;
|
package/lib/esm/icons/index.d.ts
CHANGED
|
@@ -146,6 +146,9 @@ export { default as StarBorderIcon } from './StarBorderIcon';
|
|
|
146
146
|
export { default as SystemBotIcon } from './SystemBotIcon';
|
|
147
147
|
export { default as TableIcon } from './TableIcon';
|
|
148
148
|
export { default as TaskIcon } from './TaskIcon';
|
|
149
|
+
export { default as TaskApprovalTriggeredIcon } from './TaskApprovalTriggeredIcon';
|
|
150
|
+
export { default as TaskApprovedIcon } from './TaskApprovedIcon';
|
|
151
|
+
export { default as TaskRejectedIcon } from './TaskRejectedIcon';
|
|
149
152
|
export { default as ThumbnailsIcon } from './ThumbnailsIcon';
|
|
150
153
|
export { default as TimelapsIcon } from './TimelapsIcon';
|
|
151
154
|
export { default as TimelineIcon } from './TimelineIcon';
|
package/lib/esm/icons/index.js
CHANGED
|
@@ -146,6 +146,9 @@ export { default as StarBorderIcon } from './StarBorderIcon.js';
|
|
|
146
146
|
export { default as SystemBotIcon } from './SystemBotIcon.js';
|
|
147
147
|
export { default as TableIcon } from './TableIcon.js';
|
|
148
148
|
export { default as TaskIcon } from './TaskIcon.js';
|
|
149
|
+
export { default as TaskApprovalTriggeredIcon } from './TaskApprovalTriggeredIcon.js';
|
|
150
|
+
export { default as TaskApprovedIcon } from './TaskApprovedIcon.js';
|
|
151
|
+
export { default as TaskRejectedIcon } from './TaskRejectedIcon.js';
|
|
149
152
|
export { default as ThumbnailsIcon } from './ThumbnailsIcon.js';
|
|
150
153
|
export { default as TimelapsIcon } from './TimelapsIcon.js';
|
|
151
154
|
export { default as TimelineIcon } from './TimelineIcon.js';
|
package/package.json
CHANGED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18">
|
|
2
|
+
<g clip-path="url(#a)">
|
|
3
|
+
<path fill-rule="evenodd" d="M1.55556 0H12.4444C13.3078 0 14 .7 14 1.55556v5.52049c-2.8377.4364-5 2.6987-5 5.42395 0 .52.07873 1.0232.22585 1.5H1.55556C.692222 14 0 13.3 0 12.4444V1.55556C0 .7.692222 0 1.55556 0Zm0 7 3.88888 3.8889 6.99996-7.00001-1.0966-1.10445-5.90336 5.90334-2.79222-2.78445L1.55556 7Z" clip-rule="evenodd"/>
|
|
4
|
+
<path d="M14.3333 10.0833v1.25L16 9.66667 14.3333 8v1.25C12.4917 9.25 11 10.7417 11 12.5833c0 .6542.1917 1.2625.5167 1.775l.6083-.6083c-.1875-.3458-.2917-.7458-.2917-1.1667 0-1.3791 1.1209-2.5 2.5-2.5Zm2.8167.725-.6083.6084c.1833.35.2916.7458.2916 1.1666 0 1.3792-1.1208 2.5-2.5 2.5v-1.25L12.6667 15.5l1.6666 1.6667v-1.25c1.8417 0 3.3334-1.4917 3.3334-3.3334 0-.6541-.1917-1.2625-.5167-1.775Z"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18">
|
|
2
|
+
<g clip-path="url(#a)">
|
|
3
|
+
<path d="M9 0C4.032 0 0 4.032 0 9s4.032 9 9 9 9-4.032 9-9-4.032-9-9-9Zm0 16.2c-3.978 0-7.2-3.222-7.2-7.2 0-1.665.567-3.195 1.521-4.41L13.41 14.679C12.195 15.633 10.665 16.2 9 16.2Zm5.679-2.79L4.59 3.321C5.805 2.367 7.335 1.8 9 1.8c3.978 0 7.2 3.222 7.2 7.2 0 1.665-.567 3.195-1.521 4.41Z"/>
|
|
4
|
+
</g>
|
|
5
|
+
</svg>
|