@simplybusiness/icons 4.3.1 → 4.5.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 (85) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/cjs/calendar.js +20 -0
  3. package/dist/cjs/calendar.js.map +1 -0
  4. package/dist/cjs/circleInfo.js +1 -1
  5. package/dist/cjs/circleInfo.js.map +1 -1
  6. package/dist/cjs/circleQuestion.js +1 -1
  7. package/dist/cjs/circleQuestion.js.map +1 -1
  8. package/dist/cjs/creditCard.js +20 -0
  9. package/dist/cjs/creditCard.js.map +1 -0
  10. package/dist/cjs/creditCardSync.js +20 -0
  11. package/dist/cjs/creditCardSync.js.map +1 -0
  12. package/dist/cjs/fileArrowDown.js +20 -0
  13. package/dist/cjs/fileArrowDown.js.map +1 -0
  14. package/dist/cjs/fileCertificate.js +20 -0
  15. package/dist/cjs/fileCertificate.js.map +1 -0
  16. package/dist/cjs/fileSignature.js +20 -0
  17. package/dist/cjs/fileSignature.js.map +1 -0
  18. package/dist/cjs/handshake.js +20 -0
  19. package/dist/cjs/handshake.js.map +1 -0
  20. package/dist/cjs/index.js +11 -0
  21. package/dist/cjs/index.js.map +1 -1
  22. package/dist/cjs/lockKeyhole.js +20 -0
  23. package/dist/cjs/lockKeyhole.js.map +1 -0
  24. package/dist/cjs/newspaper.js +20 -0
  25. package/dist/cjs/newspaper.js.map +1 -0
  26. package/dist/cjs/rocketLaunch.js +20 -0
  27. package/dist/cjs/rocketLaunch.js.map +1 -0
  28. package/dist/cjs/shieldCheck.js +20 -0
  29. package/dist/cjs/shieldCheck.js.map +1 -0
  30. package/dist/cjs/tsconfig.tsbuildinfo +1 -0
  31. package/dist/esm/calendar.js +11 -0
  32. package/dist/esm/calendar.js.map +1 -0
  33. package/dist/esm/circleInfo.js +1 -1
  34. package/dist/esm/circleInfo.js.map +1 -1
  35. package/dist/esm/circleQuestion.js +1 -1
  36. package/dist/esm/circleQuestion.js.map +1 -1
  37. package/dist/esm/creditCard.js +11 -0
  38. package/dist/esm/creditCard.js.map +1 -0
  39. package/dist/esm/creditCardSync.js +11 -0
  40. package/dist/esm/creditCardSync.js.map +1 -0
  41. package/dist/esm/fileArrowDown.js +11 -0
  42. package/dist/esm/fileArrowDown.js.map +1 -0
  43. package/dist/esm/fileCertificate.js +11 -0
  44. package/dist/esm/fileCertificate.js.map +1 -0
  45. package/dist/esm/fileSignature.js +11 -0
  46. package/dist/esm/fileSignature.js.map +1 -0
  47. package/dist/esm/handshake.js +11 -0
  48. package/dist/esm/handshake.js.map +1 -0
  49. package/dist/esm/index.js +11 -0
  50. package/dist/esm/index.js.map +1 -1
  51. package/dist/esm/lockKeyhole.js +11 -0
  52. package/dist/esm/lockKeyhole.js.map +1 -0
  53. package/dist/esm/newspaper.js +11 -0
  54. package/dist/esm/newspaper.js.map +1 -0
  55. package/dist/esm/rocketLaunch.js +11 -0
  56. package/dist/esm/rocketLaunch.js.map +1 -0
  57. package/dist/esm/shieldCheck.js +11 -0
  58. package/dist/esm/shieldCheck.js.map +1 -0
  59. package/dist/types/calendar.d.ts +3 -0
  60. package/dist/types/creditCard.d.ts +3 -0
  61. package/dist/types/creditCardSync.d.ts +3 -0
  62. package/dist/types/fileArrowDown.d.ts +3 -0
  63. package/dist/types/fileCertificate.d.ts +3 -0
  64. package/dist/types/fileSignature.d.ts +3 -0
  65. package/dist/types/handshake.d.ts +3 -0
  66. package/dist/types/index.d.ts +12 -1
  67. package/dist/types/lockKeyhole.d.ts +3 -0
  68. package/dist/types/newspaper.d.ts +3 -0
  69. package/dist/types/rocketLaunch.d.ts +3 -0
  70. package/dist/types/shieldCheck.d.ts +3 -0
  71. package/package.json +1 -1
  72. package/src/calendar.tsx +13 -0
  73. package/src/circleInfo.tsx +1 -1
  74. package/src/circleQuestion.tsx +1 -1
  75. package/src/creditCard.tsx +13 -0
  76. package/src/creditCardSync.tsx +13 -0
  77. package/src/fileArrowDown.tsx +13 -0
  78. package/src/fileCertificate.tsx +13 -0
  79. package/src/fileSignature.tsx +13 -0
  80. package/src/handshake.tsx +13 -0
  81. package/src/index.ts +22 -0
  82. package/src/lockKeyhole.tsx +13 -0
  83. package/src/newspaper.tsx +13 -0
  84. package/src/rocketLaunch.tsx +13 -0
  85. package/src/shieldCheck.tsx +13 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 4.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 886bc6d: Add `creditCardSync` icon
8
+
9
+ ## 4.4.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 455d898: Add new icons to support account-fe Mobius upgrade; add `title` prop to `<Icon>`; default to `iconName` for a11y
14
+
3
15
  ## 4.3.1
4
16
 
5
17
  ### Patch Changes
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "calendar", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return calendar;
9
+ }
10
+ });
11
+ const calendar = {
12
+ iconName: "calendar",
13
+ width: 448,
14
+ height: 512,
15
+ svgPathData: "M152 24V0H104V24 64H0v80 48V464v48H48 400h48V464 192 144 64H344V24 0H296V24 64H152V24zM48 192H400V464H48V192z",
16
+ iconType: "fill",
17
+ fill: "none"
18
+ };
19
+
20
+ //# sourceMappingURL=calendar.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/calendar.tsx"],"sourcesContent":["import { IconDefinition } from \"./types\";\n\nconst calendar: IconDefinition = {\n iconName: \"calendar\",\n width: 448,\n height: 512,\n svgPathData:\n \"M152 24V0H104V24 64H0v80 48V464v48H48 400h48V464 192 144 64H344V24 0H296V24 64H152V24zM48 192H400V464H48V192z\",\n iconType: \"fill\",\n fill: \"none\",\n};\n\nexport { calendar };\n"],"names":["calendar","iconName","width","height","svgPathData","iconType","fill"],"mappings":";;;;+BAYSA;;;eAAAA;;;AAVT,MAAMA,WAA2B;IAC/BC,UAAU;IACVC,OAAO;IACPC,QAAQ;IACRC,aACE;IACFC,UAAU;IACVC,MAAM;AACR"}
@@ -9,7 +9,7 @@ Object.defineProperty(exports, "circleInfo", {
9
9
  }
10
10
  });
11
11
  const circleInfo = {
12
- iconName: "circleInfo",
12
+ iconName: "circle-info",
13
13
  width: 512,
14
14
  height: 512,
15
15
  svgPathData: "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336H192v48h24 80 24V336H296h-8V248 224H264 216 192v48h24 24v64H216zm72-144V128H224v64h64z",
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/circleInfo.tsx"],"sourcesContent":["import { IconDefinition } from \"./types\";\n\nconst circleInfo: IconDefinition = {\n iconName: \"circleInfo\",\n width: 512,\n height: 512,\n svgPathData:\n \"M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336H192v48h24 80 24V336H296h-8V248 224H264 216 192v48h24 24v64H216zm72-144V128H224v64h64z\",\n iconType: \"fill\",\n strokeWidth: 0,\n};\n\nexport { circleInfo };\n"],"names":["circleInfo","iconName","width","height","svgPathData","iconType","strokeWidth"],"mappings":";;;;+BAYSA;;;eAAAA;;;AAVT,MAAMA,aAA6B;IACjCC,UAAU;IACVC,OAAO;IACPC,QAAQ;IACRC,aACE;IACFC,UAAU;IACVC,aAAa;AACf"}
1
+ {"version":3,"sources":["../../src/circleInfo.tsx"],"sourcesContent":["import { IconDefinition } from \"./types\";\n\nconst circleInfo: IconDefinition = {\n iconName: \"circle-info\",\n width: 512,\n height: 512,\n svgPathData:\n \"M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336H192v48h24 80 24V336H296h-8V248 224H264 216 192v48h24 24v64H216zm72-144V128H224v64h64z\",\n iconType: \"fill\",\n strokeWidth: 0,\n};\n\nexport { circleInfo };\n"],"names":["circleInfo","iconName","width","height","svgPathData","iconType","strokeWidth"],"mappings":";;;;+BAYSA;;;eAAAA;;;AAVT,MAAMA,aAA6B;IACjCC,UAAU;IACVC,OAAO;IACPC,QAAQ;IACRC,aACE;IACFC,UAAU;IACVC,aAAa;AACf"}
@@ -9,7 +9,7 @@ Object.defineProperty(exports, "circleQuestion", {
9
9
  }
10
10
  });
11
11
  const circleQuestion = {
12
- iconName: "circleQuestion",
12
+ iconName: "circle-question",
13
13
  width: 512,
14
14
  height: 512,
15
15
  svgPathData: "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm168-72c0-30.9 25.1-56 56-56h56.9c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4V272v24H232V272 250.5 236.6l12.1-6.9 44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H224c-4.4 0-8 3.6-8 8l0 6.5-48 0V184zm64 152h48v48H232V336z",
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/circleQuestion.tsx"],"sourcesContent":["import { IconDefinition } from \"./types\";\n\nconst circleQuestion: IconDefinition = {\n iconName: \"circleQuestion\",\n width: 512,\n height: 512,\n svgPathData:\n \"M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm168-72c0-30.9 25.1-56 56-56h56.9c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4V272v24H232V272 250.5 236.6l12.1-6.9 44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H224c-4.4 0-8 3.6-8 8l0 6.5-48 0V184zm64 152h48v48H232V336z\",\n iconType: \"fill\",\n fill: \"none\",\n};\n\nexport { circleQuestion };\n"],"names":["circleQuestion","iconName","width","height","svgPathData","iconType","fill"],"mappings":";;;;+BAYSA;;;eAAAA;;;AAVT,MAAMA,iBAAiC;IACrCC,UAAU;IACVC,OAAO;IACPC,QAAQ;IACRC,aACE;IACFC,UAAU;IACVC,MAAM;AACR"}
1
+ {"version":3,"sources":["../../src/circleQuestion.tsx"],"sourcesContent":["import { IconDefinition } from \"./types\";\n\nconst circleQuestion: IconDefinition = {\n iconName: \"circle-question\",\n width: 512,\n height: 512,\n svgPathData:\n \"M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm168-72c0-30.9 25.1-56 56-56h56.9c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4V272v24H232V272 250.5 236.6l12.1-6.9 44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H224c-4.4 0-8 3.6-8 8l0 6.5-48 0V184zm64 152h48v48H232V336z\",\n iconType: \"fill\",\n fill: \"none\",\n};\n\nexport { circleQuestion };\n"],"names":["circleQuestion","iconName","width","height","svgPathData","iconType","fill"],"mappings":";;;;+BAYSA;;;eAAAA;;;AAVT,MAAMA,iBAAiC;IACrCC,UAAU;IACVC,OAAO;IACPC,QAAQ;IACRC,aACE;IACFC,UAAU;IACVC,MAAM;AACR"}
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "creditCard", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return creditCard;
9
+ }
10
+ });
11
+ const creditCard = {
12
+ iconName: "credit-card",
13
+ width: 576,
14
+ height: 512,
15
+ svgPathData: "M528 80v48H48V80H528zm0 144V432H48V224H528zM48 32H0V80 432v48H48 528h48V432 80 32H528 48zM192 336H96v48h96V336zm192 0H224v48H384V336z",
16
+ iconType: "fill",
17
+ fill: "none"
18
+ };
19
+
20
+ //# sourceMappingURL=creditCard.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/creditCard.tsx"],"sourcesContent":["import { IconDefinition } from \"./types\";\n\nconst creditCard: IconDefinition = {\n iconName: \"credit-card\",\n width: 576,\n height: 512,\n svgPathData:\n \"M528 80v48H48V80H528zm0 144V432H48V224H528zM48 32H0V80 432v48H48 528h48V432 80 32H528 48zM192 336H96v48h96V336zm192 0H224v48H384V336z\",\n iconType: \"fill\",\n fill: \"none\",\n};\n\nexport { creditCard };\n"],"names":["creditCard","iconName","width","height","svgPathData","iconType","fill"],"mappings":";;;;+BAYSA;;;eAAAA;;;AAVT,MAAMA,aAA6B;IACjCC,UAAU;IACVC,OAAO;IACPC,QAAQ;IACRC,aACE;IACFC,UAAU;IACVC,MAAM;AACR"}
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "creditCardSync", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return creditCardSync;
9
+ }
10
+ });
11
+ const creditCardSync = {
12
+ iconName: "credit-card-sync",
13
+ width: 640,
14
+ height: 512,
15
+ svgPathData: "M0 32l48 0 480 0 48 0 0 48 0 131.2c-24-12.3-51.2-19.2-80-19.2c-22.6 0-44.2 4.3-64 12l0-12-112 0 0 32L48 224l0 208 284 0c6.9 17.5 16.4 33.7 28.2 48L48 480 0 480l0-48L0 80 0 32zM48 80l0 48 480 0 0-48L48 80zM96 336l96 0 0 48-96 0 0-48zm128 0l96 0 0 32.8c0 5.1 .3 10.2 .7 15.2L224 384l0-48zM352 224l48 0 0 24 0 12.7c25.5-22.8 59.1-36.7 96-36.7c59.1 0 109.8 35.6 132 86.4l-44 19.2c-14.8-33.9-48.7-57.6-88-57.6c-28.5 0-54 12.3-71.6 32l31.6 0 24 0 0 48-24 0-80 0-24 0 0-24 0-80 0-24zm12 201.6l44-19.2c14.8 33.9 48.7 57.6 88 57.6c28.5 0 54-12.3 71.6-32L536 432l-24 0 0-48 24 0 80 0 24 0 0 24 0 80 0 24-48 0 0-24 0-12.7c-25.5 22.8-59.1 36.7-96 36.7c-59.1 0-109.8-35.6-132-86.4z",
16
+ iconType: "fill",
17
+ fill: "none"
18
+ };
19
+
20
+ //# sourceMappingURL=creditCardSync.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/creditCardSync.tsx"],"sourcesContent":["import { IconDefinition } from \"./types\";\n\nconst creditCardSync: IconDefinition = {\n iconName: \"credit-card-sync\",\n width: 640,\n height: 512,\n svgPathData:\n \"M0 32l48 0 480 0 48 0 0 48 0 131.2c-24-12.3-51.2-19.2-80-19.2c-22.6 0-44.2 4.3-64 12l0-12-112 0 0 32L48 224l0 208 284 0c6.9 17.5 16.4 33.7 28.2 48L48 480 0 480l0-48L0 80 0 32zM48 80l0 48 480 0 0-48L48 80zM96 336l96 0 0 48-96 0 0-48zm128 0l96 0 0 32.8c0 5.1 .3 10.2 .7 15.2L224 384l0-48zM352 224l48 0 0 24 0 12.7c25.5-22.8 59.1-36.7 96-36.7c59.1 0 109.8 35.6 132 86.4l-44 19.2c-14.8-33.9-48.7-57.6-88-57.6c-28.5 0-54 12.3-71.6 32l31.6 0 24 0 0 48-24 0-80 0-24 0 0-24 0-80 0-24zm12 201.6l44-19.2c14.8 33.9 48.7 57.6 88 57.6c28.5 0 54-12.3 71.6-32L536 432l-24 0 0-48 24 0 80 0 24 0 0 24 0 80 0 24-48 0 0-24 0-12.7c-25.5 22.8-59.1 36.7-96 36.7c-59.1 0-109.8-35.6-132-86.4z\",\n iconType: \"fill\",\n fill: \"none\",\n};\n\nexport { creditCardSync };\n"],"names":["creditCardSync","iconName","width","height","svgPathData","iconType","fill"],"mappings":";;;;+BAYSA;;;eAAAA;;;AAVT,MAAMA,iBAAiC;IACrCC,UAAU;IACVC,OAAO;IACPC,QAAQ;IACRC,aACE;IACFC,UAAU;IACVC,MAAM;AACR"}
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "fileArrowDown", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return fileArrowDown;
9
+ }
10
+ });
11
+ const fileArrowDown = {
12
+ iconName: "file-arrow-down",
13
+ width: 384,
14
+ height: 512,
15
+ svgPathData: "M48 48H224V160H336V464H48V48zM256 0H48 0V48 464v48H48 336h48V464 128L256 0zM216 232V208H168v24V334.1l-31-31-17-17L86.1 320l17 17 72 72 17 17 17-17 72-72 17-17L264 286.1l-17 17-31 31V232z",
16
+ iconType: "fill",
17
+ fill: "none"
18
+ };
19
+
20
+ //# sourceMappingURL=fileArrowDown.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/fileArrowDown.tsx"],"sourcesContent":["import { IconDefinition } from \"./types\";\n\nconst fileArrowDown: IconDefinition = {\n iconName: \"file-arrow-down\",\n width: 384,\n height: 512,\n svgPathData:\n \"M48 48H224V160H336V464H48V48zM256 0H48 0V48 464v48H48 336h48V464 128L256 0zM216 232V208H168v24V334.1l-31-31-17-17L86.1 320l17 17 72 72 17 17 17-17 72-72 17-17L264 286.1l-17 17-31 31V232z\",\n iconType: \"fill\",\n fill: \"none\",\n};\n\nexport { fileArrowDown };\n"],"names":["fileArrowDown","iconName","width","height","svgPathData","iconType","fill"],"mappings":";;;;+BAYSA;;;eAAAA;;;AAVT,MAAMA,gBAAgC;IACpCC,UAAU;IACVC,OAAO;IACPC,QAAQ;IACRC,aACE;IACFC,UAAU;IACVC,MAAM;AACR"}
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "fileCertificate", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return fileCertificate;
9
+ }
10
+ });
11
+ const fileCertificate = {
12
+ iconName: "file-certificate",
13
+ width: 512,
14
+ height: 512,
15
+ svgPathData: "M224 464H464V160H352V48H176v70.2l-1.9-2.4L151.6 125 128 134.7V48 0h48H384L512 128V464v48H464 224v0V464zM92.3 154.6l5.6 2.3L128 169.3 158.1 157l5.6-2.3 3.7 4.8 19.9 25.7 32.2 4.4 6 .8 .8 6 4.4 32.2 25.7 19.9 4.8 3.7-2.3 5.6L246.7 288 259 318.1l2.3 5.6-4.8 3.7-25.7 19.9-4.4 32.2-.8 6-6 .8L192 390.2V512l-64-40L64 512V390.2l-27.6-3.8-6-.8-.8-6-4.4-32.2L-.5 327.4l-4.8-3.7 2.3-5.6L9.3 288-3 257.9l-2.3-5.6 4.8-3.7 25.7-19.9 4.4-32.2 .8-6 6-.8 32.2-4.4 19.9-25.7 3.7-4.8zM192 288A64 64 0 1 0 64 288a64 64 0 1 0 128 0z",
16
+ iconType: "fill",
17
+ fill: "none"
18
+ };
19
+
20
+ //# sourceMappingURL=fileCertificate.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/fileCertificate.tsx"],"sourcesContent":["import { IconDefinition } from \"./types\";\n\nconst fileCertificate: IconDefinition = {\n iconName: \"file-certificate\",\n width: 512,\n height: 512,\n svgPathData:\n \"M224 464H464V160H352V48H176v70.2l-1.9-2.4L151.6 125 128 134.7V48 0h48H384L512 128V464v48H464 224v0V464zM92.3 154.6l5.6 2.3L128 169.3 158.1 157l5.6-2.3 3.7 4.8 19.9 25.7 32.2 4.4 6 .8 .8 6 4.4 32.2 25.7 19.9 4.8 3.7-2.3 5.6L246.7 288 259 318.1l2.3 5.6-4.8 3.7-25.7 19.9-4.4 32.2-.8 6-6 .8L192 390.2V512l-64-40L64 512V390.2l-27.6-3.8-6-.8-.8-6-4.4-32.2L-.5 327.4l-4.8-3.7 2.3-5.6L9.3 288-3 257.9l-2.3-5.6 4.8-3.7 25.7-19.9 4.4-32.2 .8-6 6-.8 32.2-4.4 19.9-25.7 3.7-4.8zM192 288A64 64 0 1 0 64 288a64 64 0 1 0 128 0z\",\n iconType: \"fill\",\n fill: \"none\",\n};\n\nexport { fileCertificate };\n"],"names":["fileCertificate","iconName","width","height","svgPathData","iconType","fill"],"mappings":";;;;+BAYSA;;;eAAAA;;;AAVT,MAAMA,kBAAkC;IACtCC,UAAU;IACVC,OAAO;IACPC,QAAQ;IACRC,aACE;IACFC,UAAU;IACVC,MAAM;AACR"}
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "fileSignature", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return fileSignature;
9
+ }
10
+ });
11
+ const fileSignature = {
12
+ iconName: "file-signature",
13
+ width: 576,
14
+ height: 512,
15
+ svgPathData: "M336 435.3V464H48V48H224V160H336v84.4l48-48V128L256 0H48 0V48 464v48H48 336h48V464 427l-1.7 1.7L336 435.3zM152 304H140.1l-3.4 11.4L116.1 384H96 80v32H96h32 11.9l3.4-11.4L160 349l16.7 55.6 3.4 11.4H192h8 9.9l4.4-8.8L225.9 384h12.2l11.6 23.2 4.4 8.8H264h16 1.6H288l.1-.1L370.9 404 512.1 262.7l-71-71L299.9 333l-7.3 51h-11H280h-6.1l-11.6-23.2-4.4-8.8H248 216h-9.9l-4.4 8.8-3 5.9-15.4-51.4L179.9 304H168 152zM576 198.8l-71-71-41.3 41.3 71 71L576 198.8z",
16
+ iconType: "fill",
17
+ fill: "none"
18
+ };
19
+
20
+ //# sourceMappingURL=fileSignature.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/fileSignature.tsx"],"sourcesContent":["import { IconDefinition } from \"./types\";\n\nconst fileSignature: IconDefinition = {\n iconName: \"file-signature\",\n width: 576,\n height: 512,\n svgPathData:\n \"M336 435.3V464H48V48H224V160H336v84.4l48-48V128L256 0H48 0V48 464v48H48 336h48V464 427l-1.7 1.7L336 435.3zM152 304H140.1l-3.4 11.4L116.1 384H96 80v32H96h32 11.9l3.4-11.4L160 349l16.7 55.6 3.4 11.4H192h8 9.9l4.4-8.8L225.9 384h12.2l11.6 23.2 4.4 8.8H264h16 1.6H288l.1-.1L370.9 404 512.1 262.7l-71-71L299.9 333l-7.3 51h-11H280h-6.1l-11.6-23.2-4.4-8.8H248 216h-9.9l-4.4 8.8-3 5.9-15.4-51.4L179.9 304H168 152zM576 198.8l-71-71-41.3 41.3 71 71L576 198.8z\",\n iconType: \"fill\",\n fill: \"none\",\n};\n\nexport { fileSignature };\n"],"names":["fileSignature","iconName","width","height","svgPathData","iconType","fill"],"mappings":";;;;+BAYSA;;;eAAAA;;;AAVT,MAAMA,gBAAgC;IACpCC,UAAU;IACVC,OAAO;IACPC,QAAQ;IACRC,aACE;IACFC,UAAU;IACVC,MAAM;AACR"}
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "handshake", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return handshake;
9
+ }
10
+ });
11
+ const handshake = {
12
+ iconName: "handshake",
13
+ width: 640,
14
+ height: 512,
15
+ svgPathData: "M272.8 64l-48 48H209.5l-61.2 57.5-6.9 6.5h-9.5H96V304h20.9 9.9l7 7 52 52 7 7 17 17 21.3 21.3L254.5 385l17-17 17 17 21 21L339.4 376l17-17 17 17 9.7 9.7 49-49v-1.8L340.1 243l-67.9 62.6-18 16.6-16.2-18.3-64-72-15.5-17.4 17-16 136-128 6.9-6.5H328h96 9.1l6.8 6.1L505.1 128H544h40 24 32V384H544V368H468.5l-68.6 68.6-17 17-17-17-9.7-9.7-29.9 29.9-17 17-17-17-21-21-23.3 23.3-17 17-17-17L176 421l-17-17-7-7-45-45H96v32H0V128H32 56 96h26.3l61.2-57.5 6.9-6.5H200h72.8zM544 320V176H496h-9.1l-6.8-6.1L414.9 112H337.5L225.4 217.5l32.3 36.3 86-79.4 17.6-16.3 32.6 35.3-17.6 16.3-.8 .8L483.8 318.8 485 320h59zM64 336a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm528 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32z",
16
+ iconType: "fill",
17
+ fill: "none"
18
+ };
19
+
20
+ //# sourceMappingURL=handshake.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/handshake.tsx"],"sourcesContent":["import { IconDefinition } from \"./types\";\n\nconst handshake: IconDefinition = {\n iconName: \"handshake\",\n width: 640,\n height: 512,\n svgPathData:\n \"M272.8 64l-48 48H209.5l-61.2 57.5-6.9 6.5h-9.5H96V304h20.9 9.9l7 7 52 52 7 7 17 17 21.3 21.3L254.5 385l17-17 17 17 21 21L339.4 376l17-17 17 17 9.7 9.7 49-49v-1.8L340.1 243l-67.9 62.6-18 16.6-16.2-18.3-64-72-15.5-17.4 17-16 136-128 6.9-6.5H328h96 9.1l6.8 6.1L505.1 128H544h40 24 32V384H544V368H468.5l-68.6 68.6-17 17-17-17-9.7-9.7-29.9 29.9-17 17-17-17-21-21-23.3 23.3-17 17-17-17L176 421l-17-17-7-7-45-45H96v32H0V128H32 56 96h26.3l61.2-57.5 6.9-6.5H200h72.8zM544 320V176H496h-9.1l-6.8-6.1L414.9 112H337.5L225.4 217.5l32.3 36.3 86-79.4 17.6-16.3 32.6 35.3-17.6 16.3-.8 .8L483.8 318.8 485 320h59zM64 336a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm528 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32z\",\n iconType: \"fill\",\n fill: \"none\",\n};\n\nexport { handshake };\n"],"names":["handshake","iconName","width","height","svgPathData","iconType","fill"],"mappings":";;;;+BAYSA;;;eAAAA;;;AAVT,MAAMA,YAA4B;IAChCC,UAAU;IACVC,OAAO;IACPC,QAAQ;IACRC,aACE;IACFC,UAAU;IACVC,MAAM;AACR"}
package/dist/cjs/index.js CHANGED
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", {
3
3
  value: true
4
4
  });
5
5
  _export_star(require("./bin"), exports);
6
+ _export_star(require("./calendar"), exports);
6
7
  _export_star(require("./calendarClock"), exports);
7
8
  _export_star(require("./chartMixedUpCircleDollar"), exports);
8
9
  _export_star(require("./chevronDown"), exports);
@@ -16,24 +17,34 @@ _export_star(require("./circleQuestion"), exports);
16
17
  _export_star(require("./circleSterling"), exports);
17
18
  _export_star(require("./circleTick"), exports);
18
19
  _export_star(require("./clock"), exports);
20
+ _export_star(require("./creditCard"), exports);
21
+ _export_star(require("./creditCardSync"), exports);
19
22
  _export_star(require("./cross"), exports);
20
23
  _export_star(require("./dollarSign"), exports);
21
24
  _export_star(require("./dropdown"), exports);
22
25
  _export_star(require("./error"), exports);
23
26
  _export_star(require("./fett"), exports);
27
+ _export_star(require("./fileArrowDown"), exports);
28
+ _export_star(require("./fileCertificate"), exports);
29
+ _export_star(require("./fileSignature"), exports);
30
+ _export_star(require("./handshake"), exports);
24
31
  _export_star(require("./home"), exports);
25
32
  _export_star(require("./leftArrow"), exports);
26
33
  _export_star(require("./loading"), exports);
34
+ _export_star(require("./lockKeyhole"), exports);
27
35
  _export_star(require("./menu"), exports);
28
36
  _export_star(require("./minus"), exports);
37
+ _export_star(require("./newspaper"), exports);
29
38
  _export_star(require("./notdef"), exports);
30
39
  _export_star(require("./pencil"), exports);
31
40
  _export_star(require("./plus"), exports);
32
41
  _export_star(require("./question"), exports);
33
42
  _export_star(require("./refreshArrow"), exports);
34
43
  _export_star(require("./rightArrow"), exports);
44
+ _export_star(require("./rocketLaunch"), exports);
35
45
  _export_star(require("./sb"), exports);
36
46
  _export_star(require("./search"), exports);
47
+ _export_star(require("./shieldCheck"), exports);
37
48
  _export_star(require("./simplybusiness"), exports);
38
49
  _export_star(require("./star"), exports);
39
50
  _export_star(require("./sterlingSign"), exports);
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export type { IconDefinition } from \"./types\";\n\n// Can't automatically get these from src, it breaks API Extractor\nexport type IconName =\n | \"bin\"\n | \"chevronDown\"\n | \"chevronLeft\"\n | \"chevronRight\"\n | \"chevronUp\"\n | \"chevronUpDown\"\n | \"circleInfo\"\n | \"circleQuestion\"\n | \"circleSterling\"\n | \"circleTick\"\n | \"clock\"\n | \"cross\"\n | \"dollarSign\"\n | \"dropdown\"\n | \"error\"\n | \"home\"\n | \"leftArrow\"\n | \"loading\"\n | \"menu\"\n | \"minus\"\n | \"pencil\"\n | \"plus\"\n | \"question\"\n | \"refreshArrow\"\n | \"rightArrow\"\n | \"sb\"\n | \"search\"\n | \"simplybusiness\"\n | \"star\"\n | \"sterlingSign\"\n | \"tag\"\n | \"telephone\"\n | \"tick\"\n | \"user\"\n | \"warning\";\n\nexport * from \"./bin\";\nexport * from \"./calendarClock\";\nexport * from \"./chartMixedUpCircleDollar\";\nexport * from \"./chevronDown\";\nexport * from \"./chevronLeft\";\nexport * from \"./chevronRight\";\nexport * from \"./chevronUp\";\nexport * from \"./chevronUpDown\";\nexport * from \"./circleDollar\";\nexport * from \"./circleInfo\";\nexport * from \"./circleQuestion\";\nexport * from \"./circleSterling\";\nexport * from \"./circleTick\";\nexport * from \"./clock\";\nexport * from \"./cross\";\nexport * from \"./dollarSign\";\nexport * from \"./dropdown\";\nexport * from \"./error\";\nexport * from \"./fett\";\nexport * from \"./home\";\nexport * from \"./leftArrow\";\nexport * from \"./loading\";\nexport * from \"./menu\";\nexport * from \"./minus\";\nexport * from \"./notdef\";\nexport * from \"./pencil\";\nexport * from \"./plus\";\nexport * from \"./question\";\nexport * from \"./refreshArrow\";\nexport * from \"./rightArrow\";\nexport * from \"./sb\";\nexport * from \"./search\";\nexport * from \"./simplybusiness\";\nexport * from \"./star\";\nexport * from \"./sterlingSign\";\nexport * from \"./tag\";\nexport * from \"./telephone\";\nexport * from \"./tick\";\nexport * from \"./user\";\nexport * from \"./warning\";\n"],"names":[],"mappings":";;;;qBAwCc;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA"}
1
+ {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export type { IconDefinition } from \"./types\";\n\n// Can't automatically get these from src, it breaks API Extractor\nexport type IconName =\n | \"bin\"\n | \"calendar\"\n | \"chevronDown\"\n | \"chevronLeft\"\n | \"chevronRight\"\n | \"chevronUp\"\n | \"chevronUpDown\"\n | \"circleInfo\"\n | \"circleQuestion\"\n | \"circleSterling\"\n | \"circleTick\"\n | \"clock\"\n | \"creditCard\"\n | \"creditCardSync\"\n | \"cross\"\n | \"dollarSign\"\n | \"dropdown\"\n | \"error\"\n | \"fileArrowDown\"\n | \"fileCertificate\"\n | \"fileSignature\"\n | \"handshake\"\n | \"home\"\n | \"leftArrow\"\n | \"loading\"\n | \"lockKeyhole\"\n | \"menu\"\n | \"minus\"\n | \"newspaper\"\n | \"pencil\"\n | \"plus\"\n | \"question\"\n | \"refreshArrow\"\n | \"rightArrow\"\n | \"rocketLaunch\"\n | \"sb\"\n | \"search\"\n | \"shieldCheck\"\n | \"simplybusiness\"\n | \"star\"\n | \"sterlingSign\"\n | \"tag\"\n | \"telephone\"\n | \"tick\"\n | \"user\"\n | \"warning\";\n\nexport * from \"./bin\";\nexport * from \"./calendar\";\nexport * from \"./calendarClock\";\nexport * from \"./chartMixedUpCircleDollar\";\nexport * from \"./chevronDown\";\nexport * from \"./chevronLeft\";\nexport * from \"./chevronRight\";\nexport * from \"./chevronUp\";\nexport * from \"./chevronUpDown\";\nexport * from \"./circleDollar\";\nexport * from \"./circleInfo\";\nexport * from \"./circleQuestion\";\nexport * from \"./circleSterling\";\nexport * from \"./circleTick\";\nexport * from \"./clock\";\nexport * from \"./creditCard\";\nexport * from \"./creditCardSync\";\nexport * from \"./cross\";\nexport * from \"./dollarSign\";\nexport * from \"./dropdown\";\nexport * from \"./error\";\nexport * from \"./fett\";\nexport * from \"./fileArrowDown\";\nexport * from \"./fileCertificate\";\nexport * from \"./fileSignature\";\nexport * from \"./handshake\";\nexport * from \"./home\";\nexport * from \"./leftArrow\";\nexport * from \"./loading\";\nexport * from \"./lockKeyhole\";\nexport * from \"./menu\";\nexport * from \"./minus\";\nexport * from \"./newspaper\";\nexport * from \"./notdef\";\nexport * from \"./pencil\";\nexport * from \"./plus\";\nexport * from \"./question\";\nexport * from \"./refreshArrow\";\nexport * from \"./rightArrow\";\nexport * from \"./rocketLaunch\";\nexport * from \"./sb\";\nexport * from \"./search\";\nexport * from \"./shieldCheck\";\nexport * from \"./simplybusiness\";\nexport * from \"./star\";\nexport * from \"./sterlingSign\";\nexport * from \"./tag\";\nexport * from \"./telephone\";\nexport * from \"./tick\";\nexport * from \"./user\";\nexport * from \"./warning\";\n"],"names":[],"mappings":";;;;qBAmDc;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA;qBACA"}
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "lockKeyhole", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return lockKeyhole;
9
+ }
10
+ });
11
+ const lockKeyhole = {
12
+ iconName: "lock-keyhole",
13
+ width: 448,
14
+ height: 512,
15
+ svgPathData: "M224 48c44.2 0 80 35.8 80 80v64H144V128c0-44.2 35.8-80 80-80zM96 128v64H48 0v48V464v48H48 400h48V464 240 192H400 352V128C352 57.3 294.7 0 224 0S96 57.3 96 128zM48 240H400V464H48V240zm200 80V296H200v24 64 24h48V384 320z",
16
+ iconType: "fill",
17
+ fill: "none"
18
+ };
19
+
20
+ //# sourceMappingURL=lockKeyhole.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/lockKeyhole.tsx"],"sourcesContent":["import { IconDefinition } from \"./types\";\n\nconst lockKeyhole: IconDefinition = {\n iconName: \"lock-keyhole\",\n width: 448,\n height: 512,\n svgPathData:\n \"M224 48c44.2 0 80 35.8 80 80v64H144V128c0-44.2 35.8-80 80-80zM96 128v64H48 0v48V464v48H48 400h48V464 240 192H400 352V128C352 57.3 294.7 0 224 0S96 57.3 96 128zM48 240H400V464H48V240zm200 80V296H200v24 64 24h48V384 320z\",\n iconType: \"fill\",\n fill: \"none\",\n};\n\nexport { lockKeyhole };\n"],"names":["lockKeyhole","iconName","width","height","svgPathData","iconType","fill"],"mappings":";;;;+BAYSA;;;eAAAA;;;AAVT,MAAMA,cAA8B;IAClCC,UAAU;IACVC,OAAO;IACPC,QAAQ;IACRC,aACE;IACFC,UAAU;IACVC,MAAM;AACR"}
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "newspaper", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return newspaper;
9
+ }
10
+ });
11
+ const newspaper = {
12
+ iconName: "newspaper",
13
+ width: 512,
14
+ height: 512,
15
+ svgPathData: "M96 32h24H488h24V56 456v24H488 144 120 72 48 24 0V456 112 88H48v24V432H72 96V56 32zm48 400H464V80H144V432zm32-320H320V240H176V112zm200 0h32 24v48H408 376 352V112h24zm0 80h32 24v48H408 376 352V192h24zM200 272H408h24v48H408 200 176V272h24zm0 80H408h24v48H408 200 176V352h24z",
16
+ iconType: "fill",
17
+ fill: "none"
18
+ };
19
+
20
+ //# sourceMappingURL=newspaper.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/newspaper.tsx"],"sourcesContent":["import { IconDefinition } from \"./types\";\n\nconst newspaper: IconDefinition = {\n iconName: \"newspaper\",\n width: 512,\n height: 512,\n svgPathData:\n \"M96 32h24H488h24V56 456v24H488 144 120 72 48 24 0V456 112 88H48v24V432H72 96V56 32zm48 400H464V80H144V432zm32-320H320V240H176V112zm200 0h32 24v48H408 376 352V112h24zm0 80h32 24v48H408 376 352V192h24zM200 272H408h24v48H408 200 176V272h24zm0 80H408h24v48H408 200 176V352h24z\",\n iconType: \"fill\",\n fill: \"none\",\n};\n\nexport { newspaper };\n"],"names":["newspaper","iconName","width","height","svgPathData","iconType","fill"],"mappings":";;;;+BAYSA;;;eAAAA;;;AAVT,MAAMA,YAA4B;IAChCC,UAAU;IACVC,OAAO;IACPC,QAAQ;IACRC,aACE;IACFC,UAAU;IACVC,MAAM;AACR"}
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "rocketLaunch", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return rocketLaunch;
9
+ }
10
+ });
11
+ const rocketLaunch = {
12
+ iconName: "rocket-launch",
13
+ width: 512,
14
+ height: 512,
15
+ svgPathData: "M197.9 253.9c32.2-113.5 86.9-164.1 137-186.9c43.8-20 90.1-21.4 126.8-16.6c4.8 36.6 3.4 82.9-16.6 126.8c-22.8 50-73.4 104.8-186.9 137c-6.4-12.9-14.8-24.7-25.2-35s-22.2-18.8-35-25.2zM44.4 287.7c1.2 .2 2.4 .3 3.6 .3h90.7c22.6 0 44.3 9 60.3 25s25 37.7 25 60.3l0 82.7c0 .1 0 .1 0 .2V512l160-80 0-119.9C527.5 223 520.4 80.2 502.7 9.3C431.8-8.4 289-15.5 199.9 128l-64.4 0c-.1 0-.2 0-.3 0L80 128 0 287.6l44.4 .1zM.5 511.5s116.5 8 166-41.5c34.4-34.4 34.4-90.1 0-124.5s-90.1-34.4-124.5 0C-7.5 395 .5 511.5 .5 511.5zm64.1-64.1s-2.7-38.7 13.8-55.2c11.4-11.4 30-11.4 41.4 0s11.4 30 0 41.4c-16.5 16.5-55.2 13.8-55.2 13.8zM408 144a40 40 0 1 0 -80 0 40 40 0 1 0 80 0z",
16
+ iconType: "fill",
17
+ fill: "none"
18
+ };
19
+
20
+ //# sourceMappingURL=rocketLaunch.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/rocketLaunch.tsx"],"sourcesContent":["import { IconDefinition } from \"./types\";\n\nconst rocketLaunch: IconDefinition = {\n iconName: \"rocket-launch\",\n width: 512,\n height: 512,\n svgPathData:\n \"M197.9 253.9c32.2-113.5 86.9-164.1 137-186.9c43.8-20 90.1-21.4 126.8-16.6c4.8 36.6 3.4 82.9-16.6 126.8c-22.8 50-73.4 104.8-186.9 137c-6.4-12.9-14.8-24.7-25.2-35s-22.2-18.8-35-25.2zM44.4 287.7c1.2 .2 2.4 .3 3.6 .3h90.7c22.6 0 44.3 9 60.3 25s25 37.7 25 60.3l0 82.7c0 .1 0 .1 0 .2V512l160-80 0-119.9C527.5 223 520.4 80.2 502.7 9.3C431.8-8.4 289-15.5 199.9 128l-64.4 0c-.1 0-.2 0-.3 0L80 128 0 287.6l44.4 .1zM.5 511.5s116.5 8 166-41.5c34.4-34.4 34.4-90.1 0-124.5s-90.1-34.4-124.5 0C-7.5 395 .5 511.5 .5 511.5zm64.1-64.1s-2.7-38.7 13.8-55.2c11.4-11.4 30-11.4 41.4 0s11.4 30 0 41.4c-16.5 16.5-55.2 13.8-55.2 13.8zM408 144a40 40 0 1 0 -80 0 40 40 0 1 0 80 0z\",\n iconType: \"fill\",\n fill: \"none\",\n};\n\nexport { rocketLaunch };\n"],"names":["rocketLaunch","iconName","width","height","svgPathData","iconType","fill"],"mappings":";;;;+BAYSA;;;eAAAA;;;AAVT,MAAMA,eAA+B;IACnCC,UAAU;IACVC,OAAO;IACPC,QAAQ;IACRC,aACE;IACFC,UAAU;IACVC,MAAM;AACR"}
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "shieldCheck", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return shieldCheck;
9
+ }
10
+ });
11
+ const shieldCheck = {
12
+ iconName: "shield-check",
13
+ width: 512,
14
+ height: 512,
15
+ svgPathData: "M64.1 126L256 51.5 448 126c1 43.5-6.9 106.9-33.8 168.8C385.9 359.7 337.1 422.4 256 459.6c-81.1-37.1-129.9-99.8-158.1-164.8C71 232.9 63.1 169.5 64.1 126zm431.4-13l-1.2-20.5L475.1 85 267.6 4.5 256 0 244.4 4.5 36.9 85 17.8 92.5 16.6 113c-2.9 49.9 4.9 126.3 37.3 200.9c32.7 75.2 91 150 189.4 192.6L256 512l12.7-5.5c98.4-42.6 156.7-117.3 189.4-192.6c32.4-74.7 40.2-151 37.3-200.9zM369 209l17-17L352 158.1l-17 17-111 111-47-47-17-17L126.1 256l17 17 64 64 17 17 17-17L369 209z",
16
+ iconType: "fill",
17
+ fill: "none"
18
+ };
19
+
20
+ //# sourceMappingURL=shieldCheck.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/shieldCheck.tsx"],"sourcesContent":["import { IconDefinition } from \"./types\";\n\nconst shieldCheck: IconDefinition = {\n iconName: \"shield-check\",\n width: 512,\n height: 512,\n svgPathData:\n \"M64.1 126L256 51.5 448 126c1 43.5-6.9 106.9-33.8 168.8C385.9 359.7 337.1 422.4 256 459.6c-81.1-37.1-129.9-99.8-158.1-164.8C71 232.9 63.1 169.5 64.1 126zm431.4-13l-1.2-20.5L475.1 85 267.6 4.5 256 0 244.4 4.5 36.9 85 17.8 92.5 16.6 113c-2.9 49.9 4.9 126.3 37.3 200.9c32.7 75.2 91 150 189.4 192.6L256 512l12.7-5.5c98.4-42.6 156.7-117.3 189.4-192.6c32.4-74.7 40.2-151 37.3-200.9zM369 209l17-17L352 158.1l-17 17-111 111-47-47-17-17L126.1 256l17 17 64 64 17 17 17-17L369 209z\",\n iconType: \"fill\",\n fill: \"none\",\n};\n\nexport { shieldCheck };\n"],"names":["shieldCheck","iconName","width","height","svgPathData","iconType","fill"],"mappings":";;;;+BAYSA;;;eAAAA;;;AAVT,MAAMA,cAA8B;IAClCC,UAAU;IACVC,OAAO;IACPC,QAAQ;IACRC,aACE;IACFC,UAAU;IACVC,MAAM;AACR"}