monkey-style-guide 2.0.152 → 2.0.155

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 (34) hide show
  1. package/README.md +11 -4
  2. package/assets/icons/add-plus.svg +5 -0
  3. package/assets/icons/cash-banknote-invoice.svg +8 -0
  4. package/assets/icons/hands-clap.svg +10 -0
  5. package/assets/icons/more-circle.svg +5 -0
  6. package/assets/icons/phone-call.svg +4 -0
  7. package/assets/icons/pin-navigation.svg +5 -0
  8. package/assets/icons/user-group.svg +8 -0
  9. package/esm2020/lib/components/icon/icon-add-plus.component.mjs +15 -0
  10. package/esm2020/lib/components/icon/icon-cash-banknote-invoice.mjs +15 -0
  11. package/esm2020/lib/components/icon/icon-hands-clap.component.mjs +15 -0
  12. package/esm2020/lib/components/icon/icon-more-circle.component.mjs +15 -0
  13. package/esm2020/lib/components/icon/icon-phone-call.component.mjs +15 -0
  14. package/esm2020/lib/components/icon/icon-pin-navigation.component.mjs +15 -0
  15. package/esm2020/lib/components/icon/icon-user-group.component.mjs +15 -0
  16. package/esm2020/lib/components/icon/icon.component.mjs +187 -96
  17. package/esm2020/lib/components/icon/icon.module.mjs +22 -1
  18. package/esm2020/lib/components/icon/index.mjs +3 -1
  19. package/fesm2015/monkey-style-guide.mjs +191 -2
  20. package/fesm2015/monkey-style-guide.mjs.map +1 -1
  21. package/fesm2020/monkey-style-guide.mjs +191 -2
  22. package/fesm2020/monkey-style-guide.mjs.map +1 -1
  23. package/lib/components/icon/icon-add-plus.component.d.ts +7 -0
  24. package/lib/components/icon/icon-cash-banknote-invoice.d.ts +7 -0
  25. package/lib/components/icon/icon-hands-clap.component.d.ts +7 -0
  26. package/lib/components/icon/icon-more-circle.component.d.ts +7 -0
  27. package/lib/components/icon/icon-phone-call.component.d.ts +7 -0
  28. package/lib/components/icon/icon-pin-navigation.component.d.ts +7 -0
  29. package/lib/components/icon/icon-user-group.component.d.ts +7 -0
  30. package/lib/components/icon/icon.module.d.ts +101 -94
  31. package/lib/components/icon/index.d.ts +2 -0
  32. package/monkey-style-guide-2.0.155.tgz +0 -0
  33. package/package.json +1 -1
  34. package/monkey-style-guide-2.0.152.tgz +0 -0
@@ -756,6 +756,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
756
756
  }]
757
757
  }] });
758
758
 
759
+ class MonkeyIconAddPlusComponent {
760
+ }
761
+ MonkeyIconAddPlusComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconAddPlusComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
762
+ MonkeyIconAddPlusComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonkeyIconAddPlusComponent, selector: "monkey-icon-add-plus", inputs: { fillColor: "fillColor", size: "size" }, ngImport: i0, template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path d=\"M12 8V16\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M16 12H8\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 21V21C7.029 21 3 16.971 3 12V12C3 7.029 7.029 3 12 3V3C16.971 3 21 7.029 21 12V12C21 16.971 16.971 21 12 21Z\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] });
763
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconAddPlusComponent, decorators: [{
764
+ type: Component,
765
+ args: [{ selector: 'monkey-icon-add-plus', template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path d=\"M12 8V16\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M16 12H8\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 21V21C7.029 21 3 16.971 3 12V12C3 7.029 7.029 3 12 3V3C16.971 3 21 7.029 21 12V12C21 16.971 16.971 21 12 21Z\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] }]
766
+ }], propDecorators: { fillColor: [{
767
+ type: Input
768
+ }], size: [{
769
+ type: Input
770
+ }] } });
771
+
759
772
  class MonkeyArrowsComponent {
760
773
  }
761
774
  MonkeyArrowsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyArrowsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
@@ -990,6 +1003,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
990
1003
  type: Input
991
1004
  }] } });
992
1005
 
1006
+ class MonkeyIconCashBanknoteInvoiceComponent {
1007
+ }
1008
+ MonkeyIconCashBanknoteInvoiceComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconCashBanknoteInvoiceComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1009
+ MonkeyIconCashBanknoteInvoiceComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonkeyIconCashBanknoteInvoiceComponent, selector: "monkey-icon-cash-banknote-invoice", inputs: { fillColor: "fillColor", size: "size" }, ngImport: i0, template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<circle cx=\"16\" cy=\"16.5\" r=\"1.5\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M7 21H3C2.44772 21 2 20.5523 2 20V4.49752C2 4.11947 2.2132 3.77374 2.551 3.604L3.541 3.10648C3.82149 2.96552 4.15189 2.96446 4.43328 3.10361L6.00576 3.8812L7.54666 3.10713C7.82797 2.96581 8.1594 2.96521 8.44122 3.10551L10 3.88151L11.5588 3.10551C11.8406 2.96521 12.172 2.96581 12.4533 3.10713L13.9942 3.8812L15.5667 3.10361C15.8481 2.96446 16.1785 2.96552 16.459 3.10648L17.449 3.604C17.7868 3.77374 18 4.11947 18 4.49752L18 9\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M6 9H14.004\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M7 15H6\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M6.00395 12H6.99995\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<rect x=\"22\" y=\"21\" width=\"12\" height=\"9\" rx=\"2\" transform=\"rotate(-180 22 21)\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] });
1010
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconCashBanknoteInvoiceComponent, decorators: [{
1011
+ type: Component,
1012
+ args: [{ selector: 'monkey-icon-cash-banknote-invoice', template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<circle cx=\"16\" cy=\"16.5\" r=\"1.5\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M7 21H3C2.44772 21 2 20.5523 2 20V4.49752C2 4.11947 2.2132 3.77374 2.551 3.604L3.541 3.10648C3.82149 2.96552 4.15189 2.96446 4.43328 3.10361L6.00576 3.8812L7.54666 3.10713C7.82797 2.96581 8.1594 2.96521 8.44122 3.10551L10 3.88151L11.5588 3.10551C11.8406 2.96521 12.172 2.96581 12.4533 3.10713L13.9942 3.8812L15.5667 3.10361C15.8481 2.96446 16.1785 2.96552 16.459 3.10648L17.449 3.604C17.7868 3.77374 18 4.11947 18 4.49752L18 9\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M6 9H14.004\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M7 15H6\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M6.00395 12H6.99995\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<rect x=\"22\" y=\"21\" width=\"12\" height=\"9\" rx=\"2\" transform=\"rotate(-180 22 21)\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] }]
1013
+ }], propDecorators: { fillColor: [{
1014
+ type: Input
1015
+ }], size: [{
1016
+ type: Input
1017
+ }] } });
1018
+
993
1019
  class MonkeyIconChatComponent {
994
1020
  }
995
1021
  MonkeyIconChatComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconChatComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
@@ -1406,6 +1432,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1406
1432
  type: Input
1407
1433
  }] } });
1408
1434
 
1435
+ class MonkeyIconHandsClapComponent {
1436
+ }
1437
+ MonkeyIconHandsClapComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconHandsClapComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1438
+ MonkeyIconHandsClapComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonkeyIconHandsClapComponent, selector: "monkey-icon-hands-clap", inputs: { fillColor: "fillColor", size: "size" }, ngImport: i0, template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path d=\"M17.39 1.76L16.31 2.84\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M8.31 1.76L9.31 2.76\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M12.85 1V2.41\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M14.582 22.545C16.691 22.799 18.89 22.123 20.508 20.504V20.504C22.202 18.81 22.937 16.381 22.468 14.032L21.226 7.824C21.081 7.098 20.443 6.575 19.702 6.575V6.575C18.844 6.575 18.148 7.271 18.148 8.129V9.612\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M15.37 8.039L13.552 6.221C12.966 5.635 12.016 5.635 11.431 6.221V6.221C10.845 6.807 10.845 7.757 11.431 8.342\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M6.78199 7.937C6.19599 7.351 6.19599 6.401 6.78199 5.816V5.816C7.36799 5.23 8.31799 5.23 8.90299 5.816L12.792 9.705L14.913 11.826V9.137C14.913 8.279 15.609 7.583 16.467 7.583V7.583C17.208 7.583 17.846 8.106 17.991 8.832L19.11 14.429C19.58 16.778 18.845 19.207 17.15 20.901V20.901C14.352 23.699 9.81499 23.699 7.01699 20.901L4.30699 18.19L1.83199 15.715C1.24599 15.129 1.24599 14.179 1.83199 13.594V13.594C2.41799 13.008 3.36799 13.008 3.95299 13.594\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M7.13599 16.776L2.53999 12.18C1.95399 11.594 1.95399 10.644 2.53999 10.059V10.059C3.12599 9.473 4.07599 9.473 4.66099 10.059\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M9.257 14.654L3.247 8.644C2.661 8.058 2.661 7.108 3.247 6.523V6.523C3.833 5.937 4.783 5.937 5.368 6.523L11.378 12.533\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] });
1439
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconHandsClapComponent, decorators: [{
1440
+ type: Component,
1441
+ args: [{ selector: 'monkey-icon-hands-clap', template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path d=\"M17.39 1.76L16.31 2.84\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M8.31 1.76L9.31 2.76\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M12.85 1V2.41\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M14.582 22.545C16.691 22.799 18.89 22.123 20.508 20.504V20.504C22.202 18.81 22.937 16.381 22.468 14.032L21.226 7.824C21.081 7.098 20.443 6.575 19.702 6.575V6.575C18.844 6.575 18.148 7.271 18.148 8.129V9.612\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M15.37 8.039L13.552 6.221C12.966 5.635 12.016 5.635 11.431 6.221V6.221C10.845 6.807 10.845 7.757 11.431 8.342\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M6.78199 7.937C6.19599 7.351 6.19599 6.401 6.78199 5.816V5.816C7.36799 5.23 8.31799 5.23 8.90299 5.816L12.792 9.705L14.913 11.826V9.137C14.913 8.279 15.609 7.583 16.467 7.583V7.583C17.208 7.583 17.846 8.106 17.991 8.832L19.11 14.429C19.58 16.778 18.845 19.207 17.15 20.901V20.901C14.352 23.699 9.81499 23.699 7.01699 20.901L4.30699 18.19L1.83199 15.715C1.24599 15.129 1.24599 14.179 1.83199 13.594V13.594C2.41799 13.008 3.36799 13.008 3.95299 13.594\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M7.13599 16.776L2.53999 12.18C1.95399 11.594 1.95399 10.644 2.53999 10.059V10.059C3.12599 9.473 4.07599 9.473 4.66099 10.059\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M9.257 14.654L3.247 8.644C2.661 8.058 2.661 7.108 3.247 6.523V6.523C3.833 5.937 4.783 5.937 5.368 6.523L11.378 12.533\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] }]
1442
+ }], propDecorators: { fillColor: [{
1443
+ type: Input
1444
+ }], size: [{
1445
+ type: Input
1446
+ }] } });
1447
+
1409
1448
  class MonkeyIconHelpComponent {
1410
1449
  }
1411
1450
  MonkeyIconHelpComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconHelpComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
@@ -1614,6 +1653,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1614
1653
  type: Input
1615
1654
  }] } });
1616
1655
 
1656
+ class MonkeyIconMoreCircleComponent {
1657
+ }
1658
+ MonkeyIconMoreCircleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconMoreCircleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1659
+ MonkeyIconMoreCircleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonkeyIconMoreCircleComponent, selector: "monkey-icon-more-circle", inputs: { fillColor: "fillColor", size: "size" }, ngImport: i0, template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path d=\"M12 8V16\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M16 12H8\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 21V21C7.029 21 3 16.971 3 12V12C3 7.029 7.029 3 12 3V3C16.971 3 21 7.029 21 12V12C21 16.971 16.971 21 12 21Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] });
1660
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconMoreCircleComponent, decorators: [{
1661
+ type: Component,
1662
+ args: [{ selector: 'monkey-icon-more-circle', template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path d=\"M12 8V16\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M16 12H8\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 21V21C7.029 21 3 16.971 3 12V12C3 7.029 7.029 3 12 3V3C16.971 3 21 7.029 21 12V12C21 16.971 16.971 21 12 21Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] }]
1663
+ }], propDecorators: { fillColor: [{
1664
+ type: Input
1665
+ }], size: [{
1666
+ type: Input
1667
+ }] } });
1668
+
1617
1669
  class MonkeyIconMoreComponent {
1618
1670
  }
1619
1671
  MonkeyIconMoreComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconMoreComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
@@ -1666,6 +1718,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1666
1718
  type: Input
1667
1719
  }] } });
1668
1720
 
1721
+ class MonkeyIconPinNavigationComponent {
1722
+ }
1723
+ MonkeyIconPinNavigationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconPinNavigationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1724
+ MonkeyIconPinNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonkeyIconPinNavigationComponent, selector: "monkey-icon-pin-navigation", inputs: { fillColor: "fillColor", size: "size" }, ngImport: i0, template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path d=\"M15.049 15H17.558C18.419 15 19.183 15.551 19.455 16.368L20.122 18.368C20.554 19.663 19.59 21 18.225 21H5.775C4.41 21 3.446 19.663 3.878 18.368L4.545 16.368C4.816 15.551 5.581 15 6.442 15H8.952\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 18C12 18 6 13.208 6 8.833C6 5.612 8.686 3 12 3C15.314 3 18 5.612 18 8.833C18 13.208 12 18 12 18Z\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M13.4142 7.58579C14.1953 8.36684 14.1953 9.63317 13.4142 10.4142C12.6332 11.1953 11.3668 11.1953 10.5858 10.4142C9.80472 9.63317 9.80472 8.36684 10.5858 7.58579C11.3668 6.80474 12.6332 6.80474 13.4142 7.58579\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] });
1725
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconPinNavigationComponent, decorators: [{
1726
+ type: Component,
1727
+ args: [{ selector: 'monkey-icon-pin-navigation', template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path d=\"M15.049 15H17.558C18.419 15 19.183 15.551 19.455 16.368L20.122 18.368C20.554 19.663 19.59 21 18.225 21H5.775C4.41 21 3.446 19.663 3.878 18.368L4.545 16.368C4.816 15.551 5.581 15 6.442 15H8.952\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 18C12 18 6 13.208 6 8.833C6 5.612 8.686 3 12 3C15.314 3 18 5.612 18 8.833C18 13.208 12 18 12 18Z\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M13.4142 7.58579C14.1953 8.36684 14.1953 9.63317 13.4142 10.4142C12.6332 11.1953 11.3668 11.1953 10.5858 10.4142C9.80472 9.63317 9.80472 8.36684 10.5858 7.58579C11.3668 6.80474 12.6332 6.80474 13.4142 7.58579\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] }]
1728
+ }], propDecorators: { fillColor: [{
1729
+ type: Input
1730
+ }], size: [{
1731
+ type: Input
1732
+ }] } });
1733
+
1669
1734
  class MonkeyIconPeopleComponent {
1670
1735
  }
1671
1736
  MonkeyIconPeopleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconPeopleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
@@ -1731,6 +1796,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1731
1796
  type: Input
1732
1797
  }] } });
1733
1798
 
1799
+ class MonkeyIconPhoneCallComponent {
1800
+ }
1801
+ MonkeyIconPhoneCallComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconPhoneCallComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1802
+ MonkeyIconPhoneCallComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonkeyIconPhoneCallComponent, selector: "monkey-icon-phone-call", inputs: { fillColor: "fillColor", size: "size" }, ngImport: i0, template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.131 13.869C8.961 12.699 8.079 11.389 7.493 10.06C7.37 9.779 7.442 9.45 7.659 9.233L8.478 8.414C9.149 7.743 9.149 6.794 8.563 6.208L7.39 5.035C6.609 4.254 5.343 4.254 4.562 5.035L3.91 5.686C3.169 6.427 2.86 7.496 3.06 8.556C3.554 11.169 5.072 14.03 7.521 16.479C9.97 18.928 12.831 20.446 15.444 20.94C16.504 21.14 17.573 20.831 18.314 20.09L18.965 19.439C19.746 18.658 19.746 17.392 18.965 16.611L17.792 15.438C17.206 14.852 16.256 14.852 15.671 15.438L14.768 16.342C14.551 16.559 14.222 16.632 13.941 16.508C12.612 15.921 11.301 15.038 10.131 13.869Z\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.832 2.671C20.129 2.671 21 3.849 21 4.947C21 7.176 17.386 9 17.321 9C17.255 9 13.642 7.176 13.642 4.947C13.642 3.849 14.513 2.67 15.81 2.67C16.552 2.67 17.039 3.028 17.321 3.347C17.603 3.029 18.09 2.671 18.832 2.671Z\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] });
1803
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconPhoneCallComponent, decorators: [{
1804
+ type: Component,
1805
+ args: [{ selector: 'monkey-icon-phone-call', template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.131 13.869C8.961 12.699 8.079 11.389 7.493 10.06C7.37 9.779 7.442 9.45 7.659 9.233L8.478 8.414C9.149 7.743 9.149 6.794 8.563 6.208L7.39 5.035C6.609 4.254 5.343 4.254 4.562 5.035L3.91 5.686C3.169 6.427 2.86 7.496 3.06 8.556C3.554 11.169 5.072 14.03 7.521 16.479C9.97 18.928 12.831 20.446 15.444 20.94C16.504 21.14 17.573 20.831 18.314 20.09L18.965 19.439C19.746 18.658 19.746 17.392 18.965 16.611L17.792 15.438C17.206 14.852 16.256 14.852 15.671 15.438L14.768 16.342C14.551 16.559 14.222 16.632 13.941 16.508C12.612 15.921 11.301 15.038 10.131 13.869Z\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.832 2.671C20.129 2.671 21 3.849 21 4.947C21 7.176 17.386 9 17.321 9C17.255 9 13.642 7.176 13.642 4.947C13.642 3.849 14.513 2.67 15.81 2.67C16.552 2.67 17.039 3.028 17.321 3.347C17.603 3.029 18.09 2.671 18.832 2.671Z\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] }]
1806
+ }], propDecorators: { fillColor: [{
1807
+ type: Input
1808
+ }], size: [{
1809
+ type: Input
1810
+ }] } });
1811
+
1734
1812
  class MonkeyIconPorkComponent {
1735
1813
  }
1736
1814
  MonkeyIconPorkComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconPorkComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
@@ -1926,6 +2004,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
1926
2004
  type: Input
1927
2005
  }] } });
1928
2006
 
2007
+ class MonkeyIconUserGroupComponent {
2008
+ }
2009
+ MonkeyIconUserGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconUserGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2010
+ MonkeyIconUserGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonkeyIconUserGroupComponent, selector: "monkey-icon-user-group", inputs: { fillColor: "fillColor", size: "size" }, ngImport: i0, template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path d=\"M20.7925 9.52352C21.5825 10.3136 21.5825 11.5944 20.7925 12.3845C20.0025 13.1745 18.7216 13.1745 17.9315 12.3845C17.1415 11.5944 17.1415 10.3136 17.9315 9.52352C18.7216 8.73349 20.0025 8.73349 20.7925 9.52352\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M14.2026 5.91236C15.4191 7.12884 15.4191 9.10115 14.2026 10.3176C12.9861 11.5341 11.0138 11.5341 9.79731 10.3176C8.58083 9.10116 8.58083 7.12885 9.79731 5.91236C11.0138 4.69588 12.9861 4.69588 14.2026 5.91236\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M6.06849 9.52352C6.85853 10.3136 6.85853 11.5944 6.06849 12.3845C5.27846 13.1745 3.99757 13.1745 3.20754 12.3845C2.41751 11.5944 2.41751 10.3136 3.20754 9.52352C3.99758 8.73349 5.27846 8.73349 6.06849 9.52352\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M23 19V17.904C23 16.523 21.881 15.404 20.5 15.404H19.699\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M1 19V17.904C1 16.523 2.119 15.404 3.5 15.404H4.301\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M17.339 19V17.399C17.339 15.466 15.772 13.899 13.839 13.899H10.16C8.227 13.899 6.66 15.466 6.66 17.399V19\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] });
2011
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconUserGroupComponent, decorators: [{
2012
+ type: Component,
2013
+ args: [{ selector: 'monkey-icon-user-group', template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path d=\"M20.7925 9.52352C21.5825 10.3136 21.5825 11.5944 20.7925 12.3845C20.0025 13.1745 18.7216 13.1745 17.9315 12.3845C17.1415 11.5944 17.1415 10.3136 17.9315 9.52352C18.7216 8.73349 20.0025 8.73349 20.7925 9.52352\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M14.2026 5.91236C15.4191 7.12884 15.4191 9.10115 14.2026 10.3176C12.9861 11.5341 11.0138 11.5341 9.79731 10.3176C8.58083 9.10116 8.58083 7.12885 9.79731 5.91236C11.0138 4.69588 12.9861 4.69588 14.2026 5.91236\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M6.06849 9.52352C6.85853 10.3136 6.85853 11.5944 6.06849 12.3845C5.27846 13.1745 3.99757 13.1745 3.20754 12.3845C2.41751 11.5944 2.41751 10.3136 3.20754 9.52352C3.99758 8.73349 5.27846 8.73349 6.06849 9.52352\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M23 19V17.904C23 16.523 21.881 15.404 20.5 15.404H19.699\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M1 19V17.904C1 16.523 2.119 15.404 3.5 15.404H4.301\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M17.339 19V17.399C17.339 15.466 15.772 13.899 13.839 13.899H10.16C8.227 13.899 6.66 15.466 6.66 17.399V19\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] }]
2014
+ }], propDecorators: { fillColor: [{
2015
+ type: Input
2016
+ }], size: [{
2017
+ type: Input
2018
+ }] } });
2019
+
1929
2020
  class MonkeyIconWaitingComponent {
1930
2021
  }
1931
2022
  MonkeyIconWaitingComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconWaitingComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
@@ -2029,6 +2120,12 @@ class MonkeyIconComponent {
2029
2120
  }
2030
2121
  MonkeyIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconComponent, deps: [{ token: MonkeyStyleGuideSettingsService }], target: i0.ɵɵFactoryTarget.Component });
2031
2122
  MonkeyIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonkeyIconComponent, selector: "monkey-icon", inputs: { icon: "icon", color: "color", contrast: "contrast", disabled: "disabled" }, host: { listeners: { "click": "onClick($event)" } }, usesOnChanges: true, ngImport: i0, template: `
2123
+ <monkey-icon-add-plus
2124
+ [fillColor]="_fillColor"
2125
+ [id]="_id"
2126
+ [size]="_size"
2127
+ *ngIf="_icon === 'add-plus'"
2128
+ ></monkey-icon-add-plus>
2032
2129
  <monkey-icon-arrows
2033
2130
  [fillColor]="_fillColor"
2034
2131
  [id]="_id"
@@ -2137,6 +2234,12 @@ MonkeyIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
2137
2234
  [size]="_size"
2138
2235
  *ngIf="_icon === 'card-machine'"
2139
2236
  ></monkey-icon-card-machine>
2237
+ <monkey-icon-cash-banknote-invoice
2238
+ [fillColor]="_fillColor"
2239
+ [id]="_id"
2240
+ [size]="_size"
2241
+ *ngIf="_icon === 'cash-banknote-invoice'"
2242
+ ></monkey-icon-cash-banknote-invoice>
2140
2243
  <monkey-icon-chat
2141
2244
  [fillColor]="_fillColor"
2142
2245
  [id]="_id"
@@ -2329,6 +2432,12 @@ MonkeyIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
2329
2432
  [size]="_size"
2330
2433
  *ngIf="_icon === 'grid'"
2331
2434
  ></monkey-icon-grid>
2435
+ <monkey-icon-hands-clap
2436
+ [fillColor]="_fillColor"
2437
+ [id]="_id"
2438
+ [size]="_size"
2439
+ *ngIf="_icon === 'hands-clap'"
2440
+ ></monkey-icon-hands-clap>
2332
2441
  <monkey-icon-help
2333
2442
  [fillColor]="_fillColor"
2334
2443
  [id]="_id"
@@ -2425,6 +2534,12 @@ MonkeyIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
2425
2534
  [size]="_size"
2426
2535
  *ngIf="_icon === 'money-sign'"
2427
2536
  ></monkey-icon-money-sign>
2537
+ <monkey-icon-more-circle
2538
+ [fillColor]="_fillColor"
2539
+ [id]="_id"
2540
+ [size]="_size"
2541
+ *ngIf="_icon === 'more-circle'"
2542
+ ></monkey-icon-more-circle>
2428
2543
  <monkey-icon-more
2429
2544
  [fillColor]="_fillColor"
2430
2545
  [id]="_id"
@@ -2449,6 +2564,12 @@ MonkeyIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
2449
2564
  [size]="_size"
2450
2565
  *ngIf="_icon === 'password'"
2451
2566
  ></monkey-icon-password>
2567
+ <monkey-icon-pin-navigation
2568
+ [fillColor]="_fillColor"
2569
+ [id]="_id"
2570
+ [size]="_size"
2571
+ *ngIf="_icon === 'pin-navigation'"
2572
+ ></monkey-icon-pin-navigation>
2452
2573
  <monkey-icon-people
2453
2574
  [fillColor]="_fillColor"
2454
2575
  [id]="_id"
@@ -2479,6 +2600,12 @@ MonkeyIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
2479
2600
  [size]="_size"
2480
2601
  *ngIf="_icon === 'phone'"
2481
2602
  ></monkey-icon-phone>
2603
+ <monkey-icon-phone-call
2604
+ [fillColor]="_fillColor"
2605
+ [id]="_id"
2606
+ [size]="_size"
2607
+ *ngIf="_icon === 'phone-call'"
2608
+ ></monkey-icon-phone-call>
2482
2609
  <monkey-icon-pork
2483
2610
  [fillColor]="_fillColor"
2484
2611
  [id]="_id"
@@ -2569,6 +2696,12 @@ MonkeyIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
2569
2696
  [size]="_size"
2570
2697
  *ngIf="_icon === 'user'"
2571
2698
  ></monkey-icon-user>
2699
+ <monkey-icon-user-group
2700
+ [fillColor]="_fillColor"
2701
+ [id]="_id"
2702
+ [size]="_size"
2703
+ *ngIf="_icon === 'user-group'"
2704
+ ></monkey-icon-user-group>
2572
2705
  <monkey-icon-waiting
2573
2706
  [fillColor]="_fillColor"
2574
2707
  [id]="_id"
@@ -2587,12 +2720,18 @@ MonkeyIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
2587
2720
  [size]="_size"
2588
2721
  *ngIf="_icon === 'warning'"
2589
2722
  ></monkey-icon-warning>
2590
- `, isInline: true, components: [{ type: MonkeyArrowsComponent, selector: "monkey-icon-arrows", inputs: ["fillColor", "size"] }, { type: MonkeyIconArrowDownComponent, selector: "monkey-icon-arrow-down", inputs: ["fillColor", "size"] }, { type: MonkeyIconArrowLeftComponent, selector: "monkey-icon-arrow-left", inputs: ["fillColor", "size"] }, { type: MonkeyIconArrowRightComponent, selector: "monkey-icon-arrow-right", inputs: ["fillColor", "size"] }, { type: MonkeyIconArrowLineRightComponent, selector: "monkey-icon-arrow-line-right", inputs: ["fillColor", "size"] }, { type: MonkeyIconArrowUpComponent, selector: "monkey-icon-arrow-up", inputs: ["fillColor", "size"] }, { type: MonkeyIconAuctionComponent, selector: "monkey-icon-auction", inputs: ["fillColor", "size"] }, { type: MonkeyIconBankComponent, selector: "monkey-icon-bank", inputs: ["fillColor", "size"] }, { type: MonkeyBankAccountComponent, selector: "monkey-icon-bank-account", inputs: ["fillColor", "size"] }, { type: MonkeyIconBankNoteSearchComponent, selector: "monkey-icon-banknote-search", inputs: ["fillColor", "size"] }, { type: MonkeyIconBellComponent, selector: "monkey-icon-bell", inputs: ["fillColor", "size"] }, { type: MonkeyIconBookComponent, selector: "monkey-icon-book", inputs: ["fillColor", "size"] }, { type: MonkeyIconBoxComponent, selector: "monkey-icon-box", inputs: ["fillColor", "size"] }, { type: MonkeyIconBuildPersonComponent, selector: "monkey-icon-build-person", inputs: ["fillColor", "size"] }, { type: MonkeyIconCalendarComponent, selector: "monkey-icon-calendar", inputs: ["fillColor", "size"] }, { type: MonkeyIconCameraComponent, selector: "monkey-icon-camera", inputs: ["fillColor", "size"] }, { type: MonkeyIconCardComponent, selector: "monkey-icon-card", inputs: ["fillColor", "size"] }, { type: MonkeyIconCardMachineComponent, selector: "monkey-icon-card-machine", inputs: ["fillColor", "size"] }, { type: MonkeyIconChatComponent, selector: "monkey-icon-chat", inputs: ["fillColor", "size"] }, { type: MonkeyIconCheckCircleOutComponent, selector: "monkey-icon-check-circle-out", inputs: ["fillColor", "size"] }, { type: MonkeyIconCheckCircleComponent, selector: "monkey-icon-check-circle", inputs: ["fillColor", "size"] }, { type: MonkeyIconCheckGreyComponent, selector: "monkey-icon-check-grey", inputs: ["fillColor", "size"] }, { type: MonkeyIconCheckWhiteComponent, selector: "monkey-icon-check-white", inputs: ["fillColor", "size"] }, { type: MonkeyIconCheckComponent, selector: "monkey-icon-check", inputs: ["fillColor", "size"] }, { type: MonkeyIconClipboardComponent, selector: "monkey-icon-clipboard", inputs: ["fillColor", "size"] }, { type: MonkeyIconClockComponent, selector: "monkey-icon-clock", inputs: ["fillColor", "size"] }, { type: MonkeyIconCloseComponent, selector: "monkey-icon-close", inputs: ["fillColor", "size"] }, { type: MonkeyIconCNPJComponent, selector: "monkey-icon-cnpj", inputs: ["fillColor", "size"] }, { type: MonkeyIconCodepenComponent, selector: "monkey-icon-codepen", inputs: ["fillColor", "size"] }, { type: MonkeyIconCompanyNameComponent, selector: "monkey-icon-company-name", inputs: ["fillColor", "size"] }, { type: MonkeyIconContractComponent, selector: "monkey-icon-contract", inputs: ["fillColor", "size"] }, { type: MonkeyIconContractPenComponent, selector: "monkey-icon-contract-pen", inputs: ["fillColor", "size"] }, { type: MonkeyIconDeleteComponent, selector: "monkey-icon-delete", inputs: ["fillColor", "size"] }, { type: MonkeyIconDocumentComponent, selector: "monkey-icon-document", inputs: ["fillColor", "size"] }, { type: MonkeyIconDollarSignComponent, selector: "monkey-icon-dollar-sign", inputs: ["fillColor", "size"] }, { type: MonkeyIconDollarSignCircleComponent, selector: "monkey-icon-dollar-sign-circle", inputs: ["fillColor", "size"] }, { type: MonkeyIconDomainComponent, selector: "monkey-icon-domain", inputs: ["fillColor", "size"] }, { type: MonkeyIconDotsMenuComponent, selector: "monkey-icon-dots-menu", inputs: ["fillColor", "size"] }, { type: MonkeyIconDoubleArrowLeftComponent, selector: "monkey-icon-double-arrow-left", inputs: ["fillColor", "size"] }, { type: MonkeyIconDoubleArrowRightComponent, selector: "monkey-icon-double-arrow-right", inputs: ["fillColor", "size"] }, { type: MonkeyIconDownloadComponent, selector: "monkey-icon-download", inputs: ["fillColor", "size"] }, { type: MonkeyIconEditSquareComponent, selector: "monkey-icon-edit-square", inputs: ["fillColor", "size"] }, { type: MonkeyIconEditComponent, selector: "monkey-icon-edit", inputs: ["fillColor", "size"] }, { type: MonkeyIconEmailComponent, selector: "monkey-icon-email", inputs: ["fillColor", "size"] }, { type: MonkeyIconEmptyDocComponent, selector: "monkey-icon-empty-doc", inputs: ["fillColor", "size"] }, { type: MonkeyIconErrorComponent, selector: "monkey-icon-error", inputs: ["fillColor", "size"] }, { type: MonkeyIconEyeClosedComponent, selector: "monkey-icon-eye-closed", inputs: ["fillColor", "size"] }, { type: MonkeyIconEyeOpenComponent, selector: "monkey-icon-eye-open", inputs: ["fillColor", "size"] }, { type: MonkeyIconFilterComponent, selector: "monkey-icon-filter", inputs: ["fillColor", "size"] }, { type: MonkeyIconGridComponent, selector: "monkey-icon-grid", inputs: ["fillColor", "size"] }, { type: MonkeyIconHelpComponent, selector: "monkey-icon-help", inputs: ["fillColor", "size"] }, { type: MonkeyIconHexagonComponent, selector: "monkey-icon-hexagon", inputs: ["fillColor", "size"] }, { type: MonkeyIconHomeComponent, selector: "monkey-icon-home", inputs: ["fillColor", "size"] }, { type: MonkeyIconInfoComponent, selector: "monkey-icon-info", inputs: ["fillColor", "size"] }, { type: MonkeyIconInvoiceComponent, selector: "monkey-icon-invoice", inputs: ["fillColor", "size"] }, { type: MonkeyIconImageComponent, selector: "monkey-icon-image", inputs: ["fillColor", "size"] }, { type: MonkeyIconListComponent, selector: "monkey-icon-list", inputs: ["fillColor", "size"] }, { type: MonkeyIconLocationPinComponent, selector: "monkey-icon-location-pin", inputs: ["fillColor", "size"] }, { type: MonkeyIconLoginComponent, selector: "monkey-icon-login", inputs: ["fillColor", "size"] }, { type: MonkeyIconLogoutComponent, selector: "monkey-icon-logout", inputs: ["fillColor", "size"] }, { type: MonkeyIconMedalComponent, selector: "monkey-icon-medal", inputs: ["fillColor", "size"] }, { type: MonkeyIconMenuComponent, selector: "monkey-icon-menu", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoneyComponent, selector: "monkey-icon-money", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoneyCeduleComponent, selector: "monkey-icon-money-cedule", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoneyHandComponent, selector: "monkey-icon-money-hand", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoneySignComponent, selector: "monkey-icon-money-sign", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoreComponent, selector: "monkey-icon-more", inputs: ["fillColor", "size"] }, { type: MonkeyIconNewCompanyComponent, selector: "monkey-icon-new-company", inputs: ["fillColor", "size"] }, { type: MonkeyIconOfferedComponent, selector: "monkey-icon-offered", inputs: ["fillColor", "size"] }, { type: MonkeyIconPasswordComponent, selector: "monkey-icon-password", inputs: ["fillColor", "size"] }, { type: MonkeyIconPeopleComponent, selector: "monkey-icon-people", inputs: ["fillColor", "size"] }, { type: MonkeyIconPercentComponent, selector: "monkey-icon-percent", inputs: ["fillColor", "size"] }, { type: MonkeyIconPersonDocumentComponent, selector: "monkey-icon-person-document", inputs: ["fillColor", "size"] }, { type: MonkeyIconPersonSadComponent, selector: "monkey-icon-person-sad", inputs: ["fillColor", "size"] }, { type: MonkeyIconPhoneComponent, selector: "monkey-icon-phone", inputs: ["fillColor", "size"] }, { type: MonkeyIconPorkComponent, selector: "monkey-icon-pork", inputs: ["fillColor", "size"] }, { type: MonkeyIconRadioComponent, selector: "monkey-icon-radio", inputs: ["fillColor", "size"] }, { type: MonkeyIconRefreshComponent, selector: "monkey-icon-refresh", inputs: ["fillColor", "size"] }, { type: MonkeyIconRepeatComponent, selector: "monkey-icon-repeat", inputs: ["fillColor", "size"] }, { type: MonkeyIconSearchComponent, selector: "monkey-icon-search", inputs: ["fillColor", "size"] }, { type: MonkeyIconSecondWarningComponent, selector: "monkey-icon-second-warning", inputs: ["fillColor", "size"] }, { type: MonkeyIconSettingsComponent, selector: "monkey-icon-settings", inputs: ["fillColor", "size"] }, { type: MonkeyIconShieldChekmarkComponent, selector: "monkey-icon-shield-chekmark", inputs: ["fillColor", "size"] }, { type: MonkeyIconStarComponent, selector: "monkey-icon-star", inputs: ["fillColor", "size"] }, { type: MonkeyIconTodayComponent, selector: "monkey-icon-today", inputs: ["fillColor", "size"] }, { type: MonkeyIconTrashComponent, selector: "monkey-icon-trash", inputs: ["fillColor", "size"] }, { type: MonkeyIconTrophyComponent, selector: "monkey-icon-trophy", inputs: ["fillColor", "size"] }, { type: MonkeyIconUnfoldMoreComponent, selector: "monkey-icon-unfold-more", inputs: ["fillColor", "size"] }, { type: MonkeyIconUploadComponent, selector: "monkey-icon-upload", inputs: ["fillColor", "size"] }, { type: MonkeyIconUserComponent, selector: "monkey-icon-user", inputs: ["fillColor", "size"] }, { type: MonkeyIconWaitingComponent, selector: "monkey-icon-waiting", inputs: ["fillColor", "size"] }, { type: MonkeyIconWalletComponent, selector: "monkey-icon-wallet", inputs: ["fillColor", "size"] }, { type: MonkeyIconWarningComponent, selector: "monkey-icon-warning", inputs: ["fillColor", "size"] }], directives: [{ type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
2723
+ `, isInline: true, components: [{ type: MonkeyIconAddPlusComponent, selector: "monkey-icon-add-plus", inputs: ["fillColor", "size"] }, { type: MonkeyArrowsComponent, selector: "monkey-icon-arrows", inputs: ["fillColor", "size"] }, { type: MonkeyIconArrowDownComponent, selector: "monkey-icon-arrow-down", inputs: ["fillColor", "size"] }, { type: MonkeyIconArrowLeftComponent, selector: "monkey-icon-arrow-left", inputs: ["fillColor", "size"] }, { type: MonkeyIconArrowRightComponent, selector: "monkey-icon-arrow-right", inputs: ["fillColor", "size"] }, { type: MonkeyIconArrowLineRightComponent, selector: "monkey-icon-arrow-line-right", inputs: ["fillColor", "size"] }, { type: MonkeyIconArrowUpComponent, selector: "monkey-icon-arrow-up", inputs: ["fillColor", "size"] }, { type: MonkeyIconAuctionComponent, selector: "monkey-icon-auction", inputs: ["fillColor", "size"] }, { type: MonkeyIconBankComponent, selector: "monkey-icon-bank", inputs: ["fillColor", "size"] }, { type: MonkeyBankAccountComponent, selector: "monkey-icon-bank-account", inputs: ["fillColor", "size"] }, { type: MonkeyIconBankNoteSearchComponent, selector: "monkey-icon-banknote-search", inputs: ["fillColor", "size"] }, { type: MonkeyIconBellComponent, selector: "monkey-icon-bell", inputs: ["fillColor", "size"] }, { type: MonkeyIconBookComponent, selector: "monkey-icon-book", inputs: ["fillColor", "size"] }, { type: MonkeyIconBoxComponent, selector: "monkey-icon-box", inputs: ["fillColor", "size"] }, { type: MonkeyIconBuildPersonComponent, selector: "monkey-icon-build-person", inputs: ["fillColor", "size"] }, { type: MonkeyIconCalendarComponent, selector: "monkey-icon-calendar", inputs: ["fillColor", "size"] }, { type: MonkeyIconCameraComponent, selector: "monkey-icon-camera", inputs: ["fillColor", "size"] }, { type: MonkeyIconCardComponent, selector: "monkey-icon-card", inputs: ["fillColor", "size"] }, { type: MonkeyIconCardMachineComponent, selector: "monkey-icon-card-machine", inputs: ["fillColor", "size"] }, { type: MonkeyIconCashBanknoteInvoiceComponent, selector: "monkey-icon-cash-banknote-invoice", inputs: ["fillColor", "size"] }, { type: MonkeyIconChatComponent, selector: "monkey-icon-chat", inputs: ["fillColor", "size"] }, { type: MonkeyIconCheckCircleOutComponent, selector: "monkey-icon-check-circle-out", inputs: ["fillColor", "size"] }, { type: MonkeyIconCheckCircleComponent, selector: "monkey-icon-check-circle", inputs: ["fillColor", "size"] }, { type: MonkeyIconCheckGreyComponent, selector: "monkey-icon-check-grey", inputs: ["fillColor", "size"] }, { type: MonkeyIconCheckWhiteComponent, selector: "monkey-icon-check-white", inputs: ["fillColor", "size"] }, { type: MonkeyIconCheckComponent, selector: "monkey-icon-check", inputs: ["fillColor", "size"] }, { type: MonkeyIconClipboardComponent, selector: "monkey-icon-clipboard", inputs: ["fillColor", "size"] }, { type: MonkeyIconClockComponent, selector: "monkey-icon-clock", inputs: ["fillColor", "size"] }, { type: MonkeyIconCloseComponent, selector: "monkey-icon-close", inputs: ["fillColor", "size"] }, { type: MonkeyIconCNPJComponent, selector: "monkey-icon-cnpj", inputs: ["fillColor", "size"] }, { type: MonkeyIconCodepenComponent, selector: "monkey-icon-codepen", inputs: ["fillColor", "size"] }, { type: MonkeyIconCompanyNameComponent, selector: "monkey-icon-company-name", inputs: ["fillColor", "size"] }, { type: MonkeyIconContractComponent, selector: "monkey-icon-contract", inputs: ["fillColor", "size"] }, { type: MonkeyIconContractPenComponent, selector: "monkey-icon-contract-pen", inputs: ["fillColor", "size"] }, { type: MonkeyIconDeleteComponent, selector: "monkey-icon-delete", inputs: ["fillColor", "size"] }, { type: MonkeyIconDocumentComponent, selector: "monkey-icon-document", inputs: ["fillColor", "size"] }, { type: MonkeyIconDollarSignComponent, selector: "monkey-icon-dollar-sign", inputs: ["fillColor", "size"] }, { type: MonkeyIconDollarSignCircleComponent, selector: "monkey-icon-dollar-sign-circle", inputs: ["fillColor", "size"] }, { type: MonkeyIconDomainComponent, selector: "monkey-icon-domain", inputs: ["fillColor", "size"] }, { type: MonkeyIconDotsMenuComponent, selector: "monkey-icon-dots-menu", inputs: ["fillColor", "size"] }, { type: MonkeyIconDoubleArrowLeftComponent, selector: "monkey-icon-double-arrow-left", inputs: ["fillColor", "size"] }, { type: MonkeyIconDoubleArrowRightComponent, selector: "monkey-icon-double-arrow-right", inputs: ["fillColor", "size"] }, { type: MonkeyIconDownloadComponent, selector: "monkey-icon-download", inputs: ["fillColor", "size"] }, { type: MonkeyIconEditSquareComponent, selector: "monkey-icon-edit-square", inputs: ["fillColor", "size"] }, { type: MonkeyIconEditComponent, selector: "monkey-icon-edit", inputs: ["fillColor", "size"] }, { type: MonkeyIconEmailComponent, selector: "monkey-icon-email", inputs: ["fillColor", "size"] }, { type: MonkeyIconEmptyDocComponent, selector: "monkey-icon-empty-doc", inputs: ["fillColor", "size"] }, { type: MonkeyIconErrorComponent, selector: "monkey-icon-error", inputs: ["fillColor", "size"] }, { type: MonkeyIconEyeClosedComponent, selector: "monkey-icon-eye-closed", inputs: ["fillColor", "size"] }, { type: MonkeyIconEyeOpenComponent, selector: "monkey-icon-eye-open", inputs: ["fillColor", "size"] }, { type: MonkeyIconFilterComponent, selector: "monkey-icon-filter", inputs: ["fillColor", "size"] }, { type: MonkeyIconGridComponent, selector: "monkey-icon-grid", inputs: ["fillColor", "size"] }, { type: MonkeyIconHandsClapComponent, selector: "monkey-icon-hands-clap", inputs: ["fillColor", "size"] }, { type: MonkeyIconHelpComponent, selector: "monkey-icon-help", inputs: ["fillColor", "size"] }, { type: MonkeyIconHexagonComponent, selector: "monkey-icon-hexagon", inputs: ["fillColor", "size"] }, { type: MonkeyIconHomeComponent, selector: "monkey-icon-home", inputs: ["fillColor", "size"] }, { type: MonkeyIconInfoComponent, selector: "monkey-icon-info", inputs: ["fillColor", "size"] }, { type: MonkeyIconInvoiceComponent, selector: "monkey-icon-invoice", inputs: ["fillColor", "size"] }, { type: MonkeyIconImageComponent, selector: "monkey-icon-image", inputs: ["fillColor", "size"] }, { type: MonkeyIconListComponent, selector: "monkey-icon-list", inputs: ["fillColor", "size"] }, { type: MonkeyIconLocationPinComponent, selector: "monkey-icon-location-pin", inputs: ["fillColor", "size"] }, { type: MonkeyIconLoginComponent, selector: "monkey-icon-login", inputs: ["fillColor", "size"] }, { type: MonkeyIconLogoutComponent, selector: "monkey-icon-logout", inputs: ["fillColor", "size"] }, { type: MonkeyIconMedalComponent, selector: "monkey-icon-medal", inputs: ["fillColor", "size"] }, { type: MonkeyIconMenuComponent, selector: "monkey-icon-menu", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoneyComponent, selector: "monkey-icon-money", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoneyCeduleComponent, selector: "monkey-icon-money-cedule", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoneyHandComponent, selector: "monkey-icon-money-hand", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoneySignComponent, selector: "monkey-icon-money-sign", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoreCircleComponent, selector: "monkey-icon-more-circle", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoreComponent, selector: "monkey-icon-more", inputs: ["fillColor", "size"] }, { type: MonkeyIconNewCompanyComponent, selector: "monkey-icon-new-company", inputs: ["fillColor", "size"] }, { type: MonkeyIconOfferedComponent, selector: "monkey-icon-offered", inputs: ["fillColor", "size"] }, { type: MonkeyIconPasswordComponent, selector: "monkey-icon-password", inputs: ["fillColor", "size"] }, { type: MonkeyIconPinNavigationComponent, selector: "monkey-icon-pin-navigation", inputs: ["fillColor", "size"] }, { type: MonkeyIconPeopleComponent, selector: "monkey-icon-people", inputs: ["fillColor", "size"] }, { type: MonkeyIconPercentComponent, selector: "monkey-icon-percent", inputs: ["fillColor", "size"] }, { type: MonkeyIconPersonDocumentComponent, selector: "monkey-icon-person-document", inputs: ["fillColor", "size"] }, { type: MonkeyIconPersonSadComponent, selector: "monkey-icon-person-sad", inputs: ["fillColor", "size"] }, { type: MonkeyIconPhoneComponent, selector: "monkey-icon-phone", inputs: ["fillColor", "size"] }, { type: MonkeyIconPhoneCallComponent, selector: "monkey-icon-phone-call", inputs: ["fillColor", "size"] }, { type: MonkeyIconPorkComponent, selector: "monkey-icon-pork", inputs: ["fillColor", "size"] }, { type: MonkeyIconRadioComponent, selector: "monkey-icon-radio", inputs: ["fillColor", "size"] }, { type: MonkeyIconRefreshComponent, selector: "monkey-icon-refresh", inputs: ["fillColor", "size"] }, { type: MonkeyIconRepeatComponent, selector: "monkey-icon-repeat", inputs: ["fillColor", "size"] }, { type: MonkeyIconSearchComponent, selector: "monkey-icon-search", inputs: ["fillColor", "size"] }, { type: MonkeyIconSecondWarningComponent, selector: "monkey-icon-second-warning", inputs: ["fillColor", "size"] }, { type: MonkeyIconSettingsComponent, selector: "monkey-icon-settings", inputs: ["fillColor", "size"] }, { type: MonkeyIconShieldChekmarkComponent, selector: "monkey-icon-shield-chekmark", inputs: ["fillColor", "size"] }, { type: MonkeyIconStarComponent, selector: "monkey-icon-star", inputs: ["fillColor", "size"] }, { type: MonkeyIconTodayComponent, selector: "monkey-icon-today", inputs: ["fillColor", "size"] }, { type: MonkeyIconTrashComponent, selector: "monkey-icon-trash", inputs: ["fillColor", "size"] }, { type: MonkeyIconTrophyComponent, selector: "monkey-icon-trophy", inputs: ["fillColor", "size"] }, { type: MonkeyIconUnfoldMoreComponent, selector: "monkey-icon-unfold-more", inputs: ["fillColor", "size"] }, { type: MonkeyIconUploadComponent, selector: "monkey-icon-upload", inputs: ["fillColor", "size"] }, { type: MonkeyIconUserComponent, selector: "monkey-icon-user", inputs: ["fillColor", "size"] }, { type: MonkeyIconUserGroupComponent, selector: "monkey-icon-user-group", inputs: ["fillColor", "size"] }, { type: MonkeyIconWaitingComponent, selector: "monkey-icon-waiting", inputs: ["fillColor", "size"] }, { type: MonkeyIconWalletComponent, selector: "monkey-icon-wallet", inputs: ["fillColor", "size"] }, { type: MonkeyIconWarningComponent, selector: "monkey-icon-warning", inputs: ["fillColor", "size"] }], directives: [{ type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
2591
2724
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconComponent, decorators: [{
2592
2725
  type: Component,
2593
2726
  args: [{
2594
2727
  selector: 'monkey-icon',
2595
2728
  template: `
2729
+ <monkey-icon-add-plus
2730
+ [fillColor]="_fillColor"
2731
+ [id]="_id"
2732
+ [size]="_size"
2733
+ *ngIf="_icon === 'add-plus'"
2734
+ ></monkey-icon-add-plus>
2596
2735
  <monkey-icon-arrows
2597
2736
  [fillColor]="_fillColor"
2598
2737
  [id]="_id"
@@ -2701,6 +2840,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
2701
2840
  [size]="_size"
2702
2841
  *ngIf="_icon === 'card-machine'"
2703
2842
  ></monkey-icon-card-machine>
2843
+ <monkey-icon-cash-banknote-invoice
2844
+ [fillColor]="_fillColor"
2845
+ [id]="_id"
2846
+ [size]="_size"
2847
+ *ngIf="_icon === 'cash-banknote-invoice'"
2848
+ ></monkey-icon-cash-banknote-invoice>
2704
2849
  <monkey-icon-chat
2705
2850
  [fillColor]="_fillColor"
2706
2851
  [id]="_id"
@@ -2893,6 +3038,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
2893
3038
  [size]="_size"
2894
3039
  *ngIf="_icon === 'grid'"
2895
3040
  ></monkey-icon-grid>
3041
+ <monkey-icon-hands-clap
3042
+ [fillColor]="_fillColor"
3043
+ [id]="_id"
3044
+ [size]="_size"
3045
+ *ngIf="_icon === 'hands-clap'"
3046
+ ></monkey-icon-hands-clap>
2896
3047
  <monkey-icon-help
2897
3048
  [fillColor]="_fillColor"
2898
3049
  [id]="_id"
@@ -2989,6 +3140,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
2989
3140
  [size]="_size"
2990
3141
  *ngIf="_icon === 'money-sign'"
2991
3142
  ></monkey-icon-money-sign>
3143
+ <monkey-icon-more-circle
3144
+ [fillColor]="_fillColor"
3145
+ [id]="_id"
3146
+ [size]="_size"
3147
+ *ngIf="_icon === 'more-circle'"
3148
+ ></monkey-icon-more-circle>
2992
3149
  <monkey-icon-more
2993
3150
  [fillColor]="_fillColor"
2994
3151
  [id]="_id"
@@ -3013,6 +3170,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
3013
3170
  [size]="_size"
3014
3171
  *ngIf="_icon === 'password'"
3015
3172
  ></monkey-icon-password>
3173
+ <monkey-icon-pin-navigation
3174
+ [fillColor]="_fillColor"
3175
+ [id]="_id"
3176
+ [size]="_size"
3177
+ *ngIf="_icon === 'pin-navigation'"
3178
+ ></monkey-icon-pin-navigation>
3016
3179
  <monkey-icon-people
3017
3180
  [fillColor]="_fillColor"
3018
3181
  [id]="_id"
@@ -3043,6 +3206,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
3043
3206
  [size]="_size"
3044
3207
  *ngIf="_icon === 'phone'"
3045
3208
  ></monkey-icon-phone>
3209
+ <monkey-icon-phone-call
3210
+ [fillColor]="_fillColor"
3211
+ [id]="_id"
3212
+ [size]="_size"
3213
+ *ngIf="_icon === 'phone-call'"
3214
+ ></monkey-icon-phone-call>
3046
3215
  <monkey-icon-pork
3047
3216
  [fillColor]="_fillColor"
3048
3217
  [id]="_id"
@@ -3133,6 +3302,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
3133
3302
  [size]="_size"
3134
3303
  *ngIf="_icon === 'user'"
3135
3304
  ></monkey-icon-user>
3305
+ <monkey-icon-user-group
3306
+ [fillColor]="_fillColor"
3307
+ [id]="_id"
3308
+ [size]="_size"
3309
+ *ngIf="_icon === 'user-group'"
3310
+ ></monkey-icon-user-group>
3136
3311
  <monkey-icon-waiting
3137
3312
  [fillColor]="_fillColor"
3138
3313
  [id]="_id"
@@ -3487,6 +3662,7 @@ class MonkeyIconModule {
3487
3662
  MonkeyIconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3488
3663
  MonkeyIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconModule, declarations: [MonkeyArrowsComponent,
3489
3664
  MonkeyBankAccountComponent,
3665
+ MonkeyIconAddPlusComponent,
3490
3666
  MonkeyIconArrowDownComponent,
3491
3667
  MonkeyIconArrowLeftComponent,
3492
3668
  MonkeyIconArrowLineRightComponent,
@@ -3503,6 +3679,7 @@ MonkeyIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", versio
3503
3679
  MonkeyIconCameraComponent,
3504
3680
  MonkeyIconCardComponent,
3505
3681
  MonkeyIconCardMachineComponent,
3682
+ MonkeyIconCashBanknoteInvoiceComponent,
3506
3683
  MonkeyIconChatComponent,
3507
3684
  MonkeyIconCheckCircleComponent,
3508
3685
  MonkeyIconCheckCircleOutComponent,
@@ -3536,6 +3713,7 @@ MonkeyIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", versio
3536
3713
  MonkeyIconEyeOpenComponent,
3537
3714
  MonkeyIconFilterComponent,
3538
3715
  MonkeyIconGridComponent,
3716
+ MonkeyIconHandsClapComponent,
3539
3717
  MonkeyIconHelpComponent,
3540
3718
  MonkeyIconHexagonComponent,
3541
3719
  MonkeyIconHomeComponent,
@@ -3552,6 +3730,7 @@ MonkeyIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", versio
3552
3730
  MonkeyIconMoneyComponent,
3553
3731
  MonkeyIconMoneyHandComponent,
3554
3732
  MonkeyIconMoneySignComponent,
3733
+ MonkeyIconMoreCircleComponent,
3555
3734
  MonkeyIconMoreComponent,
3556
3735
  MonkeyIconNewCompanyComponent,
3557
3736
  MonkeyIconOfferedComponent,
@@ -3560,7 +3739,9 @@ MonkeyIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", versio
3560
3739
  MonkeyIconPercentComponent,
3561
3740
  MonkeyIconPersonDocumentComponent,
3562
3741
  MonkeyIconPersonSadComponent,
3742
+ MonkeyIconPhoneCallComponent,
3563
3743
  MonkeyIconPhoneComponent,
3744
+ MonkeyIconPinNavigationComponent,
3564
3745
  MonkeyIconPorkComponent,
3565
3746
  MonkeyIconRadioComponent,
3566
3747
  MonkeyIconRefreshComponent,
@@ -3576,6 +3757,7 @@ MonkeyIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", versio
3576
3757
  MonkeyIconUnfoldMoreComponent,
3577
3758
  MonkeyIconUploadComponent,
3578
3759
  MonkeyIconUserComponent,
3760
+ MonkeyIconUserGroupComponent,
3579
3761
  MonkeyIconWaitingComponent,
3580
3762
  MonkeyIconWalletComponent,
3581
3763
  MonkeyIconWarningComponent], imports: [CommonModule], exports: [MonkeyIconComponent] });
@@ -3586,6 +3768,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
3586
3768
  declarations: [
3587
3769
  MonkeyArrowsComponent,
3588
3770
  MonkeyBankAccountComponent,
3771
+ MonkeyIconAddPlusComponent,
3589
3772
  MonkeyIconArrowDownComponent,
3590
3773
  MonkeyIconArrowLeftComponent,
3591
3774
  MonkeyIconArrowLineRightComponent,
@@ -3602,6 +3785,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
3602
3785
  MonkeyIconCameraComponent,
3603
3786
  MonkeyIconCardComponent,
3604
3787
  MonkeyIconCardMachineComponent,
3788
+ MonkeyIconCashBanknoteInvoiceComponent,
3605
3789
  MonkeyIconChatComponent,
3606
3790
  MonkeyIconCheckCircleComponent,
3607
3791
  MonkeyIconCheckCircleOutComponent,
@@ -3635,6 +3819,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
3635
3819
  MonkeyIconEyeOpenComponent,
3636
3820
  MonkeyIconFilterComponent,
3637
3821
  MonkeyIconGridComponent,
3822
+ MonkeyIconHandsClapComponent,
3638
3823
  MonkeyIconHelpComponent,
3639
3824
  MonkeyIconHexagonComponent,
3640
3825
  MonkeyIconHomeComponent,
@@ -3651,6 +3836,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
3651
3836
  MonkeyIconMoneyComponent,
3652
3837
  MonkeyIconMoneyHandComponent,
3653
3838
  MonkeyIconMoneySignComponent,
3839
+ MonkeyIconMoreCircleComponent,
3654
3840
  MonkeyIconMoreComponent,
3655
3841
  MonkeyIconNewCompanyComponent,
3656
3842
  MonkeyIconOfferedComponent,
@@ -3659,7 +3845,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
3659
3845
  MonkeyIconPercentComponent,
3660
3846
  MonkeyIconPersonDocumentComponent,
3661
3847
  MonkeyIconPersonSadComponent,
3848
+ MonkeyIconPhoneCallComponent,
3662
3849
  MonkeyIconPhoneComponent,
3850
+ MonkeyIconPinNavigationComponent,
3663
3851
  MonkeyIconPorkComponent,
3664
3852
  MonkeyIconRadioComponent,
3665
3853
  MonkeyIconRefreshComponent,
@@ -3675,6 +3863,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
3675
3863
  MonkeyIconUnfoldMoreComponent,
3676
3864
  MonkeyIconUploadComponent,
3677
3865
  MonkeyIconUserComponent,
3866
+ MonkeyIconUserGroupComponent,
3678
3867
  MonkeyIconWaitingComponent,
3679
3868
  MonkeyIconWalletComponent,
3680
3869
  MonkeyIconWarningComponent
@@ -8862,5 +9051,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
8862
9051
  * Generated bundle index. Do not edit.
8863
9052
  */
8864
9053
 
8865
- export { MonkeyArrowsComponent, MonkeyBadgeComponent, MonkeyBadgeModule, MonkeyBankAccountComponent, MonkeyButtonAvatarComponent, MonkeyButtonComponent, MonkeyButtonDropdownComponent, MonkeyButtonModule, MonkeyCheckboxComponent, MonkeyCheckboxModule, MonkeyDateRangePickerComponent, MonkeyDateRangePickerModule, MonkeyExpansionComponent, MonkeyExpansionModule, MonkeyFileUploadComponent, MonkeyFileUploadModule, MonkeyIconArrowLeftComponent, MonkeyIconArrowLineRightComponent, MonkeyIconArrowRightComponent, MonkeyIconArrowUpComponent, MonkeyIconAuctionComponent, MonkeyIconBankComponent, MonkeyIconBankNoteSearchComponent, MonkeyIconBellComponent, MonkeyIconBookComponent, MonkeyIconBoxComponent, MonkeyIconBuildPersonComponent, MonkeyIconCNPJComponent, MonkeyIconCalendarComponent, MonkeyIconCameraComponent, MonkeyIconCardComponent, MonkeyIconCardMachineComponent, MonkeyIconChatComponent, MonkeyIconCheckCircleComponent, MonkeyIconCheckCircleOutComponent, MonkeyIconCheckComponent, MonkeyIconCheckGreyComponent, MonkeyIconCheckWhiteComponent, MonkeyIconClipboardComponent, MonkeyIconClockComponent, MonkeyIconCloseComponent, MonkeyIconCodepenComponent, MonkeyIconCompanyNameComponent, MonkeyIconComponent, MonkeyIconContractComponent, MonkeyIconContractPenComponent, MonkeyIconDeleteComponent, MonkeyIconDocumentComponent, MonkeyIconDollarSignCircleComponent, MonkeyIconDollarSignComponent, MonkeyIconDomainComponent, MonkeyIconDoubleArrowLeftComponent, MonkeyIconDoubleArrowRightComponent, MonkeyIconDownloadComponent, MonkeyIconEditComponent, MonkeyIconEditSquareComponent, MonkeyIconEmailComponent, MonkeyIconEmptyDocComponent, MonkeyIconErrorComponent, MonkeyIconEyeClosedComponent, MonkeyIconEyeOpenComponent, MonkeyIconFilterComponent, MonkeyIconGridComponent, MonkeyIconHelpComponent, MonkeyIconHexagonComponent, MonkeyIconHomeComponent, MonkeyIconImageComponent, MonkeyIconInfoComponent, MonkeyIconInvoiceComponent, MonkeyIconListComponent, MonkeyIconLocationPinComponent, MonkeyIconLoginComponent, MonkeyIconLogoutComponent, MonkeyIconMedalComponent, MonkeyIconMenuComponent, MonkeyIconModule, MonkeyIconMoneyCeduleComponent, MonkeyIconMoneyComponent, MonkeyIconMoneyHandComponent, MonkeyIconMoneySignComponent, MonkeyIconMoreComponent, MonkeyIconNewCompanyComponent, MonkeyIconOfferedComponent, MonkeyIconPasswordComponent, MonkeyIconPeopleComponent, MonkeyIconPercentComponent, MonkeyIconPersonDocumentComponent, MonkeyIconPersonSadComponent, MonkeyIconPhoneComponent, MonkeyIconPorkComponent, MonkeyIconRadioComponent, MonkeyIconRefreshComponent, MonkeyIconRepeatComponent, MonkeyIconSearchComponent, MonkeyIconSecondWarningComponent, MonkeyIconSettingsComponent, MonkeyIconShieldChekmarkComponent, MonkeyIconStarComponent, MonkeyIconTodayComponent, MonkeyIconTrashComponent, MonkeyIconTrophyComponent, MonkeyIconUnfoldMoreComponent, MonkeyIconUploadComponent, MonkeyIconUserComponent, MonkeyIconWaitingComponent, MonkeyIconWalletComponent, MonkeyIconWarningComponent, MonkeyImageCropComponent, MonkeyImageCropModule, MonkeyInputComponent, MonkeyInputFilterComponent, MonkeyInputModule, MonkeyInputPhoneComponent, MonkeyInputPhoneModule, MonkeyModalComponent, MonkeyModalModule, MonkeyOptionComponent, MonkeyOptionModule, MonkeyRadioButtonComponent, MonkeyRadioButtonModule, MonkeySelectComponent, MonkeySelectFilterComponent, MonkeySelectModule, MonkeySelectMultipleComponent, MonkeySelectSearchComponent, MonkeyStepperComponent, MonkeyStepperModule, MonkeyStyleGuideModalFixedService, MonkeyStyleGuideModalService, MonkeyStyleGuideModule, MonkeyStyleGuideSettingsService, MonkeyStyleGuideSnackbarService, MonkeyTabComponent, MonkeyTabModule, MonkeyTableColumnComponent, MonkeyTableComponent, MonkeyTableModule, MonkeyToggleComponent, MonkeyToggleModule, MonkeyUtils, MonkeyWizardComponent, MonkeyWizardModule, PhoneNumberValidDirective };
9054
+ export { MonkeyArrowsComponent, MonkeyBadgeComponent, MonkeyBadgeModule, MonkeyBankAccountComponent, MonkeyButtonAvatarComponent, MonkeyButtonComponent, MonkeyButtonDropdownComponent, MonkeyButtonModule, MonkeyCheckboxComponent, MonkeyCheckboxModule, MonkeyDateRangePickerComponent, MonkeyDateRangePickerModule, MonkeyExpansionComponent, MonkeyExpansionModule, MonkeyFileUploadComponent, MonkeyFileUploadModule, MonkeyIconAddPlusComponent, MonkeyIconArrowLeftComponent, MonkeyIconArrowLineRightComponent, MonkeyIconArrowRightComponent, MonkeyIconArrowUpComponent, MonkeyIconAuctionComponent, MonkeyIconBankComponent, MonkeyIconBankNoteSearchComponent, MonkeyIconBellComponent, MonkeyIconBookComponent, MonkeyIconBoxComponent, MonkeyIconBuildPersonComponent, MonkeyIconCNPJComponent, MonkeyIconCalendarComponent, MonkeyIconCameraComponent, MonkeyIconCardComponent, MonkeyIconCardMachineComponent, MonkeyIconCashBanknoteInvoiceComponent, MonkeyIconChatComponent, MonkeyIconCheckCircleComponent, MonkeyIconCheckCircleOutComponent, MonkeyIconCheckComponent, MonkeyIconCheckGreyComponent, MonkeyIconCheckWhiteComponent, MonkeyIconClipboardComponent, MonkeyIconClockComponent, MonkeyIconCloseComponent, MonkeyIconCodepenComponent, MonkeyIconCompanyNameComponent, MonkeyIconComponent, MonkeyIconContractComponent, MonkeyIconContractPenComponent, MonkeyIconDeleteComponent, MonkeyIconDocumentComponent, MonkeyIconDollarSignCircleComponent, MonkeyIconDollarSignComponent, MonkeyIconDomainComponent, MonkeyIconDoubleArrowLeftComponent, MonkeyIconDoubleArrowRightComponent, MonkeyIconDownloadComponent, MonkeyIconEditComponent, MonkeyIconEditSquareComponent, MonkeyIconEmailComponent, MonkeyIconEmptyDocComponent, MonkeyIconErrorComponent, MonkeyIconEyeClosedComponent, MonkeyIconEyeOpenComponent, MonkeyIconFilterComponent, MonkeyIconGridComponent, MonkeyIconHelpComponent, MonkeyIconHexagonComponent, MonkeyIconHomeComponent, MonkeyIconImageComponent, MonkeyIconInfoComponent, MonkeyIconInvoiceComponent, MonkeyIconListComponent, MonkeyIconLocationPinComponent, MonkeyIconLoginComponent, MonkeyIconLogoutComponent, MonkeyIconMedalComponent, MonkeyIconMenuComponent, MonkeyIconModule, MonkeyIconMoneyCeduleComponent, MonkeyIconMoneyComponent, MonkeyIconMoneyHandComponent, MonkeyIconMoneySignComponent, MonkeyIconMoreComponent, MonkeyIconNewCompanyComponent, MonkeyIconOfferedComponent, MonkeyIconPasswordComponent, MonkeyIconPeopleComponent, MonkeyIconPercentComponent, MonkeyIconPersonDocumentComponent, MonkeyIconPersonSadComponent, MonkeyIconPhoneComponent, MonkeyIconPorkComponent, MonkeyIconRadioComponent, MonkeyIconRefreshComponent, MonkeyIconRepeatComponent, MonkeyIconSearchComponent, MonkeyIconSecondWarningComponent, MonkeyIconSettingsComponent, MonkeyIconShieldChekmarkComponent, MonkeyIconStarComponent, MonkeyIconTodayComponent, MonkeyIconTrashComponent, MonkeyIconTrophyComponent, MonkeyIconUnfoldMoreComponent, MonkeyIconUploadComponent, MonkeyIconUserComponent, MonkeyIconWaitingComponent, MonkeyIconWalletComponent, MonkeyIconWarningComponent, MonkeyImageCropComponent, MonkeyImageCropModule, MonkeyInputComponent, MonkeyInputFilterComponent, MonkeyInputModule, MonkeyInputPhoneComponent, MonkeyInputPhoneModule, MonkeyModalComponent, MonkeyModalModule, MonkeyOptionComponent, MonkeyOptionModule, MonkeyRadioButtonComponent, MonkeyRadioButtonModule, MonkeySelectComponent, MonkeySelectFilterComponent, MonkeySelectModule, MonkeySelectMultipleComponent, MonkeySelectSearchComponent, MonkeyStepperComponent, MonkeyStepperModule, MonkeyStyleGuideModalFixedService, MonkeyStyleGuideModalService, MonkeyStyleGuideModule, MonkeyStyleGuideSettingsService, MonkeyStyleGuideSnackbarService, MonkeyTabComponent, MonkeyTabModule, MonkeyTableColumnComponent, MonkeyTableComponent, MonkeyTableModule, MonkeyToggleComponent, MonkeyToggleModule, MonkeyUtils, MonkeyWizardComponent, MonkeyWizardModule, PhoneNumberValidDirective };
8866
9055
  //# sourceMappingURL=monkey-style-guide.mjs.map