@sensoro-design/icons-svg 2.92.0 → 2.94.0

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 (41) hide show
  1. package/es/asn/CallBackOutlined.d.ts +3 -0
  2. package/es/asn/CallBackOutlined.js +20 -0
  3. package/es/asn/HangUpFilled.d.ts +3 -0
  4. package/es/asn/HangUpFilled.js +20 -0
  5. package/es/asn/HangUpOutlined.d.ts +3 -0
  6. package/es/asn/HangUpOutlined.js +20 -0
  7. package/es/asn/MaximizeOutlined.d.ts +3 -0
  8. package/es/asn/MaximizeOutlined.js +20 -0
  9. package/es/asn/MinimizeOutlined.d.ts +3 -0
  10. package/es/asn/MinimizeOutlined.js +20 -0
  11. package/es/index.d.ts +5 -0
  12. package/es/index.js +5 -0
  13. package/inline-namespaced-svg/filled/hang-up.svg +1 -0
  14. package/inline-namespaced-svg/outlined/call-back.svg +1 -0
  15. package/inline-namespaced-svg/outlined/hang-up.svg +1 -0
  16. package/inline-namespaced-svg/outlined/maximize.svg +1 -0
  17. package/inline-namespaced-svg/outlined/minimize.svg +1 -0
  18. package/inline-svg/filled/hang-up.svg +1 -0
  19. package/inline-svg/outlined/call-back.svg +1 -0
  20. package/inline-svg/outlined/hang-up.svg +1 -0
  21. package/inline-svg/outlined/maximize.svg +1 -0
  22. package/inline-svg/outlined/minimize.svg +1 -0
  23. package/lib/asn/CallBackOutlined.d.ts +3 -0
  24. package/lib/asn/CallBackOutlined.js +41 -0
  25. package/lib/asn/HangUpFilled.d.ts +3 -0
  26. package/lib/asn/HangUpFilled.js +41 -0
  27. package/lib/asn/HangUpOutlined.d.ts +3 -0
  28. package/lib/asn/HangUpOutlined.js +41 -0
  29. package/lib/asn/MaximizeOutlined.d.ts +3 -0
  30. package/lib/asn/MaximizeOutlined.js +41 -0
  31. package/lib/asn/MinimizeOutlined.d.ts +3 -0
  32. package/lib/asn/MinimizeOutlined.js +41 -0
  33. package/lib/index.d.ts +5 -0
  34. package/lib/index.js +15 -0
  35. package/package.json +1 -1
  36. package/src/asn/CallBackOutlined.ts +21 -0
  37. package/src/asn/HangUpFilled.ts +21 -0
  38. package/src/asn/HangUpOutlined.ts +21 -0
  39. package/src/asn/MaximizeOutlined.ts +21 -0
  40. package/src/asn/MinimizeOutlined.ts +21 -0
  41. package/src/index.ts +5 -0
@@ -0,0 +1,3 @@
1
+ import { IconDefinition } from '../types';
2
+ declare const CallBackOutlined: IconDefinition;
3
+ export default CallBackOutlined;
@@ -0,0 +1,20 @@
1
+ // This icon file is generated automatically.
2
+
3
+ var CallBackOutlined = {
4
+ icon: {
5
+ tag: 'svg',
6
+ attrs: {
7
+ viewBox: '0 0 1024 1024',
8
+ focusable: 'false'
9
+ },
10
+ children: [{
11
+ tag: 'path',
12
+ attrs: {
13
+ d: 'M245.38 132.03a64.66 64.66 0 0 1 45.24 18.82l109.44 109.18a65.54 65.54 0 0 1 .45 92.48l-85.63 85.7a384 384 0 0 0 66.62 104.7l15.43 16.2a385.92 385.92 0 0 0 120.83 82.3l85.12-85.25a65.34 65.34 0 0 1 92.29-.51L804.6 664.9a65.54 65.54 0 0 1 0 92.92L703.55 858.88a113.8 113.8 0 0 1-86.4 32.96l-11.77-1.28c-125.9-20.74-250.63-87.74-351.43-188.42C153.35 601.28 86.4 476.48 65.54 350.6a113.28 113.28 0 0 1 31.61-98.17L198.4 151.3a65.07 65.07 0 0 1 37.12-18.63l9.86-.64zm-.64 74.75-96.64 96.45a41.28 41.28 0 0 0-11.59 35.2l.64 3.65c18.75 108.48 77.12 217.34 165.12 306.56l5.31 5.31c83.59 82.56 184.45 139.01 285.96 161.09l24.06 4.6a41.8 41.8 0 0 0 34.82-11.38l96.9-96.84-99.98-99.84-115.2 115.27-44.8-19.33a457.92 457.92 0 0 1-125.37-80.45L344.9 608.9a456.13 456.13 0 0 1-96.13-142.34l-19.2-44.8 115.07-115.33-99.97-99.71zm405.12-6.01a7.99 7.99 0 0 1 4.6 6.91v74.18L952 281.6a8.04 8.04 0 0 1 8 7.74v60.3a8 8 0 0 1-7.68 8l-297.98.18.12 74.12a8 8 0 0 1-12.8 6.4L499.84 326.4a8 8 0 0 1-.13-12.54l141.95-112.13a8 8 0 0 1 8.32-.9z'
14
+ }
15
+ }]
16
+ },
17
+ name: 'call-back',
18
+ theme: 'outlined'
19
+ };
20
+ export default CallBackOutlined;
@@ -0,0 +1,3 @@
1
+ import { IconDefinition } from '../types';
2
+ declare const HangUpFilled: IconDefinition;
3
+ export default HangUpFilled;
@@ -0,0 +1,20 @@
1
+ // This icon file is generated automatically.
2
+
3
+ var HangUpFilled = {
4
+ icon: {
5
+ tag: 'svg',
6
+ attrs: {
7
+ viewBox: '0 0 1024 1024',
8
+ focusable: 'false'
9
+ },
10
+ children: [{
11
+ tag: 'path',
12
+ attrs: {
13
+ d: 'M986.62 504.96v110.08a52.8 52.8 0 0 1-52.73 52.8l-158.47.06a52.8 52.8 0 0 1-52.73-52.73V456.19a484.03 484.03 0 0 0-421.31 2.56v156.42a52.84 52.84 0 0 1-52.8 52.73H90.18a52.8 52.8 0 0 1-52.8-52.8V508.54a121.25 121.25 0 0 1 47.1-101.95l18.56-14.08c5.44-3.97 9.6-6.97 12.54-8.96a724.86 724.86 0 0 1 786.82-7.23l19 12.48a505.02 505.02 0 0 1 17.74 13.06 121.5 121.5 0 0 1 47.68 92.16l-.13 11z'
14
+ }
15
+ }]
16
+ },
17
+ name: 'hang-up',
18
+ theme: 'filled'
19
+ };
20
+ export default HangUpFilled;
@@ -0,0 +1,3 @@
1
+ import { IconDefinition } from '../types';
2
+ declare const HangUpOutlined: IconDefinition;
3
+ export default HangUpOutlined;
@@ -0,0 +1,20 @@
1
+ // This icon file is generated automatically.
2
+
3
+ var HangUpOutlined = {
4
+ icon: {
5
+ tag: 'svg',
6
+ attrs: {
7
+ viewBox: '0 0 1024 1024',
8
+ focusable: 'false'
9
+ },
10
+ children: [{
11
+ tag: 'path',
12
+ attrs: {
13
+ d: 'M60.6 447.1v150.53a68.8 68.8 0 0 0 69.13 69l161.98.19a69 69 0 0 0 69.12-69.19l.13-126.78a405.44 405.44 0 0 1 151.1-28.93 406.2 406.2 0 0 1 151.17 28.74v126.72a68.8 68.8 0 0 0 69 69.05l162.1.2a69 69 0 0 0 69.13-69.13V447.04a119.74 119.74 0 0 0-49.54-96.64C804.86 272.13 662.14 229.06 512.12 229c-150 .18-292.73 43.32-401.91 121.4a119.23 119.23 0 0 0-49.6 96.64zm91.27-38.14c97.15-69.57 225.15-107.9 360.2-107.9 135.03 0 263.03 38.27 360.12 107.84 12.23 8.7 19.46 23.04 19.52 38.2v147.78l-156.8.06.2-170.88-20.93-9.6a481.28 481.28 0 0 0-404.1.13l-21 9.6.14 170.75-156.8.07V447.23c0-15.3 7.23-29.57 19.45-38.27z'
14
+ }
15
+ }]
16
+ },
17
+ name: 'hang-up',
18
+ theme: 'outlined'
19
+ };
20
+ export default HangUpOutlined;
@@ -0,0 +1,3 @@
1
+ import { IconDefinition } from '../types';
2
+ declare const MaximizeOutlined: IconDefinition;
3
+ export default MaximizeOutlined;
@@ -0,0 +1,20 @@
1
+ // This icon file is generated automatically.
2
+
3
+ var MaximizeOutlined = {
4
+ icon: {
5
+ tag: 'svg',
6
+ attrs: {
7
+ viewBox: '0 0 1024 1024',
8
+ focusable: 'false'
9
+ },
10
+ children: [{
11
+ tag: 'path',
12
+ attrs: {
13
+ d: 'm855.04 160.13-189.25 23.49a7.94 7.94 0 0 0-4.67 13.44l54.66 54.72L562.3 405.3a8 8 0 0 0 0 11.27l45.12 45.12a8 8 0 0 0 11.27 0l153.6-153.6L827 362.82a7.9 7.9 0 0 0 13.44-4.74l23.42-189.06a7.87 7.87 0 0 0-8.9-8.96zM416.64 562.3a8 8 0 0 0-11.33 0L251.78 715.9l-54.66-54.72a7.94 7.94 0 0 0-13.5 4.74l-23.5 189.06a8 8 0 0 0 8.9 8.96l189.19-23.56a7.94 7.94 0 0 0 4.67-13.44l-54.66-54.72 153.6-153.6a8 8 0 0 0 0-11.32l-45.24-45z'
14
+ }
15
+ }]
16
+ },
17
+ name: 'maximize',
18
+ theme: 'outlined'
19
+ };
20
+ export default MaximizeOutlined;
@@ -0,0 +1,3 @@
1
+ import { IconDefinition } from '../types';
2
+ declare const MinimizeOutlined: IconDefinition;
3
+ export default MinimizeOutlined;
@@ -0,0 +1,20 @@
1
+ // This icon file is generated automatically.
2
+
3
+ var MinimizeOutlined = {
4
+ icon: {
5
+ tag: 'svg',
6
+ attrs: {
7
+ viewBox: '0 0 1024 1024',
8
+ focusable: 'false'
9
+ },
10
+ children: [{
11
+ tag: 'path',
12
+ attrs: {
13
+ d: 'm881.73 187.4-45.12-45.13a8 8 0 0 0-11.33 0L667.84 299.9l-54.72-54.72a7.94 7.94 0 0 0-13.5 4.74l-23.5 189.06a8 8 0 0 0 8.84 9.02l189.18-23.55a7.94 7.94 0 0 0 4.68-13.44l-54.66-54.72 157.57-157.63a8 8 0 0 0-.07-11.2zM438.98 576.12l-189.19 23.49a8 8 0 0 0-4.67 13.44l54.66 54.72-157.44 157.5a8 8 0 0 0 0 11.33l45.05 45.12a8 8 0 0 0 11.33 0L356.29 724.1 411 778.82a7.9 7.9 0 0 0 13.44-4.74l23.42-189.06a7.87 7.87 0 0 0-8.83-9.02z'
14
+ }
15
+ }]
16
+ },
17
+ name: 'minimize',
18
+ theme: 'outlined'
19
+ };
20
+ export default MinimizeOutlined;
package/es/index.d.ts CHANGED
@@ -122,6 +122,7 @@ export { default as CalendarCheckFilled } from './asn/CalendarCheckFilled';
122
122
  export { default as CalendarCheckOutlined } from './asn/CalendarCheckOutlined';
123
123
  export { default as CalendarClockOutlined } from './asn/CalendarClockOutlined';
124
124
  export { default as CalendarOutlined } from './asn/CalendarOutlined';
125
+ export { default as CallBackOutlined } from './asn/CallBackOutlined';
125
126
  export { default as CallVideoFilled } from './asn/CallVideoFilled';
126
127
  export { default as CallVideoOutlined } from './asn/CallVideoOutlined';
127
128
  export { default as CameraFilled } from './asn/CameraFilled';
@@ -438,6 +439,8 @@ export { default as GroupRuleFilled } from './asn/GroupRuleFilled';
438
439
  export { default as GroupRuleOutlined } from './asn/GroupRuleOutlined';
439
440
  export { default as HailOutlined } from './asn/HailOutlined';
440
441
  export { default as HandcuffsOutlined } from './asn/HandcuffsOutlined';
442
+ export { default as HangUpFilled } from './asn/HangUpFilled';
443
+ export { default as HangUpOutlined } from './asn/HangUpOutlined';
441
444
  export { default as HashrateCenterFilled } from './asn/HashrateCenterFilled';
442
445
  export { default as HashrateCenterOutlined } from './asn/HashrateCenterOutlined';
443
446
  export { default as HashrateFilled } from './asn/HashrateFilled';
@@ -583,6 +586,7 @@ export { default as ManualAlarmCircleOutlined } from './asn/ManualAlarmCircleOut
583
586
  export { default as ManualOutlined } from './asn/ManualOutlined';
584
587
  export { default as Map2DOutlined } from './asn/Map2DOutlined';
585
588
  export { default as Map3DOutlined } from './asn/Map3DOutlined';
589
+ export { default as MaximizeOutlined } from './asn/MaximizeOutlined';
586
590
  export { default as MeansAccessOutlined } from './asn/MeansAccessOutlined';
587
591
  export { default as MedalsFilled } from './asn/MedalsFilled';
588
592
  export { default as MedalsOutlined } from './asn/MedalsOutlined';
@@ -604,6 +608,7 @@ export { default as MigrateOutlined } from './asn/MigrateOutlined';
604
608
  export { default as MiniatureFireStationAddOutlined } from './asn/MiniatureFireStationAddOutlined';
605
609
  export { default as MiniatureFireStationFilled } from './asn/MiniatureFireStationFilled';
606
610
  export { default as MiniatureFireStationOutlined } from './asn/MiniatureFireStationOutlined';
611
+ export { default as MinimizeOutlined } from './asn/MinimizeOutlined';
607
612
  export { default as MinusCircleFilled } from './asn/MinusCircleFilled';
608
613
  export { default as MinusCircleOutlined } from './asn/MinusCircleOutlined';
609
614
  export { default as MinusOutlined } from './asn/MinusOutlined';
package/es/index.js CHANGED
@@ -123,6 +123,7 @@ export { default as CalendarCheckFilled } from "./asn/CalendarCheckFilled";
123
123
  export { default as CalendarCheckOutlined } from "./asn/CalendarCheckOutlined";
124
124
  export { default as CalendarClockOutlined } from "./asn/CalendarClockOutlined";
125
125
  export { default as CalendarOutlined } from "./asn/CalendarOutlined";
126
+ export { default as CallBackOutlined } from "./asn/CallBackOutlined";
126
127
  export { default as CallVideoFilled } from "./asn/CallVideoFilled";
127
128
  export { default as CallVideoOutlined } from "./asn/CallVideoOutlined";
128
129
  export { default as CameraFilled } from "./asn/CameraFilled";
@@ -439,6 +440,8 @@ export { default as GroupRuleFilled } from "./asn/GroupRuleFilled";
439
440
  export { default as GroupRuleOutlined } from "./asn/GroupRuleOutlined";
440
441
  export { default as HailOutlined } from "./asn/HailOutlined";
441
442
  export { default as HandcuffsOutlined } from "./asn/HandcuffsOutlined";
443
+ export { default as HangUpFilled } from "./asn/HangUpFilled";
444
+ export { default as HangUpOutlined } from "./asn/HangUpOutlined";
442
445
  export { default as HashrateCenterFilled } from "./asn/HashrateCenterFilled";
443
446
  export { default as HashrateCenterOutlined } from "./asn/HashrateCenterOutlined";
444
447
  export { default as HashrateFilled } from "./asn/HashrateFilled";
@@ -584,6 +587,7 @@ export { default as ManualAlarmCircleOutlined } from "./asn/ManualAlarmCircleOut
584
587
  export { default as ManualOutlined } from "./asn/ManualOutlined";
585
588
  export { default as Map2DOutlined } from "./asn/Map2DOutlined";
586
589
  export { default as Map3DOutlined } from "./asn/Map3DOutlined";
590
+ export { default as MaximizeOutlined } from "./asn/MaximizeOutlined";
587
591
  export { default as MeansAccessOutlined } from "./asn/MeansAccessOutlined";
588
592
  export { default as MedalsFilled } from "./asn/MedalsFilled";
589
593
  export { default as MedalsOutlined } from "./asn/MedalsOutlined";
@@ -605,6 +609,7 @@ export { default as MigrateOutlined } from "./asn/MigrateOutlined";
605
609
  export { default as MiniatureFireStationAddOutlined } from "./asn/MiniatureFireStationAddOutlined";
606
610
  export { default as MiniatureFireStationFilled } from "./asn/MiniatureFireStationFilled";
607
611
  export { default as MiniatureFireStationOutlined } from "./asn/MiniatureFireStationOutlined";
612
+ export { default as MinimizeOutlined } from "./asn/MinimizeOutlined";
608
613
  export { default as MinusCircleFilled } from "./asn/MinusCircleFilled";
609
614
  export { default as MinusCircleOutlined } from "./asn/MinusCircleOutlined";
610
615
  export { default as MinusOutlined } from "./asn/MinusOutlined";
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 1024 1024" focusable="false" xmlns="http://www.w3.org/2000/svg"><path d="M986.62 504.96v110.08a52.8 52.8 0 0 1-52.73 52.8l-158.47.06a52.8 52.8 0 0 1-52.73-52.73V456.19a484.03 484.03 0 0 0-421.31 2.56v156.42a52.84 52.84 0 0 1-52.8 52.73H90.18a52.8 52.8 0 0 1-52.8-52.8V508.54a121.25 121.25 0 0 1 47.1-101.95l18.56-14.08c5.44-3.97 9.6-6.97 12.54-8.96a724.86 724.86 0 0 1 786.82-7.23l19 12.48a505.02 505.02 0 0 1 17.74 13.06 121.5 121.5 0 0 1 47.68 92.16l-.13 11z" /></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 1024 1024" focusable="false" xmlns="http://www.w3.org/2000/svg"><path d="M245.38 132.03a64.66 64.66 0 0 1 45.24 18.82l109.44 109.18a65.54 65.54 0 0 1 .45 92.48l-85.63 85.7a384 384 0 0 0 66.62 104.7l15.43 16.2a385.92 385.92 0 0 0 120.83 82.3l85.12-85.25a65.34 65.34 0 0 1 92.29-.51L804.6 664.9a65.54 65.54 0 0 1 0 92.92L703.55 858.88a113.8 113.8 0 0 1-86.4 32.96l-11.77-1.28c-125.9-20.74-250.63-87.74-351.43-188.42C153.35 601.28 86.4 476.48 65.54 350.6a113.28 113.28 0 0 1 31.61-98.17L198.4 151.3a65.07 65.07 0 0 1 37.12-18.63l9.86-.64zm-.64 74.75-96.64 96.45a41.28 41.28 0 0 0-11.59 35.2l.64 3.65c18.75 108.48 77.12 217.34 165.12 306.56l5.31 5.31c83.59 82.56 184.45 139.01 285.96 161.09l24.06 4.6a41.8 41.8 0 0 0 34.82-11.38l96.9-96.84-99.98-99.84-115.2 115.27-44.8-19.33a457.92 457.92 0 0 1-125.37-80.45L344.9 608.9a456.13 456.13 0 0 1-96.13-142.34l-19.2-44.8 115.07-115.33-99.97-99.71zm405.12-6.01a7.99 7.99 0 0 1 4.6 6.91v74.18L952 281.6a8.04 8.04 0 0 1 8 7.74v60.3a8 8 0 0 1-7.68 8l-297.98.18.12 74.12a8 8 0 0 1-12.8 6.4L499.84 326.4a8 8 0 0 1-.13-12.54l141.95-112.13a8 8 0 0 1 8.32-.9z" /></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 1024 1024" focusable="false" xmlns="http://www.w3.org/2000/svg"><path d="M60.6 447.1v150.53a68.8 68.8 0 0 0 69.13 69l161.98.19a69 69 0 0 0 69.12-69.19l.13-126.78a405.44 405.44 0 0 1 151.1-28.93 406.2 406.2 0 0 1 151.17 28.74v126.72a68.8 68.8 0 0 0 69 69.05l162.1.2a69 69 0 0 0 69.13-69.13V447.04a119.74 119.74 0 0 0-49.54-96.64C804.86 272.13 662.14 229.06 512.12 229c-150 .18-292.73 43.32-401.91 121.4a119.23 119.23 0 0 0-49.6 96.64zm91.27-38.14c97.15-69.57 225.15-107.9 360.2-107.9 135.03 0 263.03 38.27 360.12 107.84 12.23 8.7 19.46 23.04 19.52 38.2v147.78l-156.8.06.2-170.88-20.93-9.6a481.28 481.28 0 0 0-404.1.13l-21 9.6.14 170.75-156.8.07V447.23c0-15.3 7.23-29.57 19.45-38.27z" /></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 1024 1024" focusable="false" xmlns="http://www.w3.org/2000/svg"><path d="m855.04 160.13-189.25 23.49a7.94 7.94 0 0 0-4.67 13.44l54.66 54.72L562.3 405.3a8 8 0 0 0 0 11.27l45.12 45.12a8 8 0 0 0 11.27 0l153.6-153.6L827 362.82a7.9 7.9 0 0 0 13.44-4.74l23.42-189.06a7.87 7.87 0 0 0-8.9-8.96zM416.64 562.3a8 8 0 0 0-11.33 0L251.78 715.9l-54.66-54.72a7.94 7.94 0 0 0-13.5 4.74l-23.5 189.06a8 8 0 0 0 8.9 8.96l189.19-23.56a7.94 7.94 0 0 0 4.67-13.44l-54.66-54.72 153.6-153.6a8 8 0 0 0 0-11.32l-45.24-45z" /></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 1024 1024" focusable="false" xmlns="http://www.w3.org/2000/svg"><path d="m881.73 187.4-45.12-45.13a8 8 0 0 0-11.33 0L667.84 299.9l-54.72-54.72a7.94 7.94 0 0 0-13.5 4.74l-23.5 189.06a8 8 0 0 0 8.84 9.02l189.18-23.55a7.94 7.94 0 0 0 4.68-13.44l-54.66-54.72 157.57-157.63a8 8 0 0 0-.07-11.2zM438.98 576.12l-189.19 23.49a8 8 0 0 0-4.67 13.44l54.66 54.72-157.44 157.5a8 8 0 0 0 0 11.33l45.05 45.12a8 8 0 0 0 11.33 0L356.29 724.1 411 778.82a7.9 7.9 0 0 0 13.44-4.74l23.42-189.06a7.87 7.87 0 0 0-8.83-9.02z" /></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 1024 1024" focusable="false"><path d="M986.62 504.96v110.08a52.8 52.8 0 0 1-52.73 52.8l-158.47.06a52.8 52.8 0 0 1-52.73-52.73V456.19a484.03 484.03 0 0 0-421.31 2.56v156.42a52.84 52.84 0 0 1-52.8 52.73H90.18a52.8 52.8 0 0 1-52.8-52.8V508.54a121.25 121.25 0 0 1 47.1-101.95l18.56-14.08c5.44-3.97 9.6-6.97 12.54-8.96a724.86 724.86 0 0 1 786.82-7.23l19 12.48a505.02 505.02 0 0 1 17.74 13.06 121.5 121.5 0 0 1 47.68 92.16l-.13 11z" /></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 1024 1024" focusable="false"><path d="M245.38 132.03a64.66 64.66 0 0 1 45.24 18.82l109.44 109.18a65.54 65.54 0 0 1 .45 92.48l-85.63 85.7a384 384 0 0 0 66.62 104.7l15.43 16.2a385.92 385.92 0 0 0 120.83 82.3l85.12-85.25a65.34 65.34 0 0 1 92.29-.51L804.6 664.9a65.54 65.54 0 0 1 0 92.92L703.55 858.88a113.8 113.8 0 0 1-86.4 32.96l-11.77-1.28c-125.9-20.74-250.63-87.74-351.43-188.42C153.35 601.28 86.4 476.48 65.54 350.6a113.28 113.28 0 0 1 31.61-98.17L198.4 151.3a65.07 65.07 0 0 1 37.12-18.63l9.86-.64zm-.64 74.75-96.64 96.45a41.28 41.28 0 0 0-11.59 35.2l.64 3.65c18.75 108.48 77.12 217.34 165.12 306.56l5.31 5.31c83.59 82.56 184.45 139.01 285.96 161.09l24.06 4.6a41.8 41.8 0 0 0 34.82-11.38l96.9-96.84-99.98-99.84-115.2 115.27-44.8-19.33a457.92 457.92 0 0 1-125.37-80.45L344.9 608.9a456.13 456.13 0 0 1-96.13-142.34l-19.2-44.8 115.07-115.33-99.97-99.71zm405.12-6.01a7.99 7.99 0 0 1 4.6 6.91v74.18L952 281.6a8.04 8.04 0 0 1 8 7.74v60.3a8 8 0 0 1-7.68 8l-297.98.18.12 74.12a8 8 0 0 1-12.8 6.4L499.84 326.4a8 8 0 0 1-.13-12.54l141.95-112.13a8 8 0 0 1 8.32-.9z" /></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 1024 1024" focusable="false"><path d="M60.6 447.1v150.53a68.8 68.8 0 0 0 69.13 69l161.98.19a69 69 0 0 0 69.12-69.19l.13-126.78a405.44 405.44 0 0 1 151.1-28.93 406.2 406.2 0 0 1 151.17 28.74v126.72a68.8 68.8 0 0 0 69 69.05l162.1.2a69 69 0 0 0 69.13-69.13V447.04a119.74 119.74 0 0 0-49.54-96.64C804.86 272.13 662.14 229.06 512.12 229c-150 .18-292.73 43.32-401.91 121.4a119.23 119.23 0 0 0-49.6 96.64zm91.27-38.14c97.15-69.57 225.15-107.9 360.2-107.9 135.03 0 263.03 38.27 360.12 107.84 12.23 8.7 19.46 23.04 19.52 38.2v147.78l-156.8.06.2-170.88-20.93-9.6a481.28 481.28 0 0 0-404.1.13l-21 9.6.14 170.75-156.8.07V447.23c0-15.3 7.23-29.57 19.45-38.27z" /></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 1024 1024" focusable="false"><path d="m855.04 160.13-189.25 23.49a7.94 7.94 0 0 0-4.67 13.44l54.66 54.72L562.3 405.3a8 8 0 0 0 0 11.27l45.12 45.12a8 8 0 0 0 11.27 0l153.6-153.6L827 362.82a7.9 7.9 0 0 0 13.44-4.74l23.42-189.06a7.87 7.87 0 0 0-8.9-8.96zM416.64 562.3a8 8 0 0 0-11.33 0L251.78 715.9l-54.66-54.72a7.94 7.94 0 0 0-13.5 4.74l-23.5 189.06a8 8 0 0 0 8.9 8.96l189.19-23.56a7.94 7.94 0 0 0 4.67-13.44l-54.66-54.72 153.6-153.6a8 8 0 0 0 0-11.32l-45.24-45z" /></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 1024 1024" focusable="false"><path d="m881.73 187.4-45.12-45.13a8 8 0 0 0-11.33 0L667.84 299.9l-54.72-54.72a7.94 7.94 0 0 0-13.5 4.74l-23.5 189.06a8 8 0 0 0 8.84 9.02l189.18-23.55a7.94 7.94 0 0 0 4.68-13.44l-54.66-54.72 157.57-157.63a8 8 0 0 0-.07-11.2zM438.98 576.12l-189.19 23.49a8 8 0 0 0-4.67 13.44l54.66 54.72-157.44 157.5a8 8 0 0 0 0 11.33l45.05 45.12a8 8 0 0 0 11.33 0L356.29 724.1 411 778.82a7.9 7.9 0 0 0 13.44-4.74l23.42-189.06a7.87 7.87 0 0 0-8.83-9.02z" /></svg>
@@ -0,0 +1,3 @@
1
+ import { IconDefinition } from '../types';
2
+ declare const CallBackOutlined: IconDefinition;
3
+ export default CallBackOutlined;
@@ -0,0 +1,41 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: true });
8
+ };
9
+ var __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (let key of __getOwnPropNames(from))
12
+ if (!__hasOwnProp.call(to, key) && key !== except)
13
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
+
19
+ // src/asn/CallBackOutlined.ts
20
+ var CallBackOutlined_exports = {};
21
+ __export(CallBackOutlined_exports, {
22
+ default: () => CallBackOutlined_default
23
+ });
24
+ module.exports = __toCommonJS(CallBackOutlined_exports);
25
+ var CallBackOutlined = {
26
+ icon: {
27
+ tag: "svg",
28
+ attrs: { viewBox: "0 0 1024 1024", focusable: "false" },
29
+ children: [
30
+ {
31
+ tag: "path",
32
+ attrs: {
33
+ d: "M245.38 132.03a64.66 64.66 0 0 1 45.24 18.82l109.44 109.18a65.54 65.54 0 0 1 .45 92.48l-85.63 85.7a384 384 0 0 0 66.62 104.7l15.43 16.2a385.92 385.92 0 0 0 120.83 82.3l85.12-85.25a65.34 65.34 0 0 1 92.29-.51L804.6 664.9a65.54 65.54 0 0 1 0 92.92L703.55 858.88a113.8 113.8 0 0 1-86.4 32.96l-11.77-1.28c-125.9-20.74-250.63-87.74-351.43-188.42C153.35 601.28 86.4 476.48 65.54 350.6a113.28 113.28 0 0 1 31.61-98.17L198.4 151.3a65.07 65.07 0 0 1 37.12-18.63l9.86-.64zm-.64 74.75-96.64 96.45a41.28 41.28 0 0 0-11.59 35.2l.64 3.65c18.75 108.48 77.12 217.34 165.12 306.56l5.31 5.31c83.59 82.56 184.45 139.01 285.96 161.09l24.06 4.6a41.8 41.8 0 0 0 34.82-11.38l96.9-96.84-99.98-99.84-115.2 115.27-44.8-19.33a457.92 457.92 0 0 1-125.37-80.45L344.9 608.9a456.13 456.13 0 0 1-96.13-142.34l-19.2-44.8 115.07-115.33-99.97-99.71zm405.12-6.01a7.99 7.99 0 0 1 4.6 6.91v74.18L952 281.6a8.04 8.04 0 0 1 8 7.74v60.3a8 8 0 0 1-7.68 8l-297.98.18.12 74.12a8 8 0 0 1-12.8 6.4L499.84 326.4a8 8 0 0 1-.13-12.54l141.95-112.13a8 8 0 0 1 8.32-.9z"
34
+ }
35
+ }
36
+ ]
37
+ },
38
+ name: "call-back",
39
+ theme: "outlined"
40
+ };
41
+ var CallBackOutlined_default = CallBackOutlined;
@@ -0,0 +1,3 @@
1
+ import { IconDefinition } from '../types';
2
+ declare const HangUpFilled: IconDefinition;
3
+ export default HangUpFilled;
@@ -0,0 +1,41 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: true });
8
+ };
9
+ var __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (let key of __getOwnPropNames(from))
12
+ if (!__hasOwnProp.call(to, key) && key !== except)
13
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
+
19
+ // src/asn/HangUpFilled.ts
20
+ var HangUpFilled_exports = {};
21
+ __export(HangUpFilled_exports, {
22
+ default: () => HangUpFilled_default
23
+ });
24
+ module.exports = __toCommonJS(HangUpFilled_exports);
25
+ var HangUpFilled = {
26
+ icon: {
27
+ tag: "svg",
28
+ attrs: { viewBox: "0 0 1024 1024", focusable: "false" },
29
+ children: [
30
+ {
31
+ tag: "path",
32
+ attrs: {
33
+ d: "M986.62 504.96v110.08a52.8 52.8 0 0 1-52.73 52.8l-158.47.06a52.8 52.8 0 0 1-52.73-52.73V456.19a484.03 484.03 0 0 0-421.31 2.56v156.42a52.84 52.84 0 0 1-52.8 52.73H90.18a52.8 52.8 0 0 1-52.8-52.8V508.54a121.25 121.25 0 0 1 47.1-101.95l18.56-14.08c5.44-3.97 9.6-6.97 12.54-8.96a724.86 724.86 0 0 1 786.82-7.23l19 12.48a505.02 505.02 0 0 1 17.74 13.06 121.5 121.5 0 0 1 47.68 92.16l-.13 11z"
34
+ }
35
+ }
36
+ ]
37
+ },
38
+ name: "hang-up",
39
+ theme: "filled"
40
+ };
41
+ var HangUpFilled_default = HangUpFilled;
@@ -0,0 +1,3 @@
1
+ import { IconDefinition } from '../types';
2
+ declare const HangUpOutlined: IconDefinition;
3
+ export default HangUpOutlined;
@@ -0,0 +1,41 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: true });
8
+ };
9
+ var __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (let key of __getOwnPropNames(from))
12
+ if (!__hasOwnProp.call(to, key) && key !== except)
13
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
+
19
+ // src/asn/HangUpOutlined.ts
20
+ var HangUpOutlined_exports = {};
21
+ __export(HangUpOutlined_exports, {
22
+ default: () => HangUpOutlined_default
23
+ });
24
+ module.exports = __toCommonJS(HangUpOutlined_exports);
25
+ var HangUpOutlined = {
26
+ icon: {
27
+ tag: "svg",
28
+ attrs: { viewBox: "0 0 1024 1024", focusable: "false" },
29
+ children: [
30
+ {
31
+ tag: "path",
32
+ attrs: {
33
+ d: "M60.6 447.1v150.53a68.8 68.8 0 0 0 69.13 69l161.98.19a69 69 0 0 0 69.12-69.19l.13-126.78a405.44 405.44 0 0 1 151.1-28.93 406.2 406.2 0 0 1 151.17 28.74v126.72a68.8 68.8 0 0 0 69 69.05l162.1.2a69 69 0 0 0 69.13-69.13V447.04a119.74 119.74 0 0 0-49.54-96.64C804.86 272.13 662.14 229.06 512.12 229c-150 .18-292.73 43.32-401.91 121.4a119.23 119.23 0 0 0-49.6 96.64zm91.27-38.14c97.15-69.57 225.15-107.9 360.2-107.9 135.03 0 263.03 38.27 360.12 107.84 12.23 8.7 19.46 23.04 19.52 38.2v147.78l-156.8.06.2-170.88-20.93-9.6a481.28 481.28 0 0 0-404.1.13l-21 9.6.14 170.75-156.8.07V447.23c0-15.3 7.23-29.57 19.45-38.27z"
34
+ }
35
+ }
36
+ ]
37
+ },
38
+ name: "hang-up",
39
+ theme: "outlined"
40
+ };
41
+ var HangUpOutlined_default = HangUpOutlined;
@@ -0,0 +1,3 @@
1
+ import { IconDefinition } from '../types';
2
+ declare const MaximizeOutlined: IconDefinition;
3
+ export default MaximizeOutlined;
@@ -0,0 +1,41 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: true });
8
+ };
9
+ var __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (let key of __getOwnPropNames(from))
12
+ if (!__hasOwnProp.call(to, key) && key !== except)
13
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
+
19
+ // src/asn/MaximizeOutlined.ts
20
+ var MaximizeOutlined_exports = {};
21
+ __export(MaximizeOutlined_exports, {
22
+ default: () => MaximizeOutlined_default
23
+ });
24
+ module.exports = __toCommonJS(MaximizeOutlined_exports);
25
+ var MaximizeOutlined = {
26
+ icon: {
27
+ tag: "svg",
28
+ attrs: { viewBox: "0 0 1024 1024", focusable: "false" },
29
+ children: [
30
+ {
31
+ tag: "path",
32
+ attrs: {
33
+ d: "m855.04 160.13-189.25 23.49a7.94 7.94 0 0 0-4.67 13.44l54.66 54.72L562.3 405.3a8 8 0 0 0 0 11.27l45.12 45.12a8 8 0 0 0 11.27 0l153.6-153.6L827 362.82a7.9 7.9 0 0 0 13.44-4.74l23.42-189.06a7.87 7.87 0 0 0-8.9-8.96zM416.64 562.3a8 8 0 0 0-11.33 0L251.78 715.9l-54.66-54.72a7.94 7.94 0 0 0-13.5 4.74l-23.5 189.06a8 8 0 0 0 8.9 8.96l189.19-23.56a7.94 7.94 0 0 0 4.67-13.44l-54.66-54.72 153.6-153.6a8 8 0 0 0 0-11.32l-45.24-45z"
34
+ }
35
+ }
36
+ ]
37
+ },
38
+ name: "maximize",
39
+ theme: "outlined"
40
+ };
41
+ var MaximizeOutlined_default = MaximizeOutlined;
@@ -0,0 +1,3 @@
1
+ import { IconDefinition } from '../types';
2
+ declare const MinimizeOutlined: IconDefinition;
3
+ export default MinimizeOutlined;
@@ -0,0 +1,41 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: true });
8
+ };
9
+ var __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (let key of __getOwnPropNames(from))
12
+ if (!__hasOwnProp.call(to, key) && key !== except)
13
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
+
19
+ // src/asn/MinimizeOutlined.ts
20
+ var MinimizeOutlined_exports = {};
21
+ __export(MinimizeOutlined_exports, {
22
+ default: () => MinimizeOutlined_default
23
+ });
24
+ module.exports = __toCommonJS(MinimizeOutlined_exports);
25
+ var MinimizeOutlined = {
26
+ icon: {
27
+ tag: "svg",
28
+ attrs: { viewBox: "0 0 1024 1024", focusable: "false" },
29
+ children: [
30
+ {
31
+ tag: "path",
32
+ attrs: {
33
+ d: "m881.73 187.4-45.12-45.13a8 8 0 0 0-11.33 0L667.84 299.9l-54.72-54.72a7.94 7.94 0 0 0-13.5 4.74l-23.5 189.06a8 8 0 0 0 8.84 9.02l189.18-23.55a7.94 7.94 0 0 0 4.68-13.44l-54.66-54.72 157.57-157.63a8 8 0 0 0-.07-11.2zM438.98 576.12l-189.19 23.49a8 8 0 0 0-4.67 13.44l54.66 54.72-157.44 157.5a8 8 0 0 0 0 11.33l45.05 45.12a8 8 0 0 0 11.33 0L356.29 724.1 411 778.82a7.9 7.9 0 0 0 13.44-4.74l23.42-189.06a7.87 7.87 0 0 0-8.83-9.02z"
34
+ }
35
+ }
36
+ ]
37
+ },
38
+ name: "minimize",
39
+ theme: "outlined"
40
+ };
41
+ var MinimizeOutlined_default = MinimizeOutlined;
package/lib/index.d.ts CHANGED
@@ -122,6 +122,7 @@ export { default as CalendarCheckFilled } from './asn/CalendarCheckFilled';
122
122
  export { default as CalendarCheckOutlined } from './asn/CalendarCheckOutlined';
123
123
  export { default as CalendarClockOutlined } from './asn/CalendarClockOutlined';
124
124
  export { default as CalendarOutlined } from './asn/CalendarOutlined';
125
+ export { default as CallBackOutlined } from './asn/CallBackOutlined';
125
126
  export { default as CallVideoFilled } from './asn/CallVideoFilled';
126
127
  export { default as CallVideoOutlined } from './asn/CallVideoOutlined';
127
128
  export { default as CameraFilled } from './asn/CameraFilled';
@@ -438,6 +439,8 @@ export { default as GroupRuleFilled } from './asn/GroupRuleFilled';
438
439
  export { default as GroupRuleOutlined } from './asn/GroupRuleOutlined';
439
440
  export { default as HailOutlined } from './asn/HailOutlined';
440
441
  export { default as HandcuffsOutlined } from './asn/HandcuffsOutlined';
442
+ export { default as HangUpFilled } from './asn/HangUpFilled';
443
+ export { default as HangUpOutlined } from './asn/HangUpOutlined';
441
444
  export { default as HashrateCenterFilled } from './asn/HashrateCenterFilled';
442
445
  export { default as HashrateCenterOutlined } from './asn/HashrateCenterOutlined';
443
446
  export { default as HashrateFilled } from './asn/HashrateFilled';
@@ -583,6 +586,7 @@ export { default as ManualAlarmCircleOutlined } from './asn/ManualAlarmCircleOut
583
586
  export { default as ManualOutlined } from './asn/ManualOutlined';
584
587
  export { default as Map2DOutlined } from './asn/Map2DOutlined';
585
588
  export { default as Map3DOutlined } from './asn/Map3DOutlined';
589
+ export { default as MaximizeOutlined } from './asn/MaximizeOutlined';
586
590
  export { default as MeansAccessOutlined } from './asn/MeansAccessOutlined';
587
591
  export { default as MedalsFilled } from './asn/MedalsFilled';
588
592
  export { default as MedalsOutlined } from './asn/MedalsOutlined';
@@ -604,6 +608,7 @@ export { default as MigrateOutlined } from './asn/MigrateOutlined';
604
608
  export { default as MiniatureFireStationAddOutlined } from './asn/MiniatureFireStationAddOutlined';
605
609
  export { default as MiniatureFireStationFilled } from './asn/MiniatureFireStationFilled';
606
610
  export { default as MiniatureFireStationOutlined } from './asn/MiniatureFireStationOutlined';
611
+ export { default as MinimizeOutlined } from './asn/MinimizeOutlined';
607
612
  export { default as MinusCircleFilled } from './asn/MinusCircleFilled';
608
613
  export { default as MinusCircleOutlined } from './asn/MinusCircleOutlined';
609
614
  export { default as MinusOutlined } from './asn/MinusOutlined';
package/lib/index.js CHANGED
@@ -153,6 +153,7 @@ __export(src_exports, {
153
153
  CalendarCheckOutlined: () => import_CalendarCheckOutlined.default,
154
154
  CalendarClockOutlined: () => import_CalendarClockOutlined.default,
155
155
  CalendarOutlined: () => import_CalendarOutlined.default,
156
+ CallBackOutlined: () => import_CallBackOutlined.default,
156
157
  CallVideoFilled: () => import_CallVideoFilled.default,
157
158
  CallVideoOutlined: () => import_CallVideoOutlined.default,
158
159
  CameraFilled: () => import_CameraFilled.default,
@@ -469,6 +470,8 @@ __export(src_exports, {
469
470
  GroupRuleOutlined: () => import_GroupRuleOutlined.default,
470
471
  HailOutlined: () => import_HailOutlined.default,
471
472
  HandcuffsOutlined: () => import_HandcuffsOutlined.default,
473
+ HangUpFilled: () => import_HangUpFilled.default,
474
+ HangUpOutlined: () => import_HangUpOutlined.default,
472
475
  HashrateCenterFilled: () => import_HashrateCenterFilled.default,
473
476
  HashrateCenterOutlined: () => import_HashrateCenterOutlined.default,
474
477
  HashrateFilled: () => import_HashrateFilled.default,
@@ -614,6 +617,7 @@ __export(src_exports, {
614
617
  ManualOutlined: () => import_ManualOutlined.default,
615
618
  Map2DOutlined: () => import_Map2DOutlined.default,
616
619
  Map3DOutlined: () => import_Map3DOutlined.default,
620
+ MaximizeOutlined: () => import_MaximizeOutlined.default,
617
621
  MeansAccessOutlined: () => import_MeansAccessOutlined.default,
618
622
  MedalsFilled: () => import_MedalsFilled.default,
619
623
  MedalsOutlined: () => import_MedalsOutlined.default,
@@ -635,6 +639,7 @@ __export(src_exports, {
635
639
  MiniatureFireStationAddOutlined: () => import_MiniatureFireStationAddOutlined.default,
636
640
  MiniatureFireStationFilled: () => import_MiniatureFireStationFilled.default,
637
641
  MiniatureFireStationOutlined: () => import_MiniatureFireStationOutlined.default,
642
+ MinimizeOutlined: () => import_MinimizeOutlined.default,
638
643
  MinusCircleFilled: () => import_MinusCircleFilled.default,
639
644
  MinusCircleOutlined: () => import_MinusCircleOutlined.default,
640
645
  MinusOutlined: () => import_MinusOutlined.default,
@@ -1233,6 +1238,7 @@ var import_CalendarCheckFilled = __toESM(require("./asn/CalendarCheckFilled"));
1233
1238
  var import_CalendarCheckOutlined = __toESM(require("./asn/CalendarCheckOutlined"));
1234
1239
  var import_CalendarClockOutlined = __toESM(require("./asn/CalendarClockOutlined"));
1235
1240
  var import_CalendarOutlined = __toESM(require("./asn/CalendarOutlined"));
1241
+ var import_CallBackOutlined = __toESM(require("./asn/CallBackOutlined"));
1236
1242
  var import_CallVideoFilled = __toESM(require("./asn/CallVideoFilled"));
1237
1243
  var import_CallVideoOutlined = __toESM(require("./asn/CallVideoOutlined"));
1238
1244
  var import_CameraFilled = __toESM(require("./asn/CameraFilled"));
@@ -1549,6 +1555,8 @@ var import_GroupRuleFilled = __toESM(require("./asn/GroupRuleFilled"));
1549
1555
  var import_GroupRuleOutlined = __toESM(require("./asn/GroupRuleOutlined"));
1550
1556
  var import_HailOutlined = __toESM(require("./asn/HailOutlined"));
1551
1557
  var import_HandcuffsOutlined = __toESM(require("./asn/HandcuffsOutlined"));
1558
+ var import_HangUpFilled = __toESM(require("./asn/HangUpFilled"));
1559
+ var import_HangUpOutlined = __toESM(require("./asn/HangUpOutlined"));
1552
1560
  var import_HashrateCenterFilled = __toESM(require("./asn/HashrateCenterFilled"));
1553
1561
  var import_HashrateCenterOutlined = __toESM(require("./asn/HashrateCenterOutlined"));
1554
1562
  var import_HashrateFilled = __toESM(require("./asn/HashrateFilled"));
@@ -1694,6 +1702,7 @@ var import_ManualAlarmCircleOutlined = __toESM(require("./asn/ManualAlarmCircleO
1694
1702
  var import_ManualOutlined = __toESM(require("./asn/ManualOutlined"));
1695
1703
  var import_Map2DOutlined = __toESM(require("./asn/Map2DOutlined"));
1696
1704
  var import_Map3DOutlined = __toESM(require("./asn/Map3DOutlined"));
1705
+ var import_MaximizeOutlined = __toESM(require("./asn/MaximizeOutlined"));
1697
1706
  var import_MeansAccessOutlined = __toESM(require("./asn/MeansAccessOutlined"));
1698
1707
  var import_MedalsFilled = __toESM(require("./asn/MedalsFilled"));
1699
1708
  var import_MedalsOutlined = __toESM(require("./asn/MedalsOutlined"));
@@ -1715,6 +1724,7 @@ var import_MigrateOutlined = __toESM(require("./asn/MigrateOutlined"));
1715
1724
  var import_MiniatureFireStationAddOutlined = __toESM(require("./asn/MiniatureFireStationAddOutlined"));
1716
1725
  var import_MiniatureFireStationFilled = __toESM(require("./asn/MiniatureFireStationFilled"));
1717
1726
  var import_MiniatureFireStationOutlined = __toESM(require("./asn/MiniatureFireStationOutlined"));
1727
+ var import_MinimizeOutlined = __toESM(require("./asn/MinimizeOutlined"));
1718
1728
  var import_MinusCircleFilled = __toESM(require("./asn/MinusCircleFilled"));
1719
1729
  var import_MinusCircleOutlined = __toESM(require("./asn/MinusCircleOutlined"));
1720
1730
  var import_MinusOutlined = __toESM(require("./asn/MinusOutlined"));
@@ -2313,6 +2323,7 @@ var import_ZoomPlusOutlined = __toESM(require("./asn/ZoomPlusOutlined"));
2313
2323
  CalendarCheckOutlined,
2314
2324
  CalendarClockOutlined,
2315
2325
  CalendarOutlined,
2326
+ CallBackOutlined,
2316
2327
  CallVideoFilled,
2317
2328
  CallVideoOutlined,
2318
2329
  CameraFilled,
@@ -2629,6 +2640,8 @@ var import_ZoomPlusOutlined = __toESM(require("./asn/ZoomPlusOutlined"));
2629
2640
  GroupRuleOutlined,
2630
2641
  HailOutlined,
2631
2642
  HandcuffsOutlined,
2643
+ HangUpFilled,
2644
+ HangUpOutlined,
2632
2645
  HashrateCenterFilled,
2633
2646
  HashrateCenterOutlined,
2634
2647
  HashrateFilled,
@@ -2774,6 +2787,7 @@ var import_ZoomPlusOutlined = __toESM(require("./asn/ZoomPlusOutlined"));
2774
2787
  ManualOutlined,
2775
2788
  Map2DOutlined,
2776
2789
  Map3DOutlined,
2790
+ MaximizeOutlined,
2777
2791
  MeansAccessOutlined,
2778
2792
  MedalsFilled,
2779
2793
  MedalsOutlined,
@@ -2795,6 +2809,7 @@ var import_ZoomPlusOutlined = __toESM(require("./asn/ZoomPlusOutlined"));
2795
2809
  MiniatureFireStationAddOutlined,
2796
2810
  MiniatureFireStationFilled,
2797
2811
  MiniatureFireStationOutlined,
2812
+ MinimizeOutlined,
2798
2813
  MinusCircleFilled,
2799
2814
  MinusCircleOutlined,
2800
2815
  MinusOutlined,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sensoro-design/icons-svg",
3
- "version": "2.92.0",
3
+ "version": "2.94.0",
4
4
  "description": "sensoro design icons.",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -0,0 +1,21 @@
1
+ // This icon file is generated automatically.
2
+ import { IconDefinition } from '../types';
3
+
4
+ const CallBackOutlined: IconDefinition = {
5
+ icon: {
6
+ tag: 'svg',
7
+ attrs: { viewBox: '0 0 1024 1024', focusable: 'false' },
8
+ children: [
9
+ {
10
+ tag: 'path',
11
+ attrs: {
12
+ d: 'M245.38 132.03a64.66 64.66 0 0 1 45.24 18.82l109.44 109.18a65.54 65.54 0 0 1 .45 92.48l-85.63 85.7a384 384 0 0 0 66.62 104.7l15.43 16.2a385.92 385.92 0 0 0 120.83 82.3l85.12-85.25a65.34 65.34 0 0 1 92.29-.51L804.6 664.9a65.54 65.54 0 0 1 0 92.92L703.55 858.88a113.8 113.8 0 0 1-86.4 32.96l-11.77-1.28c-125.9-20.74-250.63-87.74-351.43-188.42C153.35 601.28 86.4 476.48 65.54 350.6a113.28 113.28 0 0 1 31.61-98.17L198.4 151.3a65.07 65.07 0 0 1 37.12-18.63l9.86-.64zm-.64 74.75-96.64 96.45a41.28 41.28 0 0 0-11.59 35.2l.64 3.65c18.75 108.48 77.12 217.34 165.12 306.56l5.31 5.31c83.59 82.56 184.45 139.01 285.96 161.09l24.06 4.6a41.8 41.8 0 0 0 34.82-11.38l96.9-96.84-99.98-99.84-115.2 115.27-44.8-19.33a457.92 457.92 0 0 1-125.37-80.45L344.9 608.9a456.13 456.13 0 0 1-96.13-142.34l-19.2-44.8 115.07-115.33-99.97-99.71zm405.12-6.01a7.99 7.99 0 0 1 4.6 6.91v74.18L952 281.6a8.04 8.04 0 0 1 8 7.74v60.3a8 8 0 0 1-7.68 8l-297.98.18.12 74.12a8 8 0 0 1-12.8 6.4L499.84 326.4a8 8 0 0 1-.13-12.54l141.95-112.13a8 8 0 0 1 8.32-.9z',
13
+ },
14
+ },
15
+ ],
16
+ },
17
+ name: 'call-back',
18
+ theme: 'outlined',
19
+ };
20
+
21
+ export default CallBackOutlined;
@@ -0,0 +1,21 @@
1
+ // This icon file is generated automatically.
2
+ import { IconDefinition } from '../types';
3
+
4
+ const HangUpFilled: IconDefinition = {
5
+ icon: {
6
+ tag: 'svg',
7
+ attrs: { viewBox: '0 0 1024 1024', focusable: 'false' },
8
+ children: [
9
+ {
10
+ tag: 'path',
11
+ attrs: {
12
+ d: 'M986.62 504.96v110.08a52.8 52.8 0 0 1-52.73 52.8l-158.47.06a52.8 52.8 0 0 1-52.73-52.73V456.19a484.03 484.03 0 0 0-421.31 2.56v156.42a52.84 52.84 0 0 1-52.8 52.73H90.18a52.8 52.8 0 0 1-52.8-52.8V508.54a121.25 121.25 0 0 1 47.1-101.95l18.56-14.08c5.44-3.97 9.6-6.97 12.54-8.96a724.86 724.86 0 0 1 786.82-7.23l19 12.48a505.02 505.02 0 0 1 17.74 13.06 121.5 121.5 0 0 1 47.68 92.16l-.13 11z',
13
+ },
14
+ },
15
+ ],
16
+ },
17
+ name: 'hang-up',
18
+ theme: 'filled',
19
+ };
20
+
21
+ export default HangUpFilled;
@@ -0,0 +1,21 @@
1
+ // This icon file is generated automatically.
2
+ import { IconDefinition } from '../types';
3
+
4
+ const HangUpOutlined: IconDefinition = {
5
+ icon: {
6
+ tag: 'svg',
7
+ attrs: { viewBox: '0 0 1024 1024', focusable: 'false' },
8
+ children: [
9
+ {
10
+ tag: 'path',
11
+ attrs: {
12
+ d: 'M60.6 447.1v150.53a68.8 68.8 0 0 0 69.13 69l161.98.19a69 69 0 0 0 69.12-69.19l.13-126.78a405.44 405.44 0 0 1 151.1-28.93 406.2 406.2 0 0 1 151.17 28.74v126.72a68.8 68.8 0 0 0 69 69.05l162.1.2a69 69 0 0 0 69.13-69.13V447.04a119.74 119.74 0 0 0-49.54-96.64C804.86 272.13 662.14 229.06 512.12 229c-150 .18-292.73 43.32-401.91 121.4a119.23 119.23 0 0 0-49.6 96.64zm91.27-38.14c97.15-69.57 225.15-107.9 360.2-107.9 135.03 0 263.03 38.27 360.12 107.84 12.23 8.7 19.46 23.04 19.52 38.2v147.78l-156.8.06.2-170.88-20.93-9.6a481.28 481.28 0 0 0-404.1.13l-21 9.6.14 170.75-156.8.07V447.23c0-15.3 7.23-29.57 19.45-38.27z',
13
+ },
14
+ },
15
+ ],
16
+ },
17
+ name: 'hang-up',
18
+ theme: 'outlined',
19
+ };
20
+
21
+ export default HangUpOutlined;
@@ -0,0 +1,21 @@
1
+ // This icon file is generated automatically.
2
+ import { IconDefinition } from '../types';
3
+
4
+ const MaximizeOutlined: IconDefinition = {
5
+ icon: {
6
+ tag: 'svg',
7
+ attrs: { viewBox: '0 0 1024 1024', focusable: 'false' },
8
+ children: [
9
+ {
10
+ tag: 'path',
11
+ attrs: {
12
+ d: 'm855.04 160.13-189.25 23.49a7.94 7.94 0 0 0-4.67 13.44l54.66 54.72L562.3 405.3a8 8 0 0 0 0 11.27l45.12 45.12a8 8 0 0 0 11.27 0l153.6-153.6L827 362.82a7.9 7.9 0 0 0 13.44-4.74l23.42-189.06a7.87 7.87 0 0 0-8.9-8.96zM416.64 562.3a8 8 0 0 0-11.33 0L251.78 715.9l-54.66-54.72a7.94 7.94 0 0 0-13.5 4.74l-23.5 189.06a8 8 0 0 0 8.9 8.96l189.19-23.56a7.94 7.94 0 0 0 4.67-13.44l-54.66-54.72 153.6-153.6a8 8 0 0 0 0-11.32l-45.24-45z',
13
+ },
14
+ },
15
+ ],
16
+ },
17
+ name: 'maximize',
18
+ theme: 'outlined',
19
+ };
20
+
21
+ export default MaximizeOutlined;
@@ -0,0 +1,21 @@
1
+ // This icon file is generated automatically.
2
+ import { IconDefinition } from '../types';
3
+
4
+ const MinimizeOutlined: IconDefinition = {
5
+ icon: {
6
+ tag: 'svg',
7
+ attrs: { viewBox: '0 0 1024 1024', focusable: 'false' },
8
+ children: [
9
+ {
10
+ tag: 'path',
11
+ attrs: {
12
+ d: 'm881.73 187.4-45.12-45.13a8 8 0 0 0-11.33 0L667.84 299.9l-54.72-54.72a7.94 7.94 0 0 0-13.5 4.74l-23.5 189.06a8 8 0 0 0 8.84 9.02l189.18-23.55a7.94 7.94 0 0 0 4.68-13.44l-54.66-54.72 157.57-157.63a8 8 0 0 0-.07-11.2zM438.98 576.12l-189.19 23.49a8 8 0 0 0-4.67 13.44l54.66 54.72-157.44 157.5a8 8 0 0 0 0 11.33l45.05 45.12a8 8 0 0 0 11.33 0L356.29 724.1 411 778.82a7.9 7.9 0 0 0 13.44-4.74l23.42-189.06a7.87 7.87 0 0 0-8.83-9.02z',
13
+ },
14
+ },
15
+ ],
16
+ },
17
+ name: 'minimize',
18
+ theme: 'outlined',
19
+ };
20
+
21
+ export default MinimizeOutlined;
package/src/index.ts CHANGED
@@ -123,6 +123,7 @@ export { default as CalendarCheckFilled } from './asn/CalendarCheckFilled';
123
123
  export { default as CalendarCheckOutlined } from './asn/CalendarCheckOutlined';
124
124
  export { default as CalendarClockOutlined } from './asn/CalendarClockOutlined';
125
125
  export { default as CalendarOutlined } from './asn/CalendarOutlined';
126
+ export { default as CallBackOutlined } from './asn/CallBackOutlined';
126
127
  export { default as CallVideoFilled } from './asn/CallVideoFilled';
127
128
  export { default as CallVideoOutlined } from './asn/CallVideoOutlined';
128
129
  export { default as CameraFilled } from './asn/CameraFilled';
@@ -439,6 +440,8 @@ export { default as GroupRuleFilled } from './asn/GroupRuleFilled';
439
440
  export { default as GroupRuleOutlined } from './asn/GroupRuleOutlined';
440
441
  export { default as HailOutlined } from './asn/HailOutlined';
441
442
  export { default as HandcuffsOutlined } from './asn/HandcuffsOutlined';
443
+ export { default as HangUpFilled } from './asn/HangUpFilled';
444
+ export { default as HangUpOutlined } from './asn/HangUpOutlined';
442
445
  export { default as HashrateCenterFilled } from './asn/HashrateCenterFilled';
443
446
  export { default as HashrateCenterOutlined } from './asn/HashrateCenterOutlined';
444
447
  export { default as HashrateFilled } from './asn/HashrateFilled';
@@ -584,6 +587,7 @@ export { default as ManualAlarmCircleOutlined } from './asn/ManualAlarmCircleOut
584
587
  export { default as ManualOutlined } from './asn/ManualOutlined';
585
588
  export { default as Map2DOutlined } from './asn/Map2DOutlined';
586
589
  export { default as Map3DOutlined } from './asn/Map3DOutlined';
590
+ export { default as MaximizeOutlined } from './asn/MaximizeOutlined';
587
591
  export { default as MeansAccessOutlined } from './asn/MeansAccessOutlined';
588
592
  export { default as MedalsFilled } from './asn/MedalsFilled';
589
593
  export { default as MedalsOutlined } from './asn/MedalsOutlined';
@@ -605,6 +609,7 @@ export { default as MigrateOutlined } from './asn/MigrateOutlined';
605
609
  export { default as MiniatureFireStationAddOutlined } from './asn/MiniatureFireStationAddOutlined';
606
610
  export { default as MiniatureFireStationFilled } from './asn/MiniatureFireStationFilled';
607
611
  export { default as MiniatureFireStationOutlined } from './asn/MiniatureFireStationOutlined';
612
+ export { default as MinimizeOutlined } from './asn/MinimizeOutlined';
608
613
  export { default as MinusCircleFilled } from './asn/MinusCircleFilled';
609
614
  export { default as MinusCircleOutlined } from './asn/MinusCircleOutlined';
610
615
  export { default as MinusOutlined } from './asn/MinusOutlined';