@leapdev/gui-icons 3.0.45 → 3.0.46

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 (43) hide show
  1. package/README.md +2 -2
  2. package/dist/app.js +227 -18
  3. package/dist/illustrations/sirius/2FA.svg +49 -0
  4. package/dist/illustrations/sirius/Aide.svg +76 -0
  5. package/dist/illustrations/sirius/AnticipatedPayments-Euro.svg +101 -8
  6. package/dist/illustrations/sirius/AnticipatedPayments-Pound.svg +101 -8
  7. package/dist/illustrations/sirius/AnticipatedPayments.svg +101 -8
  8. package/dist/illustrations/sirius/BarChart.svg +129 -0
  9. package/dist/illustrations/sirius/CreditLedger-Euro.svg +115 -8
  10. package/dist/illustrations/sirius/CreditLedger-Pound.svg +115 -8
  11. package/dist/illustrations/sirius/CreditLedger.svg +115 -8
  12. package/dist/illustrations/sirius/Data.svg +69 -0
  13. package/dist/illustrations/sirius/Default.svg +55 -6
  14. package/dist/illustrations/sirius/Download.svg +77 -0
  15. package/dist/illustrations/sirius/Email.svg +68 -0
  16. package/dist/illustrations/sirius/Favourite.svg +71 -0
  17. package/dist/illustrations/sirius/Folder.svg +47 -0
  18. package/dist/illustrations/sirius/Generator.svg +76 -0
  19. package/dist/illustrations/sirius/Inbox.svg +71 -0
  20. package/dist/illustrations/sirius/NoCorrespondance.svg +116 -8
  21. package/dist/illustrations/sirius/NoCorrespondence.svg +117 -0
  22. package/dist/illustrations/sirius/NoUnscheduledCriticalDates.svg +104 -8
  23. package/dist/illustrations/sirius/NoUnscheduledTasks.svg +106 -0
  24. package/dist/illustrations/sirius/NoUnsheduledTasks.svg +105 -8
  25. package/dist/illustrations/sirius/PaymentsAndDebtors-Euro.svg +140 -8
  26. package/dist/illustrations/sirius/PaymentsAndDebtors-Pound.svg +140 -8
  27. package/dist/illustrations/sirius/PaymentsAndDebtors.svg +140 -8
  28. package/dist/illustrations/sirius/PieChart.svg +80 -0
  29. package/dist/illustrations/sirius/PreviewUnavailable.svg +78 -0
  30. package/dist/illustrations/sirius/Reports.svg +60 -0
  31. package/dist/illustrations/sirius/RestrictedContent.svg +47 -0
  32. package/dist/illustrations/sirius/Risks.svg +69 -0
  33. package/dist/illustrations/sirius/Search.svg +96 -0
  34. package/dist/illustrations/sirius/SystemError.svg +58 -0
  35. package/dist/illustrations/sirius/TimeAndFees.svg +83 -8
  36. package/dist/illustrations/sirius/TrustFunds-Euro.svg +102 -8
  37. package/dist/illustrations/sirius/TrustFunds-Pound.svg +102 -8
  38. package/dist/illustrations/sirius/TrustFunds.svg +102 -8
  39. package/dist/illustrations/sprite-sirius-empty-states.svg +1 -1
  40. package/dist/index.js +19 -0
  41. package/package.json +1 -1
  42. package/CHANGELOG.md +0 -847
  43. package/dist/icons/.DS_Store +0 -0
package/README.md CHANGED
@@ -120,7 +120,7 @@ Here is how you can run the example above on Stackblitz (https://stackblitz.com)
120
120
 
121
121
  Here's an example of how to use individual SVG icons in a React application:
122
122
 
123
- \`\`\`jsx
123
+ ```jsx
124
124
  import React from 'react';
125
125
  import { FilledHistory, DesktopPin, DoctypeAudio } from '@leapdev/gui-icons';
126
126
 
@@ -135,7 +135,7 @@ export default function IconExample() {
135
135
  </div>
136
136
  );
137
137
  }
138
- \`\`\`
138
+ ```
139
139
 
140
140
  In this example:
141
141