@imtf/icons 0.2.6 → 0.2.8
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/changelog.md +63 -0
- package/lib/cjs/icons/GroupAddIcon.d.ts +7 -0
- package/lib/cjs/icons/GroupAddIcon.js +39 -0
- package/lib/cjs/icons/GroupIcon.js +2 -2
- package/lib/cjs/icons/GroupRemoveIcon.d.ts +7 -0
- package/lib/cjs/icons/GroupRemoveIcon.js +39 -0
- package/lib/cjs/icons/LegalEntityIcon.d.ts +7 -0
- package/lib/cjs/icons/LegalEntityIcon.js +39 -0
- package/lib/cjs/icons/NaturalPersonIcon.d.ts +7 -0
- package/lib/cjs/icons/NaturalPersonIcon.js +39 -0
- package/lib/cjs/icons/index.d.ts +4 -0
- package/lib/cjs/icons/index.js +4 -0
- package/lib/esm/icons/GroupAddIcon.d.ts +7 -0
- package/lib/esm/icons/GroupAddIcon.js +30 -0
- package/lib/esm/icons/GroupIcon.js +2 -2
- package/lib/esm/icons/GroupRemoveIcon.d.ts +7 -0
- package/lib/esm/icons/GroupRemoveIcon.js +30 -0
- package/lib/esm/icons/LegalEntityIcon.d.ts +7 -0
- package/lib/esm/icons/LegalEntityIcon.js +30 -0
- package/lib/esm/icons/NaturalPersonIcon.d.ts +7 -0
- package/lib/esm/icons/NaturalPersonIcon.js +30 -0
- package/lib/esm/icons/index.d.ts +4 -0
- package/lib/esm/icons/index.js +4 -0
- package/package.json +2 -2
- package/svg/.DS_Store +0 -0
- package/svg/Group.svg +2 -2
- package/svg/GroupAdd.svg +3 -0
- package/svg/GroupRemove.svg +3 -0
- package/svg/group.json +4 -2
- package/svg/groupAdd.json +4 -0
- package/svg/groupRemove.json +4 -0
- package/svg/legalEntity.json +6 -0
- package/svg/legalEntity.svg +3 -0
- package/svg/naturalPerson.json +6 -0
- package/svg/naturalPerson.svg +3 -0
package/changelog.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
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)
|
|
@@ -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 GroupAddIcon = ({
|
|
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 48 48",
|
|
29
|
+
width: defaultValues.size,
|
|
30
|
+
height: defaultValues.size,
|
|
31
|
+
fill: color,
|
|
32
|
+
ref: ref
|
|
33
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
34
|
+
d: "M23.7 23.7q1.3-1.6 1.925-3.3.625-1.7.625-3.95t-.625-3.95Q25 10.8 23.7 9.2q3.8-.85 6.675 1.15t2.875 6.1q0 4.1-2.875 6.1T23.7 23.7ZM33.4 40q.5-.1.8-.525.3-.425.3-1.075v-3.1q0-2.55-1.3-4.75t-4.5-3.7q8.65 1.1 11.825 3.2 3.175 2.1 3.175 5.25v3.2q0 .65-.425 1.075Q42.85 40 42.2 40Zm8.1-14.45q-.65 0-1.075-.425Q40 24.7 40 24.05v-3.5h-3.5q-.65 0-1.075-.425Q35 19.7 35 19.05q0-.65.425-1.075.425-.425 1.075-.425H40v-3.5q0-.65.425-1.075.425-.425 1.075-.425.65 0 1.075.425Q43 13.4 43 14.05v3.5h3.5q.65 0 1.075.425Q48 18.4 48 19.05q0 .65-.425 1.075-.425.425-1.075.425H43v3.5q0 .65-.425 1.075-.425.425-1.075.425Zm-25.75-1.6q-3.3 0-5.4-2.1-2.1-2.1-2.1-5.4 0-3.3 2.1-5.4 2.1-2.1 5.4-2.1 3.3 0 5.4 2.1 2.1 2.1 2.1 5.4 0 3.3-2.1 5.4-2.1 2.1-5.4 2.1ZM1.5 40q-.65 0-1.075-.425Q0 39.15 0 38.5v-3.2q0-1.75.925-3.175Q1.85 30.7 3.4 30q3.6-1.6 6.425-2.3 2.825-.7 5.925-.7 3.1 0 5.9.7 2.8.7 6.4 2.3 1.55.7 2.5 2.125t.95 3.175v3.2q0 .65-.425 1.075Q30.65 40 30 40Zm14.25-19.05q1.95 0 3.225-1.275Q20.25 18.4 20.25 16.45q0-1.95-1.275-3.225Q17.7 11.95 15.75 11.95q-1.95 0-3.225 1.275Q11.25 14.5 11.25 16.45q0 1.95 1.275 3.225Q13.8 20.95 15.75 20.95ZM3 37h25.5v-1.7q0-.8-.4-1.5t-1.25-1.1Q23.4 31.1 21 30.55 18.6 30 15.75 30t-5.225.55Q8.15 31.1 4.6 32.7q-.75.35-1.175 1.075Q3 34.5 3 35.3Zm12.75-20.55Zm0 20.55Z"
|
|
35
|
+
}));
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
const ForwardRef = forwardRef(GroupAddIcon);
|
|
39
|
+
module.exports = ForwardRef;
|
|
@@ -25,13 +25,13 @@ const GroupIcon = ({
|
|
|
25
25
|
const color = useMemo(() => get(defaultValues.palette, defaultValues.color, defaultValues.color), [defaultValues.color, defaultValues.palette]);
|
|
26
26
|
return /*#__PURE__*/createElement("svg", Object.assign({
|
|
27
27
|
xmlns: "http://www.w3.org/2000/svg",
|
|
28
|
-
viewBox: "0 0
|
|
28
|
+
viewBox: "0 0 48 48",
|
|
29
29
|
width: defaultValues.size,
|
|
30
30
|
height: defaultValues.size,
|
|
31
31
|
fill: color,
|
|
32
32
|
ref: ref
|
|
33
33
|
}, props), /*#__PURE__*/createElement("path", {
|
|
34
|
-
d: "
|
|
34
|
+
d: "M1.9 40v-4.7q0-1.75.9-3.175Q3.7 30.7 5.3 30q3.65-1.6 6.575-2.3Q14.8 27 17.9 27q3.1 0 6 .7t6.55 2.3q1.6.7 2.525 2.125.925 1.425.925 3.175V40Zm35 0v-4.7q0-3.15-1.6-5.175t-4.2-3.275q3.45.4 6.5 1.175t4.95 1.775q1.65.95 2.6 2.35.95 1.4.95 3.15V40Zm-19-16.05q-3.3 0-5.4-2.1-2.1-2.1-2.1-5.4 0-3.3 2.1-5.4 2.1-2.1 5.4-2.1 3.3 0 5.4 2.1 2.1 2.1 2.1 5.4 0 3.3-2.1 5.4-2.1 2.1-5.4 2.1Zm18-7.5q0 3.3-2.1 5.4-2.1 2.1-5.4 2.1-.55 0-1.225-.075T25.95 23.6q1.2-1.25 1.825-3.075.625-1.825.625-4.075t-.625-3.975Q27.15 10.75 25.95 9.3q.55-.15 1.225-.25t1.225-.1q3.3 0 5.4 2.1 2.1 2.1 2.1 5.4ZM4.9 37h26v-1.7q0-.8-.475-1.55T29.25 32.7q-3.6-1.6-6.05-2.15-2.45-.55-5.3-.55-2.85 0-5.325.55T6.5 32.7q-.7.3-1.15 1.05-.45.75-.45 1.55Zm13-16.05q1.95 0 3.225-1.275Q22.4 18.4 22.4 16.45q0-1.95-1.275-3.225Q19.85 11.95 17.9 11.95q-1.95 0-3.225 1.275Q13.4 14.5 13.4 16.45q0 1.95 1.275 3.225Q15.95 20.95 17.9 20.95Zm0 16.05Zm0-20.55Z"
|
|
35
35
|
}));
|
|
36
36
|
};
|
|
37
37
|
|
|
@@ -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 GroupRemoveIcon = ({
|
|
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 48 48",
|
|
29
|
+
width: defaultValues.size,
|
|
30
|
+
height: defaultValues.size,
|
|
31
|
+
fill: color,
|
|
32
|
+
ref: ref
|
|
33
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
34
|
+
d: "M23.7 23.7q1.3-1.6 1.925-3.3.625-1.7.625-3.95t-.625-3.95Q25 10.8 23.7 9.2q3.8-.85 6.675 1.15t2.875 6.1q0 4.1-2.875 6.1T23.7 23.7ZM33.4 40q.5-.1.8-.525.3-.425.3-1.075v-3.1q0-2.55-1.3-4.75t-4.5-3.7q8.65 1.1 11.825 3.2 3.175 2.1 3.175 5.25v3.2q0 .65-.425 1.075Q42.85 40 42.2 40Zm3.1-19.45q-.65 0-1.075-.425Q35 19.7 35 19.05q0-.65.425-1.075.425-.425 1.075-.425h10q.65 0 1.075.425Q48 18.4 48 19.05q0 .65-.425 1.075-.425.425-1.075.425Zm-20.75 3.4q-3.3 0-5.4-2.1-2.1-2.1-2.1-5.4 0-3.3 2.1-5.4 2.1-2.1 5.4-2.1 3.3 0 5.4 2.1 2.1 2.1 2.1 5.4 0 3.3-2.1 5.4-2.1 2.1-5.4 2.1ZM1.5 40q-.65 0-1.075-.425Q0 39.15 0 38.5v-3.2q0-1.75.925-3.175Q1.85 30.7 3.4 30q3.6-1.6 6.425-2.3 2.825-.7 5.925-.7 3.1 0 5.9.7 2.8.7 6.4 2.3 1.55.7 2.5 2.125t.95 3.175v3.2q0 .65-.425 1.075Q30.65 40 30 40Zm14.25-19.05q1.95 0 3.225-1.275Q20.25 18.4 20.25 16.45q0-1.95-1.275-3.225Q17.7 11.95 15.75 11.95q-1.95 0-3.225 1.275Q11.25 14.5 11.25 16.45q0 1.95 1.275 3.225Q13.8 20.95 15.75 20.95ZM3 37h25.5v-1.7q0-.8-.4-1.5t-1.25-1.1Q23.4 31.1 21 30.55 18.6 30 15.75 30t-5.225.55Q8.15 31.1 4.6 32.7q-.75.35-1.175 1.075Q3 34.5 3 35.3Zm12.75-20.55Zm0 20.55Z"
|
|
35
|
+
}));
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
const ForwardRef = forwardRef(GroupRemoveIcon);
|
|
39
|
+
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 LegalEntityIcon = ({
|
|
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 48 48",
|
|
29
|
+
width: defaultValues.size,
|
|
30
|
+
height: defaultValues.size,
|
|
31
|
+
fill: color,
|
|
32
|
+
ref: ref
|
|
33
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
34
|
+
d: "M6 42V14.25h8.25V6h19.5v16.5H42V42H26.65v-8.25h-5.3V42Zm3-3h5.25v-5.25H9Zm0-8.25h5.25V25.5H9Zm0-8.25h5.25v-5.25H9Zm8.25 8.25h5.25V25.5h-5.25Zm0-8.25h5.25v-5.25h-5.25Zm0-8.25h5.25V9h-5.25Zm8.25 16.5h5.25V25.5H25.5Zm0-8.25h5.25v-5.25H25.5Zm0-8.25h5.25V9H25.5ZM33.75 39H39v-5.25h-5.25Zm0-8.25H39V25.5h-5.25Z"
|
|
35
|
+
}));
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
const ForwardRef = forwardRef(LegalEntityIcon);
|
|
39
|
+
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 NaturalPersonIcon = ({
|
|
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 48 48",
|
|
29
|
+
width: defaultValues.size,
|
|
30
|
+
height: defaultValues.size,
|
|
31
|
+
fill: color,
|
|
32
|
+
ref: ref
|
|
33
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
34
|
+
d: "M24 23.95q-3.3 0-5.4-2.1-2.1-2.1-2.1-5.4 0-3.3 2.1-5.4 2.1-2.1 5.4-2.1 3.3 0 5.4 2.1 2.1 2.1 2.1 5.4 0 3.3-2.1 5.4-2.1 2.1-5.4 2.1ZM8 40v-4.7q0-1.9.95-3.25T11.4 30q3.35-1.5 6.425-2.25Q20.9 27 24 27q3.1 0 6.15.775 3.05.775 6.4 2.225 1.55.7 2.5 2.05.95 1.35.95 3.25V40Zm3-3h26v-1.7q0-.8-.475-1.525-.475-.725-1.175-1.075-3.2-1.55-5.85-2.125Q26.85 30 24 30t-5.55.575q-2.7.575-5.85 2.125-.7.35-1.15 1.075Q11 34.5 11 35.3Zm13-16.05q1.95 0 3.225-1.275Q28.5 18.4 28.5 16.45q0-1.95-1.275-3.225Q25.95 11.95 24 11.95q-1.95 0-3.225 1.275Q19.5 14.5 19.5 16.45q0 1.95 1.275 3.225Q22.05 20.95 24 20.95Zm0-4.5ZM24 37Z"
|
|
35
|
+
}));
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
const ForwardRef = forwardRef(NaturalPersonIcon);
|
|
39
|
+
module.exports = ForwardRef;
|
package/lib/cjs/icons/index.d.ts
CHANGED
|
@@ -82,6 +82,8 @@ export { default as GaugeLightIcon } from './GaugeLightIcon';
|
|
|
82
82
|
export { default as GenerateFileIcon } from './GenerateFileIcon';
|
|
83
83
|
export { default as GraphIcon } from './GraphIcon';
|
|
84
84
|
export { default as GroupIcon } from './GroupIcon';
|
|
85
|
+
export { default as GroupAddIcon } from './GroupAddIcon';
|
|
86
|
+
export { default as GroupRemoveIcon } from './GroupRemoveIcon';
|
|
85
87
|
export { default as HistoryIcon } from './HistoryIcon';
|
|
86
88
|
export { default as HomeIcon } from './HomeIcon';
|
|
87
89
|
export { default as HorseIcon } from './HorseIcon';
|
|
@@ -90,6 +92,7 @@ export { default as IncomingIcon } from './IncomingIcon';
|
|
|
90
92
|
export { default as InfoIcon } from './InfoIcon';
|
|
91
93
|
export { default as InheritableIcon } from './InheritableIcon';
|
|
92
94
|
export { default as InkIcon } from './InkIcon';
|
|
95
|
+
export { default as LegalEntityIcon } from './LegalEntityIcon';
|
|
93
96
|
export { default as LinkIcon } from './LinkIcon';
|
|
94
97
|
export { default as LockIcon } from './LockIcon';
|
|
95
98
|
export { default as LogoIcon } from './LogoIcon';
|
|
@@ -99,6 +102,7 @@ export { default as MenuIcon } from './MenuIcon';
|
|
|
99
102
|
export { default as MinusIcon } from './MinusIcon';
|
|
100
103
|
export { default as MoreIcon } from './MoreIcon';
|
|
101
104
|
export { default as NameScreeningIcon } from './NameScreeningIcon';
|
|
105
|
+
export { default as NaturalPersonIcon } from './NaturalPersonIcon';
|
|
102
106
|
export { default as NewIcon } from './NewIcon';
|
|
103
107
|
export { default as NotFoundIcon } from './NotFoundIcon';
|
|
104
108
|
export { default as NotificationsOutlineIcon } from './NotificationsOutlineIcon';
|
package/lib/cjs/icons/index.js
CHANGED
|
@@ -82,6 +82,8 @@ module.exports.GaugeLightIcon = require('./GaugeLightIcon.js');
|
|
|
82
82
|
module.exports.GenerateFileIcon = require('./GenerateFileIcon.js');
|
|
83
83
|
module.exports.GraphIcon = require('./GraphIcon.js');
|
|
84
84
|
module.exports.GroupIcon = require('./GroupIcon.js');
|
|
85
|
+
module.exports.GroupAddIcon = require('./GroupAddIcon.js');
|
|
86
|
+
module.exports.GroupRemoveIcon = require('./GroupRemoveIcon.js');
|
|
85
87
|
module.exports.HistoryIcon = require('./HistoryIcon.js');
|
|
86
88
|
module.exports.HomeIcon = require('./HomeIcon.js');
|
|
87
89
|
module.exports.HorseIcon = require('./HorseIcon.js');
|
|
@@ -90,6 +92,7 @@ module.exports.IncomingIcon = require('./IncomingIcon.js');
|
|
|
90
92
|
module.exports.InfoIcon = require('./InfoIcon.js');
|
|
91
93
|
module.exports.InheritableIcon = require('./InheritableIcon.js');
|
|
92
94
|
module.exports.InkIcon = require('./InkIcon.js');
|
|
95
|
+
module.exports.LegalEntityIcon = require('./LegalEntityIcon.js');
|
|
93
96
|
module.exports.LinkIcon = require('./LinkIcon.js');
|
|
94
97
|
module.exports.LockIcon = require('./LockIcon.js');
|
|
95
98
|
module.exports.LogoIcon = require('./LogoIcon.js');
|
|
@@ -99,6 +102,7 @@ module.exports.MenuIcon = require('./MenuIcon.js');
|
|
|
99
102
|
module.exports.MinusIcon = require('./MinusIcon.js');
|
|
100
103
|
module.exports.MoreIcon = require('./MoreIcon.js');
|
|
101
104
|
module.exports.NameScreeningIcon = require('./NameScreeningIcon.js');
|
|
105
|
+
module.exports.NaturalPersonIcon = require('./NaturalPersonIcon.js');
|
|
102
106
|
module.exports.NewIcon = require('./NewIcon.js');
|
|
103
107
|
module.exports.NotFoundIcon = require('./NotFoundIcon.js');
|
|
104
108
|
module.exports.NotificationsOutlineIcon = require('./NotificationsOutlineIcon.js');
|
|
@@ -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 GroupAddIcon = ({
|
|
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 48 48",
|
|
20
|
+
width: defaultValues.size,
|
|
21
|
+
height: defaultValues.size,
|
|
22
|
+
fill: color,
|
|
23
|
+
ref: ref
|
|
24
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
25
|
+
d: "M23.7 23.7q1.3-1.6 1.925-3.3.625-1.7.625-3.95t-.625-3.95Q25 10.8 23.7 9.2q3.8-.85 6.675 1.15t2.875 6.1q0 4.1-2.875 6.1T23.7 23.7ZM33.4 40q.5-.1.8-.525.3-.425.3-1.075v-3.1q0-2.55-1.3-4.75t-4.5-3.7q8.65 1.1 11.825 3.2 3.175 2.1 3.175 5.25v3.2q0 .65-.425 1.075Q42.85 40 42.2 40Zm8.1-14.45q-.65 0-1.075-.425Q40 24.7 40 24.05v-3.5h-3.5q-.65 0-1.075-.425Q35 19.7 35 19.05q0-.65.425-1.075.425-.425 1.075-.425H40v-3.5q0-.65.425-1.075.425-.425 1.075-.425.65 0 1.075.425Q43 13.4 43 14.05v3.5h3.5q.65 0 1.075.425Q48 18.4 48 19.05q0 .65-.425 1.075-.425.425-1.075.425H43v3.5q0 .65-.425 1.075-.425.425-1.075.425Zm-25.75-1.6q-3.3 0-5.4-2.1-2.1-2.1-2.1-5.4 0-3.3 2.1-5.4 2.1-2.1 5.4-2.1 3.3 0 5.4 2.1 2.1 2.1 2.1 5.4 0 3.3-2.1 5.4-2.1 2.1-5.4 2.1ZM1.5 40q-.65 0-1.075-.425Q0 39.15 0 38.5v-3.2q0-1.75.925-3.175Q1.85 30.7 3.4 30q3.6-1.6 6.425-2.3 2.825-.7 5.925-.7 3.1 0 5.9.7 2.8.7 6.4 2.3 1.55.7 2.5 2.125t.95 3.175v3.2q0 .65-.425 1.075Q30.65 40 30 40Zm14.25-19.05q1.95 0 3.225-1.275Q20.25 18.4 20.25 16.45q0-1.95-1.275-3.225Q17.7 11.95 15.75 11.95q-1.95 0-3.225 1.275Q11.25 14.5 11.25 16.45q0 1.95 1.275 3.225Q13.8 20.95 15.75 20.95ZM3 37h25.5v-1.7q0-.8-.4-1.5t-1.25-1.1Q23.4 31.1 21 30.55 18.6 30 15.75 30t-5.225.55Q8.15 31.1 4.6 32.7q-.75.35-1.175 1.075Q3 34.5 3 35.3Zm12.75-20.55Zm0 20.55Z"
|
|
26
|
+
}));
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
const ForwardRef = /*#__PURE__*/forwardRef(GroupAddIcon);
|
|
30
|
+
export default ForwardRef;
|
|
@@ -16,13 +16,13 @@ const GroupIcon = ({
|
|
|
16
16
|
const color = useMemo(() => get(defaultValues.palette, defaultValues.color, defaultValues.color), [defaultValues.color, defaultValues.palette]);
|
|
17
17
|
return /*#__PURE__*/createElement("svg", Object.assign({
|
|
18
18
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19
|
-
viewBox: "0 0
|
|
19
|
+
viewBox: "0 0 48 48",
|
|
20
20
|
width: defaultValues.size,
|
|
21
21
|
height: defaultValues.size,
|
|
22
22
|
fill: color,
|
|
23
23
|
ref: ref
|
|
24
24
|
}, props), /*#__PURE__*/createElement("path", {
|
|
25
|
-
d: "
|
|
25
|
+
d: "M1.9 40v-4.7q0-1.75.9-3.175Q3.7 30.7 5.3 30q3.65-1.6 6.575-2.3Q14.8 27 17.9 27q3.1 0 6 .7t6.55 2.3q1.6.7 2.525 2.125.925 1.425.925 3.175V40Zm35 0v-4.7q0-3.15-1.6-5.175t-4.2-3.275q3.45.4 6.5 1.175t4.95 1.775q1.65.95 2.6 2.35.95 1.4.95 3.15V40Zm-19-16.05q-3.3 0-5.4-2.1-2.1-2.1-2.1-5.4 0-3.3 2.1-5.4 2.1-2.1 5.4-2.1 3.3 0 5.4 2.1 2.1 2.1 2.1 5.4 0 3.3-2.1 5.4-2.1 2.1-5.4 2.1Zm18-7.5q0 3.3-2.1 5.4-2.1 2.1-5.4 2.1-.55 0-1.225-.075T25.95 23.6q1.2-1.25 1.825-3.075.625-1.825.625-4.075t-.625-3.975Q27.15 10.75 25.95 9.3q.55-.15 1.225-.25t1.225-.1q3.3 0 5.4 2.1 2.1 2.1 2.1 5.4ZM4.9 37h26v-1.7q0-.8-.475-1.55T29.25 32.7q-3.6-1.6-6.05-2.15-2.45-.55-5.3-.55-2.85 0-5.325.55T6.5 32.7q-.7.3-1.15 1.05-.45.75-.45 1.55Zm13-16.05q1.95 0 3.225-1.275Q22.4 18.4 22.4 16.45q0-1.95-1.275-3.225Q19.85 11.95 17.9 11.95q-1.95 0-3.225 1.275Q13.4 14.5 13.4 16.45q0 1.95 1.275 3.225Q15.95 20.95 17.9 20.95Zm0 16.05Zm0-20.55Z"
|
|
26
26
|
}));
|
|
27
27
|
};
|
|
28
28
|
|
|
@@ -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 GroupRemoveIcon = ({
|
|
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 48 48",
|
|
20
|
+
width: defaultValues.size,
|
|
21
|
+
height: defaultValues.size,
|
|
22
|
+
fill: color,
|
|
23
|
+
ref: ref
|
|
24
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
25
|
+
d: "M23.7 23.7q1.3-1.6 1.925-3.3.625-1.7.625-3.95t-.625-3.95Q25 10.8 23.7 9.2q3.8-.85 6.675 1.15t2.875 6.1q0 4.1-2.875 6.1T23.7 23.7ZM33.4 40q.5-.1.8-.525.3-.425.3-1.075v-3.1q0-2.55-1.3-4.75t-4.5-3.7q8.65 1.1 11.825 3.2 3.175 2.1 3.175 5.25v3.2q0 .65-.425 1.075Q42.85 40 42.2 40Zm3.1-19.45q-.65 0-1.075-.425Q35 19.7 35 19.05q0-.65.425-1.075.425-.425 1.075-.425h10q.65 0 1.075.425Q48 18.4 48 19.05q0 .65-.425 1.075-.425.425-1.075.425Zm-20.75 3.4q-3.3 0-5.4-2.1-2.1-2.1-2.1-5.4 0-3.3 2.1-5.4 2.1-2.1 5.4-2.1 3.3 0 5.4 2.1 2.1 2.1 2.1 5.4 0 3.3-2.1 5.4-2.1 2.1-5.4 2.1ZM1.5 40q-.65 0-1.075-.425Q0 39.15 0 38.5v-3.2q0-1.75.925-3.175Q1.85 30.7 3.4 30q3.6-1.6 6.425-2.3 2.825-.7 5.925-.7 3.1 0 5.9.7 2.8.7 6.4 2.3 1.55.7 2.5 2.125t.95 3.175v3.2q0 .65-.425 1.075Q30.65 40 30 40Zm14.25-19.05q1.95 0 3.225-1.275Q20.25 18.4 20.25 16.45q0-1.95-1.275-3.225Q17.7 11.95 15.75 11.95q-1.95 0-3.225 1.275Q11.25 14.5 11.25 16.45q0 1.95 1.275 3.225Q13.8 20.95 15.75 20.95ZM3 37h25.5v-1.7q0-.8-.4-1.5t-1.25-1.1Q23.4 31.1 21 30.55 18.6 30 15.75 30t-5.225.55Q8.15 31.1 4.6 32.7q-.75.35-1.175 1.075Q3 34.5 3 35.3Zm12.75-20.55Zm0 20.55Z"
|
|
26
|
+
}));
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
const ForwardRef = /*#__PURE__*/forwardRef(GroupRemoveIcon);
|
|
30
|
+
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 LegalEntityIcon = ({
|
|
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 48 48",
|
|
20
|
+
width: defaultValues.size,
|
|
21
|
+
height: defaultValues.size,
|
|
22
|
+
fill: color,
|
|
23
|
+
ref: ref
|
|
24
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
25
|
+
d: "M6 42V14.25h8.25V6h19.5v16.5H42V42H26.65v-8.25h-5.3V42Zm3-3h5.25v-5.25H9Zm0-8.25h5.25V25.5H9Zm0-8.25h5.25v-5.25H9Zm8.25 8.25h5.25V25.5h-5.25Zm0-8.25h5.25v-5.25h-5.25Zm0-8.25h5.25V9h-5.25Zm8.25 16.5h5.25V25.5H25.5Zm0-8.25h5.25v-5.25H25.5Zm0-8.25h5.25V9H25.5ZM33.75 39H39v-5.25h-5.25Zm0-8.25H39V25.5h-5.25Z"
|
|
26
|
+
}));
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
const ForwardRef = /*#__PURE__*/forwardRef(LegalEntityIcon);
|
|
30
|
+
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 NaturalPersonIcon = ({
|
|
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 48 48",
|
|
20
|
+
width: defaultValues.size,
|
|
21
|
+
height: defaultValues.size,
|
|
22
|
+
fill: color,
|
|
23
|
+
ref: ref
|
|
24
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
25
|
+
d: "M24 23.95q-3.3 0-5.4-2.1-2.1-2.1-2.1-5.4 0-3.3 2.1-5.4 2.1-2.1 5.4-2.1 3.3 0 5.4 2.1 2.1 2.1 2.1 5.4 0 3.3-2.1 5.4-2.1 2.1-5.4 2.1ZM8 40v-4.7q0-1.9.95-3.25T11.4 30q3.35-1.5 6.425-2.25Q20.9 27 24 27q3.1 0 6.15.775 3.05.775 6.4 2.225 1.55.7 2.5 2.05.95 1.35.95 3.25V40Zm3-3h26v-1.7q0-.8-.475-1.525-.475-.725-1.175-1.075-3.2-1.55-5.85-2.125Q26.85 30 24 30t-5.55.575q-2.7.575-5.85 2.125-.7.35-1.15 1.075Q11 34.5 11 35.3Zm13-16.05q1.95 0 3.225-1.275Q28.5 18.4 28.5 16.45q0-1.95-1.275-3.225Q25.95 11.95 24 11.95q-1.95 0-3.225 1.275Q19.5 14.5 19.5 16.45q0 1.95 1.275 3.225Q22.05 20.95 24 20.95Zm0-4.5ZM24 37Z"
|
|
26
|
+
}));
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
const ForwardRef = /*#__PURE__*/forwardRef(NaturalPersonIcon);
|
|
30
|
+
export default ForwardRef;
|
package/lib/esm/icons/index.d.ts
CHANGED
|
@@ -82,6 +82,8 @@ export { default as GaugeLightIcon } from './GaugeLightIcon';
|
|
|
82
82
|
export { default as GenerateFileIcon } from './GenerateFileIcon';
|
|
83
83
|
export { default as GraphIcon } from './GraphIcon';
|
|
84
84
|
export { default as GroupIcon } from './GroupIcon';
|
|
85
|
+
export { default as GroupAddIcon } from './GroupAddIcon';
|
|
86
|
+
export { default as GroupRemoveIcon } from './GroupRemoveIcon';
|
|
85
87
|
export { default as HistoryIcon } from './HistoryIcon';
|
|
86
88
|
export { default as HomeIcon } from './HomeIcon';
|
|
87
89
|
export { default as HorseIcon } from './HorseIcon';
|
|
@@ -90,6 +92,7 @@ export { default as IncomingIcon } from './IncomingIcon';
|
|
|
90
92
|
export { default as InfoIcon } from './InfoIcon';
|
|
91
93
|
export { default as InheritableIcon } from './InheritableIcon';
|
|
92
94
|
export { default as InkIcon } from './InkIcon';
|
|
95
|
+
export { default as LegalEntityIcon } from './LegalEntityIcon';
|
|
93
96
|
export { default as LinkIcon } from './LinkIcon';
|
|
94
97
|
export { default as LockIcon } from './LockIcon';
|
|
95
98
|
export { default as LogoIcon } from './LogoIcon';
|
|
@@ -99,6 +102,7 @@ export { default as MenuIcon } from './MenuIcon';
|
|
|
99
102
|
export { default as MinusIcon } from './MinusIcon';
|
|
100
103
|
export { default as MoreIcon } from './MoreIcon';
|
|
101
104
|
export { default as NameScreeningIcon } from './NameScreeningIcon';
|
|
105
|
+
export { default as NaturalPersonIcon } from './NaturalPersonIcon';
|
|
102
106
|
export { default as NewIcon } from './NewIcon';
|
|
103
107
|
export { default as NotFoundIcon } from './NotFoundIcon';
|
|
104
108
|
export { default as NotificationsOutlineIcon } from './NotificationsOutlineIcon';
|
package/lib/esm/icons/index.js
CHANGED
|
@@ -82,6 +82,8 @@ export { default as GaugeLightIcon } from './GaugeLightIcon.js';
|
|
|
82
82
|
export { default as GenerateFileIcon } from './GenerateFileIcon.js';
|
|
83
83
|
export { default as GraphIcon } from './GraphIcon.js';
|
|
84
84
|
export { default as GroupIcon } from './GroupIcon.js';
|
|
85
|
+
export { default as GroupAddIcon } from './GroupAddIcon.js';
|
|
86
|
+
export { default as GroupRemoveIcon } from './GroupRemoveIcon.js';
|
|
85
87
|
export { default as HistoryIcon } from './HistoryIcon.js';
|
|
86
88
|
export { default as HomeIcon } from './HomeIcon.js';
|
|
87
89
|
export { default as HorseIcon } from './HorseIcon.js';
|
|
@@ -90,6 +92,7 @@ export { default as IncomingIcon } from './IncomingIcon.js';
|
|
|
90
92
|
export { default as InfoIcon } from './InfoIcon.js';
|
|
91
93
|
export { default as InheritableIcon } from './InheritableIcon.js';
|
|
92
94
|
export { default as InkIcon } from './InkIcon.js';
|
|
95
|
+
export { default as LegalEntityIcon } from './LegalEntityIcon.js';
|
|
93
96
|
export { default as LinkIcon } from './LinkIcon.js';
|
|
94
97
|
export { default as LockIcon } from './LockIcon.js';
|
|
95
98
|
export { default as LogoIcon } from './LogoIcon.js';
|
|
@@ -99,6 +102,7 @@ export { default as MenuIcon } from './MenuIcon.js';
|
|
|
99
102
|
export { default as MinusIcon } from './MinusIcon.js';
|
|
100
103
|
export { default as MoreIcon } from './MoreIcon.js';
|
|
101
104
|
export { default as NameScreeningIcon } from './NameScreeningIcon.js';
|
|
105
|
+
export { default as NaturalPersonIcon } from './NaturalPersonIcon.js';
|
|
102
106
|
export { default as NewIcon } from './NewIcon.js';
|
|
103
107
|
export { default as NotFoundIcon } from './NotFoundIcon.js';
|
|
104
108
|
export { default as NotificationsOutlineIcon } from './NotificationsOutlineIcon.js';
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@imtf/icons",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.8",
|
|
5
5
|
"description": "Library of icons (React components, font and svg)",
|
|
6
6
|
"main": "./lib/cjs/index.js",
|
|
7
7
|
"module": "./lib/esm/index.js",
|
|
8
8
|
"types": "./lib/esm/index.d.ts",
|
|
9
|
-
"sideEffects":
|
|
9
|
+
"sideEffects": false,
|
|
10
10
|
"repository": "ssh://git@gitlab.imtf-devops.com:2222/web/icons.git",
|
|
11
11
|
"homepage": "https://gitlab.imtf-devops.com/web/icons",
|
|
12
12
|
"contributors": [
|
package/svg/.DS_Store
ADDED
|
Binary file
|
package/svg/Group.svg
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0
|
|
2
|
-
<path d="
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
|
|
2
|
+
<path d="M1.9 40v-4.7q0-1.75.9-3.175Q3.7 30.7 5.3 30q3.65-1.6 6.575-2.3Q14.8 27 17.9 27q3.1 0 6 .7t6.55 2.3q1.6.7 2.525 2.125.925 1.425.925 3.175V40Zm35 0v-4.7q0-3.15-1.6-5.175t-4.2-3.275q3.45.4 6.5 1.175t4.95 1.775q1.65.95 2.6 2.35.95 1.4.95 3.15V40Zm-19-16.05q-3.3 0-5.4-2.1-2.1-2.1-2.1-5.4 0-3.3 2.1-5.4 2.1-2.1 5.4-2.1 3.3 0 5.4 2.1 2.1 2.1 2.1 5.4 0 3.3-2.1 5.4-2.1 2.1-5.4 2.1Zm18-7.5q0 3.3-2.1 5.4-2.1 2.1-5.4 2.1-.55 0-1.225-.075T25.95 23.6q1.2-1.25 1.825-3.075.625-1.825.625-4.075t-.625-3.975Q27.15 10.75 25.95 9.3q.55-.15 1.225-.25t1.225-.1q3.3 0 5.4 2.1 2.1 2.1 2.1 5.4ZM4.9 37h26v-1.7q0-.8-.475-1.55T29.25 32.7q-3.6-1.6-6.05-2.15-2.45-.55-5.3-.55-2.85 0-5.325.55T6.5 32.7q-.7.3-1.15 1.05-.45.75-.45 1.55Zm13-16.05q1.95 0 3.225-1.275Q22.4 18.4 22.4 16.45q0-1.95-1.275-3.225Q19.85 11.95 17.9 11.95q-1.95 0-3.225 1.275Q13.4 14.5 13.4 16.45q0 1.95 1.275 3.225Q15.95 20.95 17.9 20.95Zm0 16.05Zm0-20.55Z"/>
|
|
3
3
|
</svg>
|
package/svg/GroupAdd.svg
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
|
|
2
|
+
<path d="M23.7 23.7q1.3-1.6 1.925-3.3.625-1.7.625-3.95t-.625-3.95Q25 10.8 23.7 9.2q3.8-.85 6.675 1.15t2.875 6.1q0 4.1-2.875 6.1T23.7 23.7ZM33.4 40q.5-.1.8-.525.3-.425.3-1.075v-3.1q0-2.55-1.3-4.75t-4.5-3.7q8.65 1.1 11.825 3.2 3.175 2.1 3.175 5.25v3.2q0 .65-.425 1.075Q42.85 40 42.2 40Zm8.1-14.45q-.65 0-1.075-.425Q40 24.7 40 24.05v-3.5h-3.5q-.65 0-1.075-.425Q35 19.7 35 19.05q0-.65.425-1.075.425-.425 1.075-.425H40v-3.5q0-.65.425-1.075.425-.425 1.075-.425.65 0 1.075.425Q43 13.4 43 14.05v3.5h3.5q.65 0 1.075.425Q48 18.4 48 19.05q0 .65-.425 1.075-.425.425-1.075.425H43v3.5q0 .65-.425 1.075-.425.425-1.075.425Zm-25.75-1.6q-3.3 0-5.4-2.1-2.1-2.1-2.1-5.4 0-3.3 2.1-5.4 2.1-2.1 5.4-2.1 3.3 0 5.4 2.1 2.1 2.1 2.1 5.4 0 3.3-2.1 5.4-2.1 2.1-5.4 2.1ZM1.5 40q-.65 0-1.075-.425Q0 39.15 0 38.5v-3.2q0-1.75.925-3.175Q1.85 30.7 3.4 30q3.6-1.6 6.425-2.3 2.825-.7 5.925-.7 3.1 0 5.9.7 2.8.7 6.4 2.3 1.55.7 2.5 2.125t.95 3.175v3.2q0 .65-.425 1.075Q30.65 40 30 40Zm14.25-19.05q1.95 0 3.225-1.275Q20.25 18.4 20.25 16.45q0-1.95-1.275-3.225Q17.7 11.95 15.75 11.95q-1.95 0-3.225 1.275Q11.25 14.5 11.25 16.45q0 1.95 1.275 3.225Q13.8 20.95 15.75 20.95ZM3 37h25.5v-1.7q0-.8-.4-1.5t-1.25-1.1Q23.4 31.1 21 30.55 18.6 30 15.75 30t-5.225.55Q8.15 31.1 4.6 32.7q-.75.35-1.175 1.075Q3 34.5 3 35.3Zm12.75-20.55Zm0 20.55Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
|
|
2
|
+
<path d="M23.7 23.7q1.3-1.6 1.925-3.3.625-1.7.625-3.95t-.625-3.95Q25 10.8 23.7 9.2q3.8-.85 6.675 1.15t2.875 6.1q0 4.1-2.875 6.1T23.7 23.7ZM33.4 40q.5-.1.8-.525.3-.425.3-1.075v-3.1q0-2.55-1.3-4.75t-4.5-3.7q8.65 1.1 11.825 3.2 3.175 2.1 3.175 5.25v3.2q0 .65-.425 1.075Q42.85 40 42.2 40Zm3.1-19.45q-.65 0-1.075-.425Q35 19.7 35 19.05q0-.65.425-1.075.425-.425 1.075-.425h10q.65 0 1.075.425Q48 18.4 48 19.05q0 .65-.425 1.075-.425.425-1.075.425Zm-20.75 3.4q-3.3 0-5.4-2.1-2.1-2.1-2.1-5.4 0-3.3 2.1-5.4 2.1-2.1 5.4-2.1 3.3 0 5.4 2.1 2.1 2.1 2.1 5.4 0 3.3-2.1 5.4-2.1 2.1-5.4 2.1ZM1.5 40q-.65 0-1.075-.425Q0 39.15 0 38.5v-3.2q0-1.75.925-3.175Q1.85 30.7 3.4 30q3.6-1.6 6.425-2.3 2.825-.7 5.925-.7 3.1 0 5.9.7 2.8.7 6.4 2.3 1.55.7 2.5 2.125t.95 3.175v3.2q0 .65-.425 1.075Q30.65 40 30 40Zm14.25-19.05q1.95 0 3.225-1.275Q20.25 18.4 20.25 16.45q0-1.95-1.275-3.225Q17.7 11.95 15.75 11.95q-1.95 0-3.225 1.275Q11.25 14.5 11.25 16.45q0 1.95 1.275 3.225Q13.8 20.95 15.75 20.95ZM3 37h25.5v-1.7q0-.8-.4-1.5t-1.25-1.1Q23.4 31.1 21 30.55 18.6 30 15.75 30t-5.225.55Q8.15 31.1 4.6 32.7q-.75.35-1.175 1.075Q3 34.5 3 35.3Zm12.75-20.55Zm0 20.55Z"/>
|
|
3
|
+
</svg>
|
package/svg/group.json
CHANGED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
|
|
2
|
+
<path d="M6 42V14.25h8.25V6h19.5v16.5H42V42H26.65v-8.25h-5.3V42Zm3-3h5.25v-5.25H9Zm0-8.25h5.25V25.5H9Zm0-8.25h5.25v-5.25H9Zm8.25 8.25h5.25V25.5h-5.25Zm0-8.25h5.25v-5.25h-5.25Zm0-8.25h5.25V9h-5.25Zm8.25 16.5h5.25V25.5H25.5Zm0-8.25h5.25v-5.25H25.5Zm0-8.25h5.25V9H25.5ZM33.75 39H39v-5.25h-5.25Zm0-8.25H39V25.5h-5.25Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
|
|
2
|
+
<path d="M24 23.95q-3.3 0-5.4-2.1-2.1-2.1-2.1-5.4 0-3.3 2.1-5.4 2.1-2.1 5.4-2.1 3.3 0 5.4 2.1 2.1 2.1 2.1 5.4 0 3.3-2.1 5.4-2.1 2.1-5.4 2.1ZM8 40v-4.7q0-1.9.95-3.25T11.4 30q3.35-1.5 6.425-2.25Q20.9 27 24 27q3.1 0 6.15.775 3.05.775 6.4 2.225 1.55.7 2.5 2.05.95 1.35.95 3.25V40Zm3-3h26v-1.7q0-.8-.475-1.525-.475-.725-1.175-1.075-3.2-1.55-5.85-2.125Q26.85 30 24 30t-5.55.575q-2.7.575-5.85 2.125-.7.35-1.15 1.075Q11 34.5 11 35.3Zm13-16.05q1.95 0 3.225-1.275Q28.5 18.4 28.5 16.45q0-1.95-1.275-3.225Q25.95 11.95 24 11.95q-1.95 0-3.225 1.275Q19.5 14.5 19.5 16.45q0 1.95 1.275 3.225Q22.05 20.95 24 20.95Zm0-4.5ZM24 37Z"/>
|
|
3
|
+
</svg>
|