@project-lary/react-material-symbols-600-sharp 0.2.0 → 0.3.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 (57) hide show
  1. package/dist/components/AddDiamond.d.ts +4 -0
  2. package/dist/components/AddDiamond.js +6 -0
  3. package/dist/components/AddDiamondFilled.d.ts +4 -0
  4. package/dist/components/AddDiamondFilled.js +6 -0
  5. package/dist/components/ContrastCircle.d.ts +4 -0
  6. package/dist/components/ContrastCircle.js +6 -0
  7. package/dist/components/ContrastCircleFilled.d.ts +3 -0
  8. package/dist/components/ContrastCircleFilled.js +3 -0
  9. package/dist/components/ContrastSquare.d.ts +4 -0
  10. package/dist/components/ContrastSquare.js +6 -0
  11. package/dist/components/ContrastSquareFilled.d.ts +3 -0
  12. package/dist/components/ContrastSquareFilled.js +3 -0
  13. package/dist/components/Fingerprint.js +1 -1
  14. package/dist/components/FingerprintFilled.d.ts +4 -3
  15. package/dist/components/FingerprintFilled.js +6 -3
  16. package/dist/components/FingerprintOff.d.ts +4 -0
  17. package/dist/components/FingerprintOff.js +6 -0
  18. package/dist/components/FingerprintOffFilled.d.ts +3 -0
  19. package/dist/components/FingerprintOffFilled.js +3 -0
  20. package/dist/components/FootBones.js +1 -1
  21. package/dist/components/FootBonesFilled.js +1 -1
  22. package/dist/components/Function.js +1 -1
  23. package/dist/components/Password2.d.ts +4 -0
  24. package/dist/components/Password2.js +6 -0
  25. package/dist/components/Password2Filled.d.ts +3 -0
  26. package/dist/components/Password2Filled.js +3 -0
  27. package/dist/components/Password2Off.d.ts +4 -0
  28. package/dist/components/Password2Off.js +6 -0
  29. package/dist/components/Password2OffFilled.d.ts +3 -0
  30. package/dist/components/Password2OffFilled.js +3 -0
  31. package/dist/components/PokerChip.d.ts +4 -0
  32. package/dist/components/PokerChip.js +6 -0
  33. package/dist/components/PokerChipFilled.d.ts +3 -0
  34. package/dist/components/PokerChipFilled.js +3 -0
  35. package/dist/components/SmartCardReader.d.ts +4 -0
  36. package/dist/components/SmartCardReader.js +6 -0
  37. package/dist/components/SmartCardReaderFilled.d.ts +4 -0
  38. package/dist/components/SmartCardReaderFilled.js +6 -0
  39. package/dist/components/SmartCardReaderOff.d.ts +4 -0
  40. package/dist/components/SmartCardReaderOff.js +6 -0
  41. package/dist/components/SmartCardReaderOffFilled.d.ts +4 -0
  42. package/dist/components/SmartCardReaderOffFilled.js +6 -0
  43. package/dist/components/TextUp.d.ts +4 -0
  44. package/dist/components/TextUp.js +6 -0
  45. package/dist/components/TextUpFilled.d.ts +3 -0
  46. package/dist/components/TextUpFilled.js +3 -0
  47. package/dist/components/Unknown7.d.ts +4 -0
  48. package/dist/components/Unknown7.js +6 -0
  49. package/dist/components/Unknown7Filled.d.ts +3 -0
  50. package/dist/components/Unknown7Filled.js +3 -0
  51. package/dist/components/Vo2Max.d.ts +4 -0
  52. package/dist/components/Vo2Max.js +6 -0
  53. package/dist/components/Vo2MaxFilled.d.ts +4 -0
  54. package/dist/components/Vo2MaxFilled.js +6 -0
  55. package/dist/index.d.ts +24 -0
  56. package/dist/index.js +24 -0
  57. package/package.json +1 -1
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export default function AddDiamond({ className }: {
3
+ className?: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export default function AddDiamond(_a) {
3
+ var className = _a.className;
4
+ return (React.createElement("svg", { className: className, width: "1em", height: "1em", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -960 960 960" },
5
+ React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M443.782-319.043h72.436v-123.739h124.739v-72.436H516.218v-124.739h-72.436v124.739H320.043v72.436h123.739zm35.653 285.522L33.39-478.435 479.435-926.61l448.74 448.175zM480-145.087 815.478-479 480-813.913 145.522-479zM481-480" })));
6
+ }
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export default function AddDiamondFilled({ className }: {
3
+ className?: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export default function AddDiamondFilled(_a) {
3
+ var className = _a.className;
4
+ return (React.createElement("svg", { className: className, width: "1em", height: "1em", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -960 960 960" },
5
+ React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M443.782-319.043h72.436v-123.739h124.739v-72.436H516.218v-124.739h-72.436v124.739H320.043v72.436h123.739zm35.653 285.522L33.39-478.435 479.435-926.61l448.74 448.175z" })));
6
+ }
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export default function ContrastCircle({ className }: {
3
+ className?: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export default function ContrastCircle(_a) {
3
+ var className = _a.className;
4
+ return (React.createElement("svg", { className: className, width: "1em", height: "1em", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -960 960 960" },
5
+ React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M480.031-65.869q-85.857 0-161.338-32.507-75.48-32.508-131.632-88.639t-88.672-131.63-32.52-161.34 32.63-161.385q32.631-75.543 88.609-131.522 55.979-55.978 131.516-88.891 75.538-32.913 161.423-32.913t161.376 32.913 131.469 88.891q55.978 55.979 88.891 131.516 32.913 75.538 32.913 161.423t-32.913 161.376-88.891 131.469q-55.979 55.978-131.491 88.609t-161.37 32.63m.063-79.218q139.389 0 237.104-97.528 97.715-97.527 97.715-237.102 0-67.153-25.218-128.022-25.217-60.87-72.086-108.87L243.391-243.596q47.75 46.381 108.695 72.445t128.008 26.064m3.254-172.783v-56.217H686.13v56.217zM315.521-502.261h56.218v-87h88v-56.218h-88v-87h-56.218v87h-87v56.218h87z" })));
6
+ }
@@ -0,0 +1,3 @@
1
+ import ContrastCircle from './ContrastCircle';
2
+ declare const ContrastCircleFilled: typeof ContrastCircle;
3
+ export default ContrastCircleFilled;
@@ -0,0 +1,3 @@
1
+ import ContrastCircle from './ContrastCircle';
2
+ var ContrastCircleFilled = ContrastCircle;
3
+ export default ContrastCircleFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export default function ContrastSquare({ className }: {
3
+ className?: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export default function ContrastSquare(_a) {
3
+ var className = _a.className;
4
+ return (React.createElement("svg", { className: className, width: "1em", height: "1em", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -960 960 960" },
5
+ React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M105.869-105.869v-748.827h748.827v748.827zm79.218-79.218h589.826v-589.826zm33.261-423.783h76v76h56.782v-76h76v-56.782h-76v-76h-56.782v76h-76zm510.131 294.913H495.696v-56.783h232.783z" })));
6
+ }
@@ -0,0 +1,3 @@
1
+ import ContrastSquare from './ContrastSquare';
2
+ declare const ContrastSquareFilled: typeof ContrastSquare;
3
+ export default ContrastSquareFilled;
@@ -0,0 +1,3 @@
1
+ import ContrastSquare from './ContrastSquare';
2
+ var ContrastSquareFilled = ContrastSquare;
3
+ export default ContrastSquareFilled;
@@ -2,5 +2,5 @@ import React from 'react';
2
2
  export default function Fingerprint(_a) {
3
3
  var className = _a.className;
4
4
  return (React.createElement("svg", { className: className, width: "1em", height: "1em", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -960 960 960" },
5
- React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M125.261-578.348q-5.696-2.565-6.544-9.043-.847-6.479 1.718-11.609 61.435-88.261 157-136.391Q373-783.522 482.13-783.522q107.435 0 202.653 46.283Q780-690.957 842.435-604.391q4.695 7.261 3.63 12.804t-5.761 9.674-11.174 3.848-11.043-7.544q-57.305-80.304-146.544-123.456T482.13-752.782q-100.739 0-188.76 43.369-88.022 43.37-145.196 124.37-5.695 7.261-11.739 8.543-6.044 1.283-11.174-1.848M606.218-73.087Q495.304-97.957 428.804-177.5t-66.5-191.239q0-49.261 35.066-83.522 35.065-34.261 84.76-34.261t85.044 33.413T602.522-371q0 36.304 26.674 61.174t63.413 24.869q35.739 0 61.695-24.869Q780.26-334.696 780.26-371q0-119.609-87.826-200.63-87.825-81.022-210.869-81.022T271.261-570.5t-87.26 202.326q0 31.348 5.5 68.435t20.673 77.609q2.566 7.826.283 12.304t-7.544 7.044q-6.261 2.565-12.739 1-6.478-1.566-9.609-9.957-11.304-32.913-18.804-72.978t-7.5-84.022q0-130.131 97.152-223.891 97.152-93.761 230.717-93.761 136 0 232.653 91.413T811.435-371q0 48.261-34.565 82.522-34.566 34.261-84.261 34.261-50.696 0-86.261-33.413-35.566-33.413-35.566-81.109 0-36.739-25.956-62.174t-62.696-25.435q-36.173 0-62.63 25.435-26.456 25.435-26.456 62.174 0 102.869 60.174 172.652t160.956 94.957q7.696 1.434 10.044 6.413 2.348 4.978 1.348 10.674-1.565 6.696-5.978 9.826t-13.37 1.13M248.13-794.782q-7.826 3.695-12.587 1.913-4.761-1.783-7.891-6.479-2.565-3.13-2-10.239t5.826-9.674q57.565-32.696 121.761-48.413t128.891-15.717q65.566 0 128.631 15.717t120.63 45.848q7.261 3.13 8.327 9.391t-1.5 10.957q-3.131 4.696-8.609 7.544-5.479 2.847-12.174-.848Q663-821.782 603.283-837q-59.718-15.217-121.153-15.217-62 0-121 14.217t-113 43.218M377.609-87.478q-58-59.435-88.522-127.413-30.522-67.979-30.522-153.848 0-90.696 65.218-153.957Q389-585.957 482.13-585.957q92.566 0 159.066 62.413 66.5 62.414 66.5 152.544 0 7.826-3.631 12.587t-11.456 4.761q-8.392 0-12.522-4.761T675.956-371q0-78.174-57.108-131.478-57.109-53.304-136.718-53.304t-135.999 54.434q-56.391 54.435-56.391 132.609 0 82.174 26.956 141.891 26.956 59.718 84.391 119.152 5.696 5.696 5.479 11.174-.218 5.479-3.783 9.61-3.696 4.826-11.587 5.478-7.892.652-13.587-6.044m315.043-70.174q-93.087 0-159.565-57.369t-66.478-155.414q0-7.261 3.913-11.956 3.913-4.696 11.174-4.696t11.174 4.696q3.913 4.695 3.913 11.956 0 84.957 58.369 133.783t137.5 48.826q9.131 0 21.261-1.565 12.131-1.566 24-2.435 6.696-.435 11.109 3.478t4.283 8.609q.435 6.261-2.196 10.109-2.63 3.848-8.196 5.413-15.739 5-29.804 5.783-14.065.782-20.457.782" })));
5
+ React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M482.13-783.522q113.131 0 207.066 49.131 93.934 49.13 161.63 143.087l-22.478 19.652q-63-89.13-150.674-134.848Q590-752.217 482.13-752.782q-105.434 0-192.673 45.5T137.348-571.521l-24.609-14.088q64-95.956 159.565-146.935 95.566-50.978 209.826-50.978m0 97.131q136.87 0 233.087 92.13Q811.435-502.13 811.435-371q0 48.826-34.565 82.805-34.566 33.978-84.261 33.978-51.131 0-86.479-33.413t-35.348-81.109q0-36.304-25.739-61.956t-62.913-25.653q-37.608 0-63.347 25.653t-25.739 61.956q0 102.522 60.783 172.044 60.782 69.521 174.869 97.564l-6.826 29.044Q497.391-98.826 429.848-176.608q-67.544-77.783-67.544-192.131 0-48.826 34.848-83.305Q432-486.522 482.13-486.522q50.696 0 85.544 33.913T602.522-371q0 36.304 26.239 61.174t63.848 24.869q37.173 0 62.412-24.869Q780.26-334.696 780.26-371q0-118.174-87.108-199.913t-211.587-81.739q-123.913 0-210.738 82.587t-86.826 201.891q0 37.696 7.717 77.261t23.717 81.87l-29.609 13.522q-16-47-23.782-89.696-7.783-42.696-7.783-83.522 0-130.261 96.935-223.957 96.934-93.695 230.934-93.695m0-197q67.827 0 130.327 16.565T745.044-815l-15.218 27.044q-66-33.131-125.435-48.696-59.434-15.565-122.261-15.565-65.565 0-124.63 15.065t-122.587 48.761l-16.653-25.044q66.522-36.391 130.153-53.174 63.63-16.782 133.717-16.782m0 297.434q98.696 0 162.131 65.761t63.435 166.544h-31.74q0-89.826-54.326-145.978t-139.5-56.152q-80.478 0-136.434 54.369T289.74-368.739q0 81.696 26.652 141.63 26.652 59.935 94.521 129.24L390.826-73.26q-71.696-75.566-101.978-142.48-30.283-66.913-30.283-153 0-90.261 65.283-153.739 65.282-63.479 158.282-63.479Zm51.74 370.436q-34.827-31.131-51.044-72.609-16.217-41.479-16.217-98.957h30.174q0 51.783 14.152 87.5t44.717 62.152q26.87 24.305 62.087 36.957 35.218 12.652 74.913 12.652 6 0 22.153-1.848t38.196-2.022l.608 24.218q-14.565 4.696-31.978 7.261t-28.979 2.565q-46.391 0-86.804-14.717t-71.978-43.152" })));
6
6
  }
@@ -1,3 +1,4 @@
1
- import Fingerprint from './Fingerprint';
2
- declare const FingerprintFilled: typeof Fingerprint;
3
- export default FingerprintFilled;
1
+ import React from 'react';
2
+ export default function FingerprintFilled({ className }: {
3
+ className?: string;
4
+ }): React.JSX.Element;
@@ -1,3 +1,6 @@
1
- import Fingerprint from './Fingerprint';
2
- var FingerprintFilled = Fingerprint;
3
- export default FingerprintFilled;
1
+ import React from 'react';
2
+ export default function FingerprintFilled(_a) {
3
+ var className = _a.className;
4
+ return (React.createElement("svg", { className: className, width: "1em", height: "1em", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -960 960 960" },
5
+ React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M482.13-783.522q113.131 0 207.066 49.131 93.934 49.13 161.63 143.087l-22.478 19.652q-63-89.13-150.674-134.848Q590-752.217 482.13-752.782q-105.434 0-192.673 45.5T137.348-571.521l-24.609-14.088q64-95.956 159.565-146.935 95.566-50.978 209.826-50.978m0 97.131q136.87 0 233.087 92.13Q811.435-502.13 811.435-371q0 48.826-34.565 82.805-34.566 33.978-84.261 33.978-51.131 0-86.479-33.413t-35.348-81.109q0-36.304-25.739-61.956t-62.913-25.653q-37.608 0-63.347 25.653t-25.739 61.956q0 102.522 60.783 172.044 60.782 69.521 174.869 97.564l-6.826 29.044Q497.391-98.826 429.848-176.608q-67.544-77.783-67.544-192.131 0-48.826 34.848-83.305Q432-486.522 482.13-486.522q50.696 0 85.544 33.913T602.522-371q0 36.304 26.239 61.174t63.848 24.869q37.173 0 62.412-24.869Q780.26-334.696 780.26-371q0-118.174-87.108-199.913t-211.587-81.739q-123.913 0-210.738 82.587t-86.826 201.891q0 37.696 7.717 77.261t23.717 81.87l-29.609 13.522q-16-47-23.782-89.696-7.783-42.696-7.783-83.522 0-130.261 96.935-223.957 96.934-93.695 230.934-93.695m0-197q67.827 0 130.327 16.565T745.044-815l-15.218 27.044q-66-33.131-125.435-48.696-59.434-15.565-122.261-15.565-65.565 0-124.63 15.065t-122.587 48.761l-16.653-25.044q66.522-36.391 130.153-53.174 63.63-16.782 133.717-16.782m0 297.434q98.696 0 162.131 65.761t63.435 166.544h-31.74q0-89.826-54.326-145.978t-139.5-56.152q-80.478 0-136.434 54.369T289.74-368.739q0 81.696 26.652 141.63 26.652 59.935 94.521 129.24L390.826-73.26q-71.696-75.566-101.978-142.48-30.283-66.913-30.283-153 0-90.261 65.283-153.739 65.282-63.479 158.282-63.479Zm51.74 370.436q-35.392-31.131-51.327-72.044t-15.934-99.522h30.174q0 52.348 13.869 87.5t45 62.152q26.87 24.305 62.087 36.957 35.218 12.652 74.913 12.652 4.87 0 25.262-2.413t35.087-1.457l.608 24.218q-12.304 4.696-31.413 7.261t-29.544 2.565q-46.391 0-86.804-14.717t-71.978-43.152" })));
6
+ }
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export default function FingerprintOff({ className }: {
3
+ className?: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export default function FingerprintOff(_a) {
3
+ var className = _a.className;
4
+ return (React.createElement("svg", { className: className, width: "1em", height: "1em", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -960 960 960" },
5
+ React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M869.566-51.565 467.348-453.782q-31.869 6.434-52.804 30.304t-20.935 54.739q0 95.261 68.587 168T629.827-99.13l-6.826 29.043Q512.435-96.26 437.935-178.39t-74.5-190.348q0-36.565 22.565-66.131 22.565-29.565 58.565-42.26l-55.782-55.218q-45.739 25-72.109 69.153-26.369 44.152-26.369 94.456 0 70 34.326 142.326T412.044-97.87l-20.653 24.61q-56.782-61.913-94.521-140.848t-37.74-154.631q0-56 28.435-105.631t78.87-79.76l-48.956-49.522q-58.217 32.652-95 99.478t-36.783 135.435q0 39.391 8.566 78.739 8.565 39.348 21.739 80.391l-28.479 13.522q-16-44.043-24.065-87.586t-8.066-85.066q0-73.304 38.348-144.761T295.13-626l-52.347-52.348q-30.696 21.696-56.413 49.457-25.718 27.761-48.457 57.935l-24.609-14.087q21.87-32.305 49.152-61.566Q189.739-675.87 222-699.13L32.043-888.523l23.391-23.391L892.392-74.956zM677.652-367.218q-2.826-63.651-47.347-116.781t-114.26-59.348q-7 0-13 .5t-12 1.5l-40.61-41.175q8.174-1.435 16.131-2.435 7.956-1 16.13-1 92.869 0 156.674 65.631 63.804 65.63 69.456 151.978zM482.13-883.391q62.435 0 130.044 17.347T745.044-815l-15.218 27.044q-64.565-32.131-128.109-48.196-63.543-16.065-119.587-16.065-66.043 0-126.086 15.804T242.827-790.13l-21.914-21.783q56.87-36.87 122.674-54.174t138.543-17.304m0 99.869q109 0 207.479 52.957 98.478 52.956 161.217 139.261l-22.478 19.652q-57.609-81.043-150.609-130.804T482.13-752.782q-43.478 0-85.738 9.152-42.261 9.152-81.869 25.195l-23.479-22.348q44.304-21.304 92.826-32.022t98.26-10.717m0 97.131q139.131 0 234.218 89.413T811.435-381q0 32.609-13.891 60.913t-39.935 44.304l-21.913-22.913q20.913-12.305 32.738-34.131Q780.26-354.652 780.26-381q0-113.609-84.912-192.913t-213.783-79.304q-22.913 0-44.608 3.935t-42.608 11.239l-26.609-27.175q28.304-10.304 56.76-15.739 28.457-5.434 57.63-5.434m212.783 528.739q-92.695 0-159.087-65.543T467.739-383.13h30.174q1.131 81.434 58.914 138.369 57.782 56.935 138.086 56.935 14 0 29.435-2t27.87-6l10.783 27.348q-15.131 5.13-33.261 7.978t-34.827 2.848" })));
6
+ }
@@ -0,0 +1,3 @@
1
+ import FingerprintOff from './FingerprintOff';
2
+ declare const FingerprintOffFilled: typeof FingerprintOff;
3
+ export default FingerprintOffFilled;
@@ -0,0 +1,3 @@
1
+ import FingerprintOff from './FingerprintOff';
2
+ var FingerprintOffFilled = FingerprintOff;
3
+ export default FingerprintOffFilled;
@@ -2,5 +2,5 @@ import React from 'react';
2
2
  export default function FootBones(_a) {
3
3
  var className = _a.className;
4
4
  return (React.createElement("svg", { className: className, width: "1em", height: "1em", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -960 960 960" },
5
- React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M152.934-153.608q-31.748 0-53.559-21.811-21.81-21.81-21.81-53.841v-40q0-31.466 21.81-53.277 21.811-21.811 53.559-21.811 31.749 0 53.56 21.811 21.81 21.811 21.81 53.277v40q0 32.031-21.81 53.841-21.811 21.811-53.56 21.811M842-164.348h-53.174q-10.055 0-15.789-7.978-5.733-7.978-3.167-17.239l9-33.696q2-6.696 8.317-11.044 6.318-4.347 13.9-3.347l46.043 7q12.131 2.565 20.327 11.261 8.195 8.695 8.195 21.304 0 13.417-10.136 23.578T842-164.348m-157.348-17.826L588-213.217q-8.261-2.565-12.391-10.826t0-15.957l27.13-60.13q3.565-8.261 11.544-11.044 7.978-2.783 16.239 2.348l80.087 47.608q5.565 3.131 7.913 9.074t1.348 12.014l-9 43q-2 9.26-9.885 13.391-7.884 4.13-16.333 1.565m-187.696-70.565-62.26-15.609Q423-271.913 415.37-281.165T407.739-303v-36.791q0-18.566 5.565-35.3 5.566-16.735 18.696-28.3 6.13-5.707 13.826-7.136t15.392 2.136l83.825 48.043q6.696 4.13 8.196 10.761t-1.065 13.891l-31.565 72.131q-2.389 6.565-9.391 9.978-7.001 3.413-14.262.848M304-284.348q-7.547 0-12.913-5.93-5.366-5.931-7.739-15.157-9-45.739-43.764-72.326-34.763-26.587-79.584-26.587h-20q-6.696 0-11.174-4.478T124.348-420t4.478-11.174T140-435.652h36q20.435 0 39.587-5.218 19.152-5.217 36.152-15.652 4.031-2.565 8.776-2.565 4.746 0 9.442 2.565 20.434 12.435 38.065 16.652t34.065 4.218q11.466 0 17.776 9.543 6.311 9.544 2.311 20.37-6.87 15.435-10.652 32.381-3.783 16.946-3.783 33.358v35.565q0 7.583-5.857 13.835-5.856 6.252-14.23 6.252zM174.133-495.652q-40.33 0-67.884-26.581t-27.554-66.43q0-19.571 6.783-37.781 6.782-18.209 19.913-30.774l53.304-53.305v-95.129h70.74v94.39q0 14.889-6.113 28.706-6.112 13.817-16.583 24.251l-49.456 50.134q-3.939 3.928-5.894 8.32-1.954 4.393-1.954 9.285 0 9.371 6.676 16.207t15.824 6.836q4.586 0 19.021-8.173 13.782-11.44 30.369-19.068 16.588-7.628 38.675-7.628t38.278 7.628q16.19 7.628 29.635 19.068 4.435 3.869 9.031 6.021 4.595 2.152 10.465 2.152 9.417 0 16.004-6.786T370-590.396q0-5.035-1.939-9.429t-5.859-8.323l-48.941-50.157q-11.131-11.13-17.478-24.478t-6.348-28.479v-94.39h71.305v95.129l53.184 53.185q13.25 13.25 20.033 31.229t6.783 37.804q0 39.389-27.488 66.021t-67.72 26.632q-18.01-1-33.711-8.485t-29.125-18.646q-5-4-10.848-7t-12.413-3q-5.305 0-22.696 10-13.565 11.565-29.185 18.83t-33.421 8.301m85.302-310" })));
5
+ React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M152.934-153.608q-31.748 0-53.559-21.811-21.81-21.81-21.81-53.841v-40q0-31.466 21.81-53.277 21.811-21.811 53.559-21.811 31.749 0 53.56 21.811 21.81 21.811 21.81 53.277v40q0 32.031-21.81 53.841-21.811 21.811-53.56 21.811M842-164.348h-53.174q-10.055 0-15.789-7.978-5.733-7.978-3.167-17.239l9-33.696q2-6.696 8.317-11.044 6.318-4.347 13.9-3.347l46.043 7q12.131 2.565 20.327 11.261 8.195 8.695 8.195 21.304 0 13.417-10.136 23.578T842-164.348m-157.348-17.826L588-213.217q-8.261-2.565-12.391-10.826t0-15.957l27.13-60.13q3.565-8.261 11.544-11.044 7.978-2.783 16.239 2.348l80.087 47.608q5.565 3.131 7.913 9.074t1.348 12.014l-9 43q-2 9.26-9.885 13.391-7.884 4.13-16.333 1.565m-187.696-70.565-62.26-15.609Q423-271.913 415.37-281.165T407.739-303v-36.791q0-18.566 5.565-35.3 5.566-16.735 18.696-28.3 6.13-5.707 13.826-7.136t15.392 2.136l83.825 48.043q6.696 4.13 8.196 10.761t-1.065 13.891l-31.565 72.131q-2.389 6.565-9.391 9.978-7.001 3.413-14.262.848M304-284.348q-7.547 0-12.913-5.93-5.366-5.931-7.739-15.157-9-45.739-43.764-72.326-34.763-26.587-79.584-26.587h-20q-6.696 0-11.174-4.478T124.348-420t4.478-11.174T140-435.652h36q20.435 0 39.587-5.218 19.152-5.217 36.152-15.652 4.031-2.565 8.776-2.565 4.746 0 9.442 2.565 20.434 12.435 38.065 16.652t34.065 4.218q11.466 0 17.776 9.543 6.311 9.544 2.311 20.37-6.87 15.435-10.652 32.381-3.783 16.946-3.783 33.358v35.565q0 7.583-5.857 13.835-5.856 6.252-14.23 6.252zM174.133-495.652q-40.33 0-67.884-26.581t-27.554-66.43q0-19.571 6.783-37.781 6.782-18.209 19.913-30.774l53.304-53.305V-770q0-15.106 10.274-25.379t25.379-10.273q14.865 0 24.976 10.273T229.435-770v58.738q0 14.889-6.113 28.706-6.112 13.817-16.583 24.251l-49.456 50.134q-3.939 3.928-5.894 8.32-1.954 4.393-1.954 9.285 0 9.371 6.676 16.207t15.824 6.836q4.586 0 19.021-8.173 13.782-11.44 30.369-19.068 16.588-7.628 38.675-7.628t38.278 7.628q16.19 7.628 29.635 19.068 4.435 3.869 9.031 6.021 4.595 2.152 10.465 2.152 9.417 0 16.004-6.786T370-590.396q0-5.035-1.939-9.429t-5.859-8.323l-48.941-50.157q-11.131-11.13-17.478-24.478t-6.348-28.479V-770q0-15.106 10.305-25.379t25.456-10.273 25.348 10.273T360.74-770v59.477l53.184 53.185q13.25 13.25 20.033 31.229t6.783 37.804q0 39.389-27.488 66.021t-67.72 26.632q-18.01-1-33.711-8.485t-29.125-18.646q-5-4-10.848-7t-12.413-3q-5.305 0-22.696 10-13.565 11.565-29.185 18.83t-33.421 8.301m85.302-310" })));
6
6
  }
@@ -2,5 +2,5 @@ import React from 'react';
2
2
  export default function FootBonesFilled(_a) {
3
3
  var className = _a.className;
4
4
  return (React.createElement("svg", { className: className, width: "1em", height: "1em", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -960 960 960" },
5
- React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M152.652-153.608q-31.261 0-53.174-21.913T77.565-229.26v-40q0-31.261 21.913-53.174 21.913-21.914 53.174-21.914 31.826 0 53.739 21.914 21.913 21.913 21.913 53.174v40q0 31.826-21.913 53.739t-53.739 21.913M842-164.348h-53.174q-9.696 0-15.609-7.978t-3.347-17.239l9-33.696q2-6.696 8.26-11.044 6.261-4.347 13.957-3.347l46.043 7q12.131 2.565 20.327 11.261 8.195 8.695 8.195 21.391 0 13.261-10.195 23.457-10.196 10.195-23.457 10.195m-157.348-17.826L588-213.217q-8.261-2.565-12.391-10.826t0-15.957l27.13-60.13q3.565-8.261 11.544-11.044 7.978-2.783 16.239 2.348l80.087 47.608q5.565 3.131 7.913 9.044t1.348 12.044l-9 43q-2 9.26-9.979 13.391-7.978 4.13-16.239 1.565m-187.696-70.565-62.26-15.609Q423-271.913 415.37-281.109T407.739-303v-37q0-18.13 5.565-34.978T432-403.391q6.13-5.566 13.826-7.066t15.392 2.066l83.825 48.043q6.696 4.13 8.196 10.761t-1.065 13.891l-31.565 72.131q-2.566 6.695-9.479 10.043t-14.174.783M304-284.348q-7.696 0-12.891-5.913t-7.761-15.174q-9-45.739-43.653-72.326T160-404.348h-20q-6.696 0-11.174-4.478T124.348-420t4.478-11.174T140-435.652h36q20.435 0 39.587-5.218 19.152-5.217 36.152-15.652 4.131-2.565 8.826-2.565t9.392 2.565q20.434 12.435 38.065 16.652t34.065 4.218q11.261 0 17.674 9.543 6.413 9.544 2.413 20.37-6.87 15.435-10.652 32.369-3.783 16.935-3.783 33.37v35.565q0 7.696-5.913 13.892t-14.174 6.195zM174.348-495.652q-40.827 0-68.24-26.696T78.695-588.87q0-19.261 6.783-37.522 6.782-18.261 19.913-30.826l53.304-53.305v-95.129H360.74v95.129l53.304 53.305q13.13 13.13 19.913 31.109t6.783 37.804q0 39.261-27.413 65.957-27.414 26.696-68.24 26.696-17.565-1-33.196-8.566-15.63-7.565-29.195-18.565-5-4-10.848-7t-12.413-3q-5.305 0-22.696 10-13.565 11.565-29.196 18.848-15.63 7.283-33.195 8.283" })));
5
+ React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M152.652-153.608q-31.261 0-53.174-21.913T77.565-229.26v-40q0-31.261 21.913-53.174 21.913-21.914 53.174-21.914 31.826 0 53.739 21.914 21.913 21.913 21.913 53.174v40q0 31.826-21.913 53.739t-53.739 21.913M842-164.348h-53.174q-9.696 0-15.609-7.978t-3.347-17.239l9-33.696q2-6.696 8.26-11.044 6.261-4.347 13.957-3.347l46.043 7q12.131 2.565 20.327 11.261 8.195 8.695 8.195 21.391 0 13.261-10.195 23.457-10.196 10.195-23.457 10.195m-157.348-17.826L588-213.217q-8.261-2.565-12.391-10.826t0-15.957l27.13-60.13q3.565-8.261 11.544-11.044 7.978-2.783 16.239 2.348l80.087 47.608q5.565 3.131 7.913 9.044t1.348 12.044l-9 43q-2 9.26-9.979 13.391-7.978 4.13-16.239 1.565m-187.696-70.565-62.26-15.609Q423-271.913 415.37-281.109T407.739-303v-37q0-18.13 5.565-34.978T432-403.391q6.13-5.566 13.826-7.066t15.392 2.066l83.825 48.043q6.696 4.13 8.196 10.761t-1.065 13.891l-31.565 72.131q-2.566 6.695-9.479 10.043t-14.174.783M304-284.348q-7.696 0-12.891-5.913t-7.761-15.174q-9-45.739-43.653-72.326T160-404.348h-20q-6.696 0-11.174-4.478T124.348-420t4.478-11.174T140-435.652h36q20.435 0 39.587-5.218 19.152-5.217 36.152-15.652 4.131-2.565 8.826-2.565t9.392 2.565q20.434 12.435 38.065 16.652t34.065 4.218q11.261 0 17.674 9.543 6.413 9.544 2.413 20.37-6.87 15.435-10.652 32.369-3.783 16.935-3.783 33.37v35.565q0 7.696-5.913 13.892t-14.174 6.195zM174.348-495.652q-40.827 0-68.24-26.696T78.695-588.87q0-19.261 6.783-37.522 6.782-18.261 19.913-30.826l53.304-53.305v-55.52q0-16.957 11.326-28.283t28.283-11.326H321.13q16.957 0 28.283 11.326t11.327 28.283v55.52l53.304 53.305q13.13 13.13 19.913 31.109t6.783 37.804q0 39.261-27.413 65.957-27.414 26.696-68.24 26.696-17.565-1-33.196-8.566-15.63-7.565-29.195-18.565-5-4-10.848-7t-12.413-3q-5.305 0-22.696 10-13.565 11.565-29.196 18.848-15.63 7.283-33.195 8.283" })));
6
6
  }
@@ -2,5 +2,5 @@ import React from 'react';
2
2
  export default function Function(_a) {
3
3
  var className = _a.className;
4
4
  return (React.createElement("svg", { className: className, width: "1em", height: "1em", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -960 960 960" },
5
- React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M394.652-229.26v-71.305h65.218l124.956-137.87-124.917-139.304h-77.431L312.043-215.13q-9.695 51.217-40.64 79.957t-76.752 28.739q-44.957 0-75.283-26.621t-30.326-65.293q0-29.061 16.865-47.357Q122.773-264 149.692-264q23.959 0 39.155 14.261t15.196 37.087q0 10.435-4.218 19.087-4.217 8.652-11.652 14.087 3.435 2 7.935 3t10.065 1q12.435.565 21.435-11.37t12.435-30.804l70.13-360.087H177.39v-70.74h146.044l19.87-93.564q11.261-53.479 42.34-83.066t77.782-29.587q44.792 0 74.401 25.978t29.608 64.805q0 30.219-16.978 48.501t-44.071 18.282q-23.125 0-38.538-13.479t-15.413-35.87q0-8.618 3.717-17.804t9.152-14.369q-2-2-6-3.5t-8-1.5q-12.434-.566-22.217 11.293t-13.217 29.446l-19.131 94.434H599.87v70.74h-45.304l80.174 90.913 75.173-90.913h-46.304v-70.74h204.653v70.74H804.61L680.088-438.435l125.087 137.87h63.087v71.305H663.609v-71.305h46.304l-77.173-86.783-79.739 86.783h46.869v71.305z" })));
5
+ React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M194.651-106.434q-44.957 0-75.283-26.621t-30.326-65.293q0-29.061 16.865-47.357Q122.773-264 149.692-264q23.959 0 39.155 14.261t15.196 37.087q0 10.184-4.218 19.087-4.217 8.903-11.652 14.087 3.435 2 7.935 3t10.065 1q12.435.565 21.435-11.37t12.435-30.804l70.13-360.087h-97.696q-15.261 0-25.174-9.913t-9.913-25.065 9.913-25.457 25.174-10.305h110.957l19.87-93.564q11.261-53.479 42.34-83.066t77.782-29.587q44.792 0 74.401 25.978t29.608 64.805q0 30.219-16.978 48.501t-44.071 18.282q-23.125 0-38.538-13.479t-15.413-35.964q0-8.775 3.717-17.775t9.152-14.304q-2-2-6-3.5t-8-1.5q-12.434-.566-22.217 11.293t-13.217 29.446l-19.131 94.434h167.319q15.421 0 25.616 10.289t10.196 25.415q0 13.514-8.217 22.862t-21.218 11.043h-17l81.305 92.044 76.869-92.044h-18q-13-1.695-21.5-10.98t-8.5-22.945q0-15.292 9.913-25.488t25.389-10.196h134.264q14.865 0 24.976 10.305t10.111 25.457-10.111 25.065-24.976 9.913H804.61L680.088-438.435l125.087 137.87h28q14.865 0 24.976 10.305t10.111 25.456-10.111 25.348q-10.111 10.196-24.976 10.196H698.911q-15.476 0-25.389-10.289t-9.913-25.415q0-13.514 8.5-23.145t21.5-11.326h18l-78.869-87.913-80.87 87.913h18q13 1.696 21.5 11.326t8.5 23.145q0 15.127-10.273 25.415-10.274 10.289-25.379 10.289H430.449q-15.406 0-25.601-10.305-10.196-10.305-10.196-25.457t10.273-25.348q10.274-10.195 25.379-10.195h29.566l124.956-137.87-124.917-139.304h-77.431L312.043-215.13q-9.695 51.217-40.64 79.957t-76.752 28.739" })));
6
6
  }
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export default function Password2({ className }: {
3
+ className?: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export default function Password2(_a) {
3
+ var className = _a.className;
4
+ return (React.createElement("svg", { className: className, width: "1em", height: "1em", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -960 960 960" },
5
+ React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M147.808-458.522q-51.24 0-86.872-35.868-35.632-35.867-35.632-87.107t35.81-86.872q35.809-35.632 86.965-35.632t86.648 35.867q35.491 35.868 35.491 87.108 0 51.239-35.703 86.872-35.703 35.632-86.707 35.632m-81.94 272.653v-78.653h828.828v78.653H65.869ZM479.4-459.522q-51.157 0-86.648-35.507-35.491-35.508-35.491-86.233 0-51.558 35.703-87.649t86.707-36.09q51.24 0 86.872 36.09t35.632 87.649q0 50.725-35.809 86.233-35.81 35.507-86.966 35.507m332.888 0q-51.24 0-86.872-35.507-35.633-35.508-35.633-86.233 0-51.558 35.81-87.649 35.809-36.09 86.966-36.09t86.647 36.09 35.491 87.649q0 50.725-35.702 86.233-35.703 35.507-86.707 35.507" })));
6
+ }
@@ -0,0 +1,3 @@
1
+ import Password2 from './Password2';
2
+ declare const Password2Filled: typeof Password2;
3
+ export default Password2Filled;
@@ -0,0 +1,3 @@
1
+ import Password2 from './Password2';
2
+ var Password2Filled = Password2;
3
+ export default Password2Filled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export default function Password2Off({ className }: {
3
+ className?: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export default function Password2Off(_a) {
3
+ var className = _a.className;
4
+ return (React.createElement("svg", { className: className, width: "1em", height: "1em", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -960 960 960" },
5
+ React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M147.808-458.522q-51.24 0-86.872-35.868-35.632-35.867-35.632-87.107t35.81-86.872q35.809-35.632 86.965-35.632t86.648 35.867q35.491 35.868 35.491 87.108 0 51.239-35.703 86.872-35.703 35.632-86.707 35.632m664.479-1q-51.24 0-86.872-35.507-35.633-35.508-35.633-86.233 0-51.558 35.81-87.649 35.809-36.09 86.966-36.09t86.647 36.09 35.491 87.649q0 50.725-35.702 86.233-35.703 35.507-86.707 35.507M557.13-485 382.173-659.392q17.261-20.957 42.718-33.283t54.544-12.326q51.141 0 86.94 36.09t35.799 87.649q0 29.088-12.326 54.044Q577.522-502.261 557.13-485M804.956-56 675.087-185.869H65.869v-78.653h530L58.478-802.478 106-850l746.478 746.478z" })));
6
+ }
@@ -0,0 +1,3 @@
1
+ import Password2Off from './Password2Off';
2
+ declare const Password2OffFilled: typeof Password2Off;
3
+ export default Password2OffFilled;
@@ -0,0 +1,3 @@
1
+ import Password2Off from './Password2Off';
2
+ var Password2OffFilled = Password2Off;
3
+ export default Password2OffFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export default function PokerChip({ className }: {
3
+ className?: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export default function PokerChip(_a) {
3
+ var className = _a.className;
4
+ return (React.createElement("svg", { className: className, width: "1em", height: "1em", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -960 960 960" },
5
+ React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M480-65.869q-85.826 0-161.37-32.63-75.543-32.631-131.522-88.609-55.978-55.979-88.609-131.522Q65.87-394.174 65.87-480T98.5-641.37q32.631-75.543 88.609-131.804 55.979-56.261 131.522-88.892 75.544-32.63 161.37-32.63t161.37 32.63 131.804 88.892q56.261 56.261 88.892 131.804T894.697-480q0 85.826-32.63 161.37-32.631 75.543-88.892 131.522T641.371-98.499Q565.826-65.87 480-65.87Zm-32.826-68.348v-61.043q-41.565-5-78.131-20.283-36.565-15.283-67.13-39.848l-43.174 42.609q39 33 86.435 53.282 47.435 20.283 102 25.283m66.783-.565q54-5 101.152-24.718 47.152-19.717 86.717-52.717l-43.739-42.609q-30.565 24.566-66.848 39.566-36.282 15-77.282 20zM480-259.043q92.696 0 157.109-64.413Q701.522-387.87 701.522-480q0-92.696-64.413-157.109T480-701.522q-92.13 0-156.544 64.413Q259.043-572.696 259.043-480q0 92.13 64.413 156.544Q387.87-259.043 480-259.043m268.348.304q32.435-39 52.435-86.435t25-101.435h-60.478q-5 41-20.283 77.566-15.282 36.565-39.282 67.13zm-536.696-1.131 42.608-42.608q-24-30.565-39-66.848t-20-77.283h-60.478q5 53.435 24.718 100.587 19.717 47.152 52.152 86.152M480-330.043 366.609-480 480-630.522 592.957-480zM134.782-513.391h60.478q5-41.566 20-78.131t39.566-67.13l-42.609-43.174q-33 39.565-52.717 87-19.718 47.435-24.718 101.435m630.523 0h60.478q-5-54-25-101.718-20-47.717-52.435-86.717l-43.174 42.608q24.566 31.131 39.848 67.696t20.283 78.131M301.348-705.74q30.565-24 67.413-39.282 36.848-15.283 78.413-20.283v-61.043q-54 5-101.718 25.282-47.717 20.283-86.717 52.718zm356.174-.565 43.739-42.608q-39-32.435-86.435-52.153t-100.869-24.717v60.478q41 5 77 20t66.565 39" })));
6
+ }
@@ -0,0 +1,3 @@
1
+ import PokerChip from './PokerChip';
2
+ declare const PokerChipFilled: typeof PokerChip;
3
+ export default PokerChipFilled;
@@ -0,0 +1,3 @@
1
+ import PokerChip from './PokerChip';
2
+ var PokerChipFilled = PokerChip;
3
+ export default PokerChipFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export default function SmartCardReader({ className }: {
3
+ className?: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export default function SmartCardReader(_a) {
3
+ var className = _a.className;
4
+ return (React.createElement("svg", { className: className, width: "1em", height: "1em", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -960 960 960" },
5
+ React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M65.869-56.26v-219.002h828.827V-56.26zm79.218-79.783h669.826v-60H145.087zm47.173-210.175v-548.478h576.045v548.478h-78.653v-469.26H270.913v469.26zm138.653-62.217h16.783q41 0 65-42.075t24-110.925q0-70-24-112t-65-42h-16.783zm233.47-82q29.487 0 50.487-20.796 21-20.797 21-50 0-29.769-20.797-50.486-20.796-20.718-50-20.718-29.769 0-50.486 20.514t-20.717 50 20.513 50.486 50 21m-83.818-90.695" })));
6
+ }
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export default function SmartCardReaderFilled({ className }: {
3
+ className?: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export default function SmartCardReaderFilled(_a) {
3
+ var className = _a.className;
4
+ return (React.createElement("svg", { className: className, width: "1em", height: "1em", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -960 960 960" },
5
+ React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M65.869-56.26v-219.002h828.827V-56.26zM192.26-346.218v-548.478h576.045v548.478zm138.653-62.217h16.783q41 0 65-42.075t24-110.925q0-70-24-112t-65-42h-16.783zm231.784-73.521q33.495 0 57.552-23.623 24.056-23.622 24.056-57.118 0-33.495-23.853-57.552-23.853-24.056-57.348-24.056t-57.322 23.853-23.826 57.348 23.623 57.322 57.118 23.826" })));
6
+ }
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export default function SmartCardReaderOff({ className }: {
3
+ className?: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export default function SmartCardReaderOff(_a) {
3
+ var className = _a.className;
4
+ return (React.createElement("svg", { className: className, width: "1em", height: "1em", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -960 960 960" },
5
+ React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M768.305-943.566v548.479h-61.609l-17.044-17.609v-451.652H238.001l-78.653-79.218zM558.522-543.261l-73.261-74.391q.565-26.174 20.435-45.196t47.174-19.022q29.287 0 50.143 20.857t20.857 50.143q0 27.305-19.305 47.174-19.304 19.87-46.043 20.435m-227.609 84.826v-226.304l104.348 103.782q-5.845 56.503-28.74 89.513-22.895 33.009-58.825 33.009zM145.087-184.913h591.174l-60-60H145.087zM839.783-81.391l-24.304-24.303H65.869v-219.002h530.608L270.913-649.695v254.608H192.26v-333.826L23.739-897.435l47.522-47.522 816.044 816.609zM399-523.174" })));
6
+ }
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export default function SmartCardReaderOffFilled({ className }: {
3
+ className?: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export default function SmartCardReaderOffFilled(_a) {
3
+ var className = _a.className;
4
+ return (React.createElement("svg", { className: className, width: "1em", height: "1em", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -960 960 960" },
5
+ React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "m839.783-81.39-24.304-24.304H65.869v-219.002h530.608l-70.39-70.391H192.26v-333.826L23.739-897.435l47.522-47.522 816.044 816.609zm-71.478-862.176v548.479h-61.609L559.652-542.13q26.174-1.131 45.196-21.283t19.022-46.891q0-29-21-50.283t-50-21.283q-27.305 0-47.174 19.022-19.87 19.022-20.435 45.196L159.348-943.566zM330.913-458.435h16.783q22.434 0 38.869-12.152T415-505.609l-84.087-84.086z" })));
6
+ }
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export default function TextUp({ className }: {
3
+ className?: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export default function TextUp(_a) {
3
+ var className = _a.className;
4
+ return (React.createElement("svg", { className: className, width: "1em", height: "1em", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -960 960 960" },
5
+ React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M423.608-186.999V-260h426.001v73.001zM603.217-360v-273.565l-70.608 70.609-46.522-46.522L636.609-760 787.13-609.478l-46.521 46.522-71.174-70.609V-360zm-492.826 0 139.652-355.478h49.913L440.173-360h-54.74l-35.043-94.913H198.478L163.435-360zm101.522-136h126.173l-61.087-165.565h-4z" })));
6
+ }
@@ -0,0 +1,3 @@
1
+ import TextUp from './TextUp';
2
+ declare const TextUpFilled: typeof TextUp;
3
+ export default TextUpFilled;
@@ -0,0 +1,3 @@
1
+ import TextUp from './TextUp';
2
+ var TextUpFilled = TextUp;
3
+ export default TextUpFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export default function Unknown7({ className }: {
3
+ className?: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export default function Unknown7(_a) {
3
+ var className = _a.className;
4
+ return (React.createElement("svg", { className: className, width: "1em", height: "1em", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -960 960 960" },
5
+ React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M423.608-186.999V-260h426.001v73.001zM603.217-360v-273.565l-70.608 70.609-46.522-46.522L636.609-760 787.13-609.478l-46.521 46.522-71.174-70.609V-360zm-492.826 0 139.652-355.478h49.913L440.173-360h-54.74l-35.043-94.913H198.478L163.435-360zm101.522-136h126.173l-61.087-165.565h-4z" })));
6
+ }
@@ -0,0 +1,3 @@
1
+ import Unknown7 from './Unknown7';
2
+ declare const Unknown7Filled: typeof Unknown7;
3
+ export default Unknown7Filled;
@@ -0,0 +1,3 @@
1
+ import Unknown7 from './Unknown7';
2
+ var Unknown7Filled = Unknown7;
3
+ export default Unknown7Filled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export default function Vo2Max({ className }: {
3
+ className?: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export default function Vo2Max(_a) {
3
+ var className = _a.className;
4
+ return (React.createElement("svg", { className: className, width: "1em", height: "1em", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -960 960 960" },
5
+ React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M23.043-145.869v-434.783l287.391-229.261v-123.218h79.218v123.218l286.957 228.826v150.435h-79.218v-113.391l-127.173-99v497.174h-77.653v-558.87l-42.522-36.217-42.521 36.217-.565 558.87zm79.218-78.653h126.043l.565-418.521-126.608 100zm435.957 78.653v-234.783h173.087v234.783zm54.783-54.783h63.521v-125.217h-63.521zM751.305-65.869v-144h130.869v-48H751.305v-54.783h185.652v144H806.088v48h130.869v54.783zM534.304-433.782" })));
6
+ }
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export default function Vo2MaxFilled({ className }: {
3
+ className?: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export default function Vo2MaxFilled(_a) {
3
+ var className = _a.className;
4
+ return (React.createElement("svg", { className: className, width: "1em", height: "1em", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -960 960 960" },
5
+ React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M538.218-145.869v-234.783h173.087v234.783zm54.783-54.783h63.521v-125.217h-63.521zM751.305-65.869v-144h130.869v-48H751.305v-54.783h185.652v144H806.088v48h130.869v54.783zm-728.262-80v-434.783l287.391-229.261v-123.218h79.218v123.218l286.957 228.826v150.435H470.218v284.783h-77.653v-558.87l-42.522-36.217-42.521 36.217-.565 558.87z" })));
6
+ }
package/dist/index.d.ts CHANGED
@@ -69,6 +69,8 @@ export { default as AddCircle } from './components/AddCircle';
69
69
  export { default as AddCircleFilled } from './components/AddCircleFilled';
70
70
  export { default as AddComment } from './components/AddComment';
71
71
  export { default as AddCommentFilled } from './components/AddCommentFilled';
72
+ export { default as AddDiamond } from './components/AddDiamond';
73
+ export { default as AddDiamondFilled } from './components/AddDiamondFilled';
72
74
  export { default as AddFilled } from './components/AddFilled';
73
75
  export { default as AddHome } from './components/AddHome';
74
76
  export { default as AddHomeFilled } from './components/AddHomeFilled';
@@ -1237,9 +1239,13 @@ export { default as ContractEdit } from './components/ContractEdit';
1237
1239
  export { default as ContractEditFilled } from './components/ContractEditFilled';
1238
1240
  export { default as ContractFilled } from './components/ContractFilled';
1239
1241
  export { default as Contrast } from './components/Contrast';
1242
+ export { default as ContrastCircle } from './components/ContrastCircle';
1243
+ export { default as ContrastCircleFilled } from './components/ContrastCircleFilled';
1240
1244
  export { default as ContrastFilled } from './components/ContrastFilled';
1241
1245
  export { default as ContrastRtlOff } from './components/ContrastRtlOff';
1242
1246
  export { default as ContrastRtlOffFilled } from './components/ContrastRtlOffFilled';
1247
+ export { default as ContrastSquare } from './components/ContrastSquare';
1248
+ export { default as ContrastSquareFilled } from './components/ContrastSquareFilled';
1243
1249
  export { default as ControlCamera } from './components/ControlCamera';
1244
1250
  export { default as ControlCameraFilled } from './components/ControlCameraFilled';
1245
1251
  export { default as ControlPointDuplicate } from './components/ControlPointDuplicate';
@@ -2118,6 +2124,8 @@ export { default as FindReplace } from './components/FindReplace';
2118
2124
  export { default as FindReplaceFilled } from './components/FindReplaceFilled';
2119
2125
  export { default as Fingerprint } from './components/Fingerprint';
2120
2126
  export { default as FingerprintFilled } from './components/FingerprintFilled';
2127
+ export { default as FingerprintOff } from './components/FingerprintOff';
2128
+ export { default as FingerprintOffFilled } from './components/FingerprintOffFilled';
2121
2129
  export { default as FireExtinguisher } from './components/FireExtinguisher';
2122
2130
  export { default as FireExtinguisherFilled } from './components/FireExtinguisherFilled';
2123
2131
  export { default as FireHydrant } from './components/FireHydrant';
@@ -4013,6 +4021,10 @@ export { default as PartyModeFilled } from './components/PartyModeFilled';
4013
4021
  export { default as Passkey } from './components/Passkey';
4014
4022
  export { default as PasskeyFilled } from './components/PasskeyFilled';
4015
4023
  export { default as Password } from './components/Password';
4024
+ export { default as Password2 } from './components/Password2';
4025
+ export { default as Password2Filled } from './components/Password2Filled';
4026
+ export { default as Password2Off } from './components/Password2Off';
4027
+ export { default as Password2OffFilled } from './components/Password2OffFilled';
4016
4028
  export { default as PasswordFilled } from './components/PasswordFilled';
4017
4029
  export { default as PatientList } from './components/PatientList';
4018
4030
  export { default as PatientListFilled } from './components/PatientListFilled';
@@ -4278,6 +4290,8 @@ export { default as PointOfSale } from './components/PointOfSale';
4278
4290
  export { default as PointOfSaleFilled } from './components/PointOfSaleFilled';
4279
4291
  export { default as PointScan } from './components/PointScan';
4280
4292
  export { default as PointScanFilled } from './components/PointScanFilled';
4293
+ export { default as PokerChip } from './components/PokerChip';
4294
+ export { default as PokerChipFilled } from './components/PokerChipFilled';
4281
4295
  export { default as Policy } from './components/Policy';
4282
4296
  export { default as PolicyFilled } from './components/PolicyFilled';
4283
4297
  export { default as Polyline } from './components/Polyline';
@@ -5096,6 +5110,10 @@ export { default as Slideshow } from './components/Slideshow';
5096
5110
  export { default as SlideshowFilled } from './components/SlideshowFilled';
5097
5111
  export { default as SlowMotionVideo } from './components/SlowMotionVideo';
5098
5112
  export { default as SlowMotionVideoFilled } from './components/SlowMotionVideoFilled';
5113
+ export { default as SmartCardReader } from './components/SmartCardReader';
5114
+ export { default as SmartCardReaderFilled } from './components/SmartCardReaderFilled';
5115
+ export { default as SmartCardReaderOff } from './components/SmartCardReaderOff';
5116
+ export { default as SmartCardReaderOffFilled } from './components/SmartCardReaderOffFilled';
5099
5117
  export { default as SmartDisplay } from './components/SmartDisplay';
5100
5118
  export { default as SmartDisplayFilled } from './components/SmartDisplayFilled';
5101
5119
  export { default as SmartOutlet } from './components/SmartOutlet';
@@ -5666,6 +5684,8 @@ export { default as TextSnippet } from './components/TextSnippet';
5666
5684
  export { default as TextSnippetFilled } from './components/TextSnippetFilled';
5667
5685
  export { default as TextToSpeech } from './components/TextToSpeech';
5668
5686
  export { default as TextToSpeechFilled } from './components/TextToSpeechFilled';
5687
+ export { default as TextUp } from './components/TextUp';
5688
+ export { default as TextUpFilled } from './components/TextUpFilled';
5669
5689
  export { default as Texture } from './components/Texture';
5670
5690
  export { default as TextureAdd } from './components/TextureAdd';
5671
5691
  export { default as TextureAddFilled } from './components/TextureAddFilled';
@@ -5942,6 +5962,8 @@ export { default as Unknown2 } from './components/Unknown2';
5942
5962
  export { default as Unknown2Filled } from './components/Unknown2Filled';
5943
5963
  export { default as Unknown5 } from './components/Unknown5';
5944
5964
  export { default as Unknown5Filled } from './components/Unknown5Filled';
5965
+ export { default as Unknown7 } from './components/Unknown7';
5966
+ export { default as Unknown7Filled } from './components/Unknown7Filled';
5945
5967
  export { default as UnknownDocument } from './components/UnknownDocument';
5946
5968
  export { default as UnknownDocumentFilled } from './components/UnknownDocumentFilled';
5947
5969
  export { default as UnknownMed } from './components/UnknownMed';
@@ -6102,6 +6124,8 @@ export { default as VisibilityOff } from './components/VisibilityOff';
6102
6124
  export { default as VisibilityOffFilled } from './components/VisibilityOffFilled';
6103
6125
  export { default as VitalSigns } from './components/VitalSigns';
6104
6126
  export { default as VitalSignsFilled } from './components/VitalSignsFilled';
6127
+ export { default as Vo2Max } from './components/Vo2Max';
6128
+ export { default as Vo2MaxFilled } from './components/Vo2MaxFilled';
6105
6129
  export { default as VoiceChat } from './components/VoiceChat';
6106
6130
  export { default as VoiceChatFilled } from './components/VoiceChatFilled';
6107
6131
  export { default as VoiceOverOff } from './components/VoiceOverOff';
package/dist/index.js CHANGED
@@ -69,6 +69,8 @@ export { default as AddCircle } from './components/AddCircle';
69
69
  export { default as AddCircleFilled } from './components/AddCircleFilled';
70
70
  export { default as AddComment } from './components/AddComment';
71
71
  export { default as AddCommentFilled } from './components/AddCommentFilled';
72
+ export { default as AddDiamond } from './components/AddDiamond';
73
+ export { default as AddDiamondFilled } from './components/AddDiamondFilled';
72
74
  export { default as AddFilled } from './components/AddFilled';
73
75
  export { default as AddHome } from './components/AddHome';
74
76
  export { default as AddHomeFilled } from './components/AddHomeFilled';
@@ -1237,9 +1239,13 @@ export { default as ContractEdit } from './components/ContractEdit';
1237
1239
  export { default as ContractEditFilled } from './components/ContractEditFilled';
1238
1240
  export { default as ContractFilled } from './components/ContractFilled';
1239
1241
  export { default as Contrast } from './components/Contrast';
1242
+ export { default as ContrastCircle } from './components/ContrastCircle';
1243
+ export { default as ContrastCircleFilled } from './components/ContrastCircleFilled';
1240
1244
  export { default as ContrastFilled } from './components/ContrastFilled';
1241
1245
  export { default as ContrastRtlOff } from './components/ContrastRtlOff';
1242
1246
  export { default as ContrastRtlOffFilled } from './components/ContrastRtlOffFilled';
1247
+ export { default as ContrastSquare } from './components/ContrastSquare';
1248
+ export { default as ContrastSquareFilled } from './components/ContrastSquareFilled';
1243
1249
  export { default as ControlCamera } from './components/ControlCamera';
1244
1250
  export { default as ControlCameraFilled } from './components/ControlCameraFilled';
1245
1251
  export { default as ControlPointDuplicate } from './components/ControlPointDuplicate';
@@ -2118,6 +2124,8 @@ export { default as FindReplace } from './components/FindReplace';
2118
2124
  export { default as FindReplaceFilled } from './components/FindReplaceFilled';
2119
2125
  export { default as Fingerprint } from './components/Fingerprint';
2120
2126
  export { default as FingerprintFilled } from './components/FingerprintFilled';
2127
+ export { default as FingerprintOff } from './components/FingerprintOff';
2128
+ export { default as FingerprintOffFilled } from './components/FingerprintOffFilled';
2121
2129
  export { default as FireExtinguisher } from './components/FireExtinguisher';
2122
2130
  export { default as FireExtinguisherFilled } from './components/FireExtinguisherFilled';
2123
2131
  export { default as FireHydrant } from './components/FireHydrant';
@@ -4013,6 +4021,10 @@ export { default as PartyModeFilled } from './components/PartyModeFilled';
4013
4021
  export { default as Passkey } from './components/Passkey';
4014
4022
  export { default as PasskeyFilled } from './components/PasskeyFilled';
4015
4023
  export { default as Password } from './components/Password';
4024
+ export { default as Password2 } from './components/Password2';
4025
+ export { default as Password2Filled } from './components/Password2Filled';
4026
+ export { default as Password2Off } from './components/Password2Off';
4027
+ export { default as Password2OffFilled } from './components/Password2OffFilled';
4016
4028
  export { default as PasswordFilled } from './components/PasswordFilled';
4017
4029
  export { default as PatientList } from './components/PatientList';
4018
4030
  export { default as PatientListFilled } from './components/PatientListFilled';
@@ -4278,6 +4290,8 @@ export { default as PointOfSale } from './components/PointOfSale';
4278
4290
  export { default as PointOfSaleFilled } from './components/PointOfSaleFilled';
4279
4291
  export { default as PointScan } from './components/PointScan';
4280
4292
  export { default as PointScanFilled } from './components/PointScanFilled';
4293
+ export { default as PokerChip } from './components/PokerChip';
4294
+ export { default as PokerChipFilled } from './components/PokerChipFilled';
4281
4295
  export { default as Policy } from './components/Policy';
4282
4296
  export { default as PolicyFilled } from './components/PolicyFilled';
4283
4297
  export { default as Polyline } from './components/Polyline';
@@ -5096,6 +5110,10 @@ export { default as Slideshow } from './components/Slideshow';
5096
5110
  export { default as SlideshowFilled } from './components/SlideshowFilled';
5097
5111
  export { default as SlowMotionVideo } from './components/SlowMotionVideo';
5098
5112
  export { default as SlowMotionVideoFilled } from './components/SlowMotionVideoFilled';
5113
+ export { default as SmartCardReader } from './components/SmartCardReader';
5114
+ export { default as SmartCardReaderFilled } from './components/SmartCardReaderFilled';
5115
+ export { default as SmartCardReaderOff } from './components/SmartCardReaderOff';
5116
+ export { default as SmartCardReaderOffFilled } from './components/SmartCardReaderOffFilled';
5099
5117
  export { default as SmartDisplay } from './components/SmartDisplay';
5100
5118
  export { default as SmartDisplayFilled } from './components/SmartDisplayFilled';
5101
5119
  export { default as SmartOutlet } from './components/SmartOutlet';
@@ -5666,6 +5684,8 @@ export { default as TextSnippet } from './components/TextSnippet';
5666
5684
  export { default as TextSnippetFilled } from './components/TextSnippetFilled';
5667
5685
  export { default as TextToSpeech } from './components/TextToSpeech';
5668
5686
  export { default as TextToSpeechFilled } from './components/TextToSpeechFilled';
5687
+ export { default as TextUp } from './components/TextUp';
5688
+ export { default as TextUpFilled } from './components/TextUpFilled';
5669
5689
  export { default as Texture } from './components/Texture';
5670
5690
  export { default as TextureAdd } from './components/TextureAdd';
5671
5691
  export { default as TextureAddFilled } from './components/TextureAddFilled';
@@ -5942,6 +5962,8 @@ export { default as Unknown2 } from './components/Unknown2';
5942
5962
  export { default as Unknown2Filled } from './components/Unknown2Filled';
5943
5963
  export { default as Unknown5 } from './components/Unknown5';
5944
5964
  export { default as Unknown5Filled } from './components/Unknown5Filled';
5965
+ export { default as Unknown7 } from './components/Unknown7';
5966
+ export { default as Unknown7Filled } from './components/Unknown7Filled';
5945
5967
  export { default as UnknownDocument } from './components/UnknownDocument';
5946
5968
  export { default as UnknownDocumentFilled } from './components/UnknownDocumentFilled';
5947
5969
  export { default as UnknownMed } from './components/UnknownMed';
@@ -6102,6 +6124,8 @@ export { default as VisibilityOff } from './components/VisibilityOff';
6102
6124
  export { default as VisibilityOffFilled } from './components/VisibilityOffFilled';
6103
6125
  export { default as VitalSigns } from './components/VitalSigns';
6104
6126
  export { default as VitalSignsFilled } from './components/VitalSignsFilled';
6127
+ export { default as Vo2Max } from './components/Vo2Max';
6128
+ export { default as Vo2MaxFilled } from './components/Vo2MaxFilled';
6105
6129
  export { default as VoiceChat } from './components/VoiceChat';
6106
6130
  export { default as VoiceChatFilled } from './components/VoiceChatFilled';
6107
6131
  export { default as VoiceOverOff } from './components/VoiceOverOff';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@project-lary/react-material-symbols-600-sharp",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "Latest sharp React icon components with weight 600 for Material Symbols",
5
5
  "files": [
6
6
  "dist"