@imtf/icons 0.2.5 → 0.2.7

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.
Files changed (47) hide show
  1. package/changelog.md +59 -0
  2. package/lib/cjs/icons/GroupAddIcon.d.ts +7 -0
  3. package/lib/cjs/icons/GroupAddIcon.js +39 -0
  4. package/lib/cjs/icons/GroupIcon.js +2 -2
  5. package/lib/cjs/icons/GroupRemoveIcon.d.ts +7 -0
  6. package/lib/cjs/icons/GroupRemoveIcon.js +39 -0
  7. package/lib/cjs/icons/IncomingIcon.d.ts +7 -0
  8. package/lib/cjs/icons/IncomingIcon.js +39 -0
  9. package/lib/cjs/icons/LegalEntityIcon.d.ts +7 -0
  10. package/lib/cjs/icons/LegalEntityIcon.js +39 -0
  11. package/lib/cjs/icons/NaturalPersonIcon.d.ts +7 -0
  12. package/lib/cjs/icons/NaturalPersonIcon.js +39 -0
  13. package/lib/cjs/icons/OutgoingIcon.d.ts +7 -0
  14. package/lib/cjs/icons/OutgoingIcon.js +39 -0
  15. package/lib/cjs/icons/index.d.ts +6 -0
  16. package/lib/cjs/icons/index.js +6 -0
  17. package/lib/esm/icons/GroupAddIcon.d.ts +7 -0
  18. package/lib/esm/icons/GroupAddIcon.js +30 -0
  19. package/lib/esm/icons/GroupIcon.js +2 -2
  20. package/lib/esm/icons/GroupRemoveIcon.d.ts +7 -0
  21. package/lib/esm/icons/GroupRemoveIcon.js +30 -0
  22. package/lib/esm/icons/IncomingIcon.d.ts +7 -0
  23. package/lib/esm/icons/IncomingIcon.js +30 -0
  24. package/lib/esm/icons/LegalEntityIcon.d.ts +7 -0
  25. package/lib/esm/icons/LegalEntityIcon.js +30 -0
  26. package/lib/esm/icons/NaturalPersonIcon.d.ts +7 -0
  27. package/lib/esm/icons/NaturalPersonIcon.js +30 -0
  28. package/lib/esm/icons/OutgoingIcon.d.ts +7 -0
  29. package/lib/esm/icons/OutgoingIcon.js +30 -0
  30. package/lib/esm/icons/index.d.ts +6 -0
  31. package/lib/esm/icons/index.js +6 -0
  32. package/package.json +1 -1
  33. package/svg/.DS_Store +0 -0
  34. package/svg/Group.svg +2 -2
  35. package/svg/GroupAdd.svg +3 -0
  36. package/svg/GroupRemove.svg +3 -0
  37. package/svg/Incoming.svg +3 -0
  38. package/svg/Outgoing.svg +3 -0
  39. package/svg/group.json +4 -2
  40. package/svg/groupAdd.json +4 -0
  41. package/svg/groupRemove.json +4 -0
  42. package/svg/incoming.json +7 -0
  43. package/svg/legalEntity.json +6 -0
  44. package/svg/legalEntity.svg +3 -0
  45. package/svg/naturalPerson.json +6 -0
  46. package/svg/naturalPerson.svg +3 -0
  47. package/svg/outgoing.json +7 -0
package/changelog.md ADDED
@@ -0,0 +1,59 @@
1
+ # Icons changelog
2
+
3
+ ## 0.2.7
4
+
5
+ - Updated Group icon
6
+ - Add GroupAdd, GroupRemove, LegalEntity, NaturalPerson icons
7
+
8
+ ## 0.2.6
9
+
10
+ - Add Incoming & Outgoing icons
11
+
12
+ ## 0.2.5
13
+
14
+ - Add paddingless logo v0.2.5
15
+
16
+ ## 0.2.4
17
+
18
+ - Rename logo icon to fix build issue
19
+
20
+ ## 0.2.3
21
+
22
+ - Add correct IMTF logo version
23
+
24
+ ## 0.2.2
25
+
26
+ - Added Eye Off icon
27
+
28
+ ## 0.2.1
29
+
30
+ - Added React 18 to peer dependencies.
31
+
32
+ ## 0.2.0
33
+
34
+ - Forwarded ref to svg component / icons
35
+
36
+ ## 0.1.3
37
+
38
+ - Fix logo icon color
39
+
40
+ ## 0.1.2
41
+
42
+ - Fix changelog issue
43
+ - Add new logo icon
44
+
45
+ ## 0.1.1
46
+
47
+ - Add props interface to ts icons
48
+
49
+ ## 0.1.0
50
+
51
+ - Added modules icons
52
+
53
+ ## 0.0.8
54
+
55
+ - Remove side effects to enable tree shaking
56
+
57
+ ## 0.0.7
58
+
59
+ - main export added to package js (was preventing test passing in @imtf/react-component)
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function GroupAddIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default GroupAddIcon;
@@ -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 24 24",
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: "M4.5 14.25c1.86421356 0 3.375 1.5107864 3.375 3.375 0 1.247306-.67632868 2.3363946-1.68232879 2.9206083 1.12581746.4042206 2.11127326 1.2122689 2.71903157 2.3513344.19498814.3654484.05680283.8197719-.30864552 1.0147601-.36544836.1949881-.81977191.0568028-1.01476004-.3086455-.91018409-1.7058745-3.03001102-2.3511942-4.73521757-1.4413665-.61281104.3269973-1.11439153.8285778-1.44138882 1.4413889-.1950005.3654417-.64932872.5036116-1.01477048.3086111-.36544176-.1950005-.5036117-.6493287-.30861118-1.0147705.4670027-.8751889 1.18342222-1.5916084 2.05863357-2.0586231.21591276-.1152021.43647632-.2129536.66007548-.2937466C1.80129681 19.9613432 1.125 18.8722767 1.125 17.625c0-1.8642136 1.51078644-3.375 3.375-3.375Zm15 0c1.8642136 0 3.375 1.5107864 3.375 3.375 0 1.247306-.6763287 2.3363946-1.6823288 2.9206083 1.1258175.4042206 2.1112733 1.2122689 2.7190316 2.3513344.1949881.3654484.0568028.8197719-.3086455 1.0147601-.3654484.1949881-.8197719.0568028-1.0147601-.3086455-.9101841-1.7058745-3.030011-2.3511942-4.7352175-1.4413665-.6128111.3269973-1.1143916.8285778-1.4413889 1.4413889-.1950005.3654417-.6493287.5036116-1.0147705.3086111-.3654417-.1950005-.5036116-.6493287-.3086111-1.0147705.4670027-.8751889 1.1834222-1.5916084 2.0586335-2.0586231.2159128-.1152021.4364764-.2129536.6600755-.2937466C16.8012968 19.9613432 16.125 18.8722767 16.125 17.625c0-1.8642136 1.5107864-3.375 3.375-3.375Zm-15 1.5c-1.03578644 0-1.875.8392136-1.875 1.875S3.46421356 19.5 4.5 19.5c1.03578644 0 1.875-.8392136 1.875-1.875S5.53578644 15.75 4.5 15.75Zm15 0c-1.0357864 0-1.875.8392136-1.875 1.875S18.4642136 19.5 19.5 19.5s1.875-.8392136 1.875-1.875-.8392136-1.875-1.875-1.875ZM18 10.5c.8282136 0 1.5.6717864 1.5 1.5 0 .4142136-.3357864.75-.75.75S18 12.4142136 18 12H6l-.00684662.1017706C5.94349096 12.4678461 5.62969577 12.75 5.25 12.75c-.41421356 0-.75-.3357864-.75-.75 0-.8282136.67178644-1.5 1.5-1.5ZM12 0c1.8642136 0 3.375 1.51078644 3.375 3.375 0 1.24607959-.6749993 2.33425264-1.6793622 2.91888347.7981982.28545059 1.5348814.77781331 2.1243063 1.46978034.268596.3153237.2307158.78868418-.0846079 1.05728024-.3153237.26859606-.7886842.23071583-1.0572803-.08460786-1.2604969-1.47978552-3.4811526-1.65770306-4.95950518-.39842892-.14345453.12272411-.27691934.25618892-.39964345.39964345-.26926683.3147511-.7427069.35162338-1.05745799.08235655-.3147511-.26926683-.35162338-.7427069-.08235655-1.05745799.17327589-.20254547.36181108-.39108066.56557108-.56539333.4753669-.40492256 1.00437562-.70575333 1.55928549-.90471784C9.29997613 5.70921531 8.625 4.62105822 8.625 3.375 8.625 1.51078644 10.1357864 0 12 0Zm0 1.5c-1.0357864 0-1.875.83921356-1.875 1.875 0 1.03578644.8392136 1.875 1.875 1.875s1.875-.83921356 1.875-1.875c0-1.03578644-.8392136-1.875-1.875-1.875Z"
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,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function GroupRemoveIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default GroupRemoveIcon;
@@ -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,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function IncomingIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default IncomingIcon;
@@ -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 IncomingIcon = ({
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 32 32",
29
+ width: defaultValues.size,
30
+ height: defaultValues.size,
31
+ fill: color,
32
+ ref: ref
33
+ }, props), /*#__PURE__*/createElement("path", {
34
+ d: "m8.026 23 1.698-1.652-4.185-4.168H31v-2.36H5.5l4.184-4.168L8.026 9 1 16z"
35
+ }));
36
+ };
37
+
38
+ const ForwardRef = forwardRef(IncomingIcon);
39
+ module.exports = ForwardRef;
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function LegalEntityIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default LegalEntityIcon;
@@ -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,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function NaturalPersonIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default NaturalPersonIcon;
@@ -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;
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function OutgoingIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default OutgoingIcon;
@@ -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 OutgoingIcon = ({
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 32 32",
29
+ width: defaultValues.size,
30
+ height: defaultValues.size,
31
+ fill: color,
32
+ ref: ref
33
+ }, props), /*#__PURE__*/createElement("path", {
34
+ d: "m23.974 23-1.698-1.652 4.185-4.168H1v-2.36h25.5l-4.184-4.168L23.974 9 31 16z"
35
+ }));
36
+ };
37
+
38
+ const ForwardRef = forwardRef(OutgoingIcon);
39
+ module.exports = ForwardRef;
@@ -82,13 +82,17 @@ 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';
88
90
  export { default as InboxIcon } from './InboxIcon';
91
+ export { default as IncomingIcon } from './IncomingIcon';
89
92
  export { default as InfoIcon } from './InfoIcon';
90
93
  export { default as InheritableIcon } from './InheritableIcon';
91
94
  export { default as InkIcon } from './InkIcon';
95
+ export { default as LegalEntityIcon } from './LegalEntityIcon';
92
96
  export { default as LinkIcon } from './LinkIcon';
93
97
  export { default as LockIcon } from './LockIcon';
94
98
  export { default as LogoIcon } from './LogoIcon';
@@ -98,10 +102,12 @@ export { default as MenuIcon } from './MenuIcon';
98
102
  export { default as MinusIcon } from './MinusIcon';
99
103
  export { default as MoreIcon } from './MoreIcon';
100
104
  export { default as NameScreeningIcon } from './NameScreeningIcon';
105
+ export { default as NaturalPersonIcon } from './NaturalPersonIcon';
101
106
  export { default as NewIcon } from './NewIcon';
102
107
  export { default as NotFoundIcon } from './NotFoundIcon';
103
108
  export { default as NotificationsOutlineIcon } from './NotificationsOutlineIcon';
104
109
  export { default as OpenIcon } from './OpenIcon';
110
+ export { default as OutgoingIcon } from './OutgoingIcon';
105
111
  export { default as PermissionsIcon } from './PermissionsIcon';
106
112
  export { default as PersonIcon } from './PersonIcon';
107
113
  export { default as PinFilledIcon } from './PinFilledIcon';
@@ -82,13 +82,17 @@ 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');
88
90
  module.exports.InboxIcon = require('./InboxIcon.js');
91
+ module.exports.IncomingIcon = require('./IncomingIcon.js');
89
92
  module.exports.InfoIcon = require('./InfoIcon.js');
90
93
  module.exports.InheritableIcon = require('./InheritableIcon.js');
91
94
  module.exports.InkIcon = require('./InkIcon.js');
95
+ module.exports.LegalEntityIcon = require('./LegalEntityIcon.js');
92
96
  module.exports.LinkIcon = require('./LinkIcon.js');
93
97
  module.exports.LockIcon = require('./LockIcon.js');
94
98
  module.exports.LogoIcon = require('./LogoIcon.js');
@@ -98,10 +102,12 @@ module.exports.MenuIcon = require('./MenuIcon.js');
98
102
  module.exports.MinusIcon = require('./MinusIcon.js');
99
103
  module.exports.MoreIcon = require('./MoreIcon.js');
100
104
  module.exports.NameScreeningIcon = require('./NameScreeningIcon.js');
105
+ module.exports.NaturalPersonIcon = require('./NaturalPersonIcon.js');
101
106
  module.exports.NewIcon = require('./NewIcon.js');
102
107
  module.exports.NotFoundIcon = require('./NotFoundIcon.js');
103
108
  module.exports.NotificationsOutlineIcon = require('./NotificationsOutlineIcon.js');
104
109
  module.exports.OpenIcon = require('./OpenIcon.js');
110
+ module.exports.OutgoingIcon = require('./OutgoingIcon.js');
105
111
  module.exports.PermissionsIcon = require('./PermissionsIcon.js');
106
112
  module.exports.PersonIcon = require('./PersonIcon.js');
107
113
  module.exports.PinFilledIcon = require('./PinFilledIcon.js');
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function GroupAddIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default GroupAddIcon;
@@ -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 24 24",
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: "M4.5 14.25c1.86421356 0 3.375 1.5107864 3.375 3.375 0 1.247306-.67632868 2.3363946-1.68232879 2.9206083 1.12581746.4042206 2.11127326 1.2122689 2.71903157 2.3513344.19498814.3654484.05680283.8197719-.30864552 1.0147601-.36544836.1949881-.81977191.0568028-1.01476004-.3086455-.91018409-1.7058745-3.03001102-2.3511942-4.73521757-1.4413665-.61281104.3269973-1.11439153.8285778-1.44138882 1.4413889-.1950005.3654417-.64932872.5036116-1.01477048.3086111-.36544176-.1950005-.5036117-.6493287-.30861118-1.0147705.4670027-.8751889 1.18342222-1.5916084 2.05863357-2.0586231.21591276-.1152021.43647632-.2129536.66007548-.2937466C1.80129681 19.9613432 1.125 18.8722767 1.125 17.625c0-1.8642136 1.51078644-3.375 3.375-3.375Zm15 0c1.8642136 0 3.375 1.5107864 3.375 3.375 0 1.247306-.6763287 2.3363946-1.6823288 2.9206083 1.1258175.4042206 2.1112733 1.2122689 2.7190316 2.3513344.1949881.3654484.0568028.8197719-.3086455 1.0147601-.3654484.1949881-.8197719.0568028-1.0147601-.3086455-.9101841-1.7058745-3.030011-2.3511942-4.7352175-1.4413665-.6128111.3269973-1.1143916.8285778-1.4413889 1.4413889-.1950005.3654417-.6493287.5036116-1.0147705.3086111-.3654417-.1950005-.5036116-.6493287-.3086111-1.0147705.4670027-.8751889 1.1834222-1.5916084 2.0586335-2.0586231.2159128-.1152021.4364764-.2129536.6600755-.2937466C16.8012968 19.9613432 16.125 18.8722767 16.125 17.625c0-1.8642136 1.5107864-3.375 3.375-3.375Zm-15 1.5c-1.03578644 0-1.875.8392136-1.875 1.875S3.46421356 19.5 4.5 19.5c1.03578644 0 1.875-.8392136 1.875-1.875S5.53578644 15.75 4.5 15.75Zm15 0c-1.0357864 0-1.875.8392136-1.875 1.875S18.4642136 19.5 19.5 19.5s1.875-.8392136 1.875-1.875-.8392136-1.875-1.875-1.875ZM18 10.5c.8282136 0 1.5.6717864 1.5 1.5 0 .4142136-.3357864.75-.75.75S18 12.4142136 18 12H6l-.00684662.1017706C5.94349096 12.4678461 5.62969577 12.75 5.25 12.75c-.41421356 0-.75-.3357864-.75-.75 0-.8282136.67178644-1.5 1.5-1.5ZM12 0c1.8642136 0 3.375 1.51078644 3.375 3.375 0 1.24607959-.6749993 2.33425264-1.6793622 2.91888347.7981982.28545059 1.5348814.77781331 2.1243063 1.46978034.268596.3153237.2307158.78868418-.0846079 1.05728024-.3153237.26859606-.7886842.23071583-1.0572803-.08460786-1.2604969-1.47978552-3.4811526-1.65770306-4.95950518-.39842892-.14345453.12272411-.27691934.25618892-.39964345.39964345-.26926683.3147511-.7427069.35162338-1.05745799.08235655-.3147511-.26926683-.35162338-.7427069-.08235655-1.05745799.17327589-.20254547.36181108-.39108066.56557108-.56539333.4753669-.40492256 1.00437562-.70575333 1.55928549-.90471784C9.29997613 5.70921531 8.625 4.62105822 8.625 3.375 8.625 1.51078644 10.1357864 0 12 0Zm0 1.5c-1.0357864 0-1.875.83921356-1.875 1.875 0 1.03578644.8392136 1.875 1.875 1.875s1.875-.83921356 1.875-1.875c0-1.03578644-.8392136-1.875-1.875-1.875Z"
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,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function GroupRemoveIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default GroupRemoveIcon;
@@ -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,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function IncomingIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default IncomingIcon;
@@ -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 IncomingIcon = ({
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 32 32",
20
+ width: defaultValues.size,
21
+ height: defaultValues.size,
22
+ fill: color,
23
+ ref: ref
24
+ }, props), /*#__PURE__*/createElement("path", {
25
+ d: "m8.026 23 1.698-1.652-4.185-4.168H31v-2.36H5.5l4.184-4.168L8.026 9 1 16z"
26
+ }));
27
+ };
28
+
29
+ const ForwardRef = /*#__PURE__*/forwardRef(IncomingIcon);
30
+ export default ForwardRef;
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function LegalEntityIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default LegalEntityIcon;
@@ -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,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function NaturalPersonIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default NaturalPersonIcon;
@@ -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;
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function OutgoingIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default OutgoingIcon;
@@ -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 OutgoingIcon = ({
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 32 32",
20
+ width: defaultValues.size,
21
+ height: defaultValues.size,
22
+ fill: color,
23
+ ref: ref
24
+ }, props), /*#__PURE__*/createElement("path", {
25
+ d: "m23.974 23-1.698-1.652 4.185-4.168H1v-2.36h25.5l-4.184-4.168L23.974 9 31 16z"
26
+ }));
27
+ };
28
+
29
+ const ForwardRef = /*#__PURE__*/forwardRef(OutgoingIcon);
30
+ export default ForwardRef;
@@ -82,13 +82,17 @@ 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';
88
90
  export { default as InboxIcon } from './InboxIcon';
91
+ export { default as IncomingIcon } from './IncomingIcon';
89
92
  export { default as InfoIcon } from './InfoIcon';
90
93
  export { default as InheritableIcon } from './InheritableIcon';
91
94
  export { default as InkIcon } from './InkIcon';
95
+ export { default as LegalEntityIcon } from './LegalEntityIcon';
92
96
  export { default as LinkIcon } from './LinkIcon';
93
97
  export { default as LockIcon } from './LockIcon';
94
98
  export { default as LogoIcon } from './LogoIcon';
@@ -98,10 +102,12 @@ export { default as MenuIcon } from './MenuIcon';
98
102
  export { default as MinusIcon } from './MinusIcon';
99
103
  export { default as MoreIcon } from './MoreIcon';
100
104
  export { default as NameScreeningIcon } from './NameScreeningIcon';
105
+ export { default as NaturalPersonIcon } from './NaturalPersonIcon';
101
106
  export { default as NewIcon } from './NewIcon';
102
107
  export { default as NotFoundIcon } from './NotFoundIcon';
103
108
  export { default as NotificationsOutlineIcon } from './NotificationsOutlineIcon';
104
109
  export { default as OpenIcon } from './OpenIcon';
110
+ export { default as OutgoingIcon } from './OutgoingIcon';
105
111
  export { default as PermissionsIcon } from './PermissionsIcon';
106
112
  export { default as PersonIcon } from './PersonIcon';
107
113
  export { default as PinFilledIcon } from './PinFilledIcon';
@@ -82,13 +82,17 @@ 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';
88
90
  export { default as InboxIcon } from './InboxIcon.js';
91
+ export { default as IncomingIcon } from './IncomingIcon.js';
89
92
  export { default as InfoIcon } from './InfoIcon.js';
90
93
  export { default as InheritableIcon } from './InheritableIcon.js';
91
94
  export { default as InkIcon } from './InkIcon.js';
95
+ export { default as LegalEntityIcon } from './LegalEntityIcon.js';
92
96
  export { default as LinkIcon } from './LinkIcon.js';
93
97
  export { default as LockIcon } from './LockIcon.js';
94
98
  export { default as LogoIcon } from './LogoIcon.js';
@@ -98,10 +102,12 @@ export { default as MenuIcon } from './MenuIcon.js';
98
102
  export { default as MinusIcon } from './MinusIcon.js';
99
103
  export { default as MoreIcon } from './MoreIcon.js';
100
104
  export { default as NameScreeningIcon } from './NameScreeningIcon.js';
105
+ export { default as NaturalPersonIcon } from './NaturalPersonIcon.js';
101
106
  export { default as NewIcon } from './NewIcon.js';
102
107
  export { default as NotFoundIcon } from './NotFoundIcon.js';
103
108
  export { default as NotificationsOutlineIcon } from './NotificationsOutlineIcon.js';
104
109
  export { default as OpenIcon } from './OpenIcon.js';
110
+ export { default as OutgoingIcon } from './OutgoingIcon.js';
105
111
  export { default as PermissionsIcon } from './PermissionsIcon.js';
106
112
  export { default as PersonIcon } from './PersonIcon.js';
107
113
  export { default as PinFilledIcon } from './PinFilledIcon.js';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@imtf/icons",
3
3
  "private": false,
4
- "version": "0.2.5",
4
+ "version": "0.2.7",
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",
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 24 24">
2
- <path d="M4.5 14.25c1.86421356 0 3.375 1.5107864 3.375 3.375 0 1.247306-.67632868 2.3363946-1.68232879 2.9206083 1.12581746.4042206 2.11127326 1.2122689 2.71903157 2.3513344.19498814.3654484.05680283.8197719-.30864552 1.0147601-.36544836.1949881-.81977191.0568028-1.01476004-.3086455-.91018409-1.7058745-3.03001102-2.3511942-4.73521757-1.4413665-.61281104.3269973-1.11439153.8285778-1.44138882 1.4413889-.1950005.3654417-.64932872.5036116-1.01477048.3086111-.36544176-.1950005-.5036117-.6493287-.30861118-1.0147705.4670027-.8751889 1.18342222-1.5916084 2.05863357-2.0586231.21591276-.1152021.43647632-.2129536.66007548-.2937466C1.80129681 19.9613432 1.125 18.8722767 1.125 17.625c0-1.8642136 1.51078644-3.375 3.375-3.375Zm15 0c1.8642136 0 3.375 1.5107864 3.375 3.375 0 1.247306-.6763287 2.3363946-1.6823288 2.9206083 1.1258175.4042206 2.1112733 1.2122689 2.7190316 2.3513344.1949881.3654484.0568028.8197719-.3086455 1.0147601-.3654484.1949881-.8197719.0568028-1.0147601-.3086455-.9101841-1.7058745-3.030011-2.3511942-4.7352175-1.4413665-.6128111.3269973-1.1143916.8285778-1.4413889 1.4413889-.1950005.3654417-.6493287.5036116-1.0147705.3086111-.3654417-.1950005-.5036116-.6493287-.3086111-1.0147705.4670027-.8751889 1.1834222-1.5916084 2.0586335-2.0586231.2159128-.1152021.4364764-.2129536.6600755-.2937466C16.8012968 19.9613432 16.125 18.8722767 16.125 17.625c0-1.8642136 1.5107864-3.375 3.375-3.375Zm-15 1.5c-1.03578644 0-1.875.8392136-1.875 1.875S3.46421356 19.5 4.5 19.5c1.03578644 0 1.875-.8392136 1.875-1.875S5.53578644 15.75 4.5 15.75Zm15 0c-1.0357864 0-1.875.8392136-1.875 1.875S18.4642136 19.5 19.5 19.5s1.875-.8392136 1.875-1.875-.8392136-1.875-1.875-1.875ZM18 10.5c.8282136 0 1.5.6717864 1.5 1.5 0 .4142136-.3357864.75-.75.75S18 12.4142136 18 12H6l-.00684662.1017706C5.94349096 12.4678461 5.62969577 12.75 5.25 12.75c-.41421356 0-.75-.3357864-.75-.75 0-.8282136.67178644-1.5 1.5-1.5ZM12 0c1.8642136 0 3.375 1.51078644 3.375 3.375 0 1.24607959-.6749993 2.33425264-1.6793622 2.91888347.7981982.28545059 1.5348814.77781331 2.1243063 1.46978034.268596.3153237.2307158.78868418-.0846079 1.05728024-.3153237.26859606-.7886842.23071583-1.0572803-.08460786-1.2604969-1.47978552-3.4811526-1.65770306-4.95950518-.39842892-.14345453.12272411-.27691934.25618892-.39964345.39964345-.26926683.3147511-.7427069.35162338-1.05745799.08235655-.3147511-.26926683-.35162338-.7427069-.08235655-1.05745799.17327589-.20254547.36181108-.39108066.56557108-.56539333.4753669-.40492256 1.00437562-.70575333 1.55928549-.90471784C9.29997613 5.70921531 8.625 4.62105822 8.625 3.375 8.625 1.51078644 10.1357864 0 12 0Zm0 1.5c-1.0357864 0-1.875.83921356-1.875 1.875 0 1.03578644.8392136 1.875 1.875 1.875s1.875-.83921356 1.875-1.875c0-1.03578644-.8392136-1.875-1.875-1.875Z"/>
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>
@@ -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>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
2
+ <path d="m8.026 23 1.698-1.652-4.185-4.168H31v-2.36H5.5l4.184-4.168L8.026 9 1 16z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
2
+ <path d="m23.974 23-1.698-1.652 4.185-4.168H1v-2.36h25.5l-4.184-4.168L23.974 9 31 16z"/>
3
+ </svg>
package/svg/group.json CHANGED
@@ -1,4 +1,6 @@
1
1
  {
2
- "aliases": [],
2
+ "aliases": [
3
+ "entity"
4
+ ],
3
5
  "description": ""
4
- }
6
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "aliases": [],
3
+ "description": ""
4
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "aliases": [],
3
+ "description": ""
4
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "aliases": [
3
+ "arrow",
4
+ "left"
5
+ ],
6
+ "description": ""
7
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "aliases": [
3
+ "entity"
4
+ ],
5
+ "description": ""
6
+ }
@@ -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,6 @@
1
+ {
2
+ "aliases": [
3
+ "entity"
4
+ ],
5
+ "description": ""
6
+ }
@@ -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>
@@ -0,0 +1,7 @@
1
+ {
2
+ "aliases": [
3
+ "arrow",
4
+ "right"
5
+ ],
6
+ "description": ""
7
+ }