cozy-ui 70.4.1 → 70.5.1

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 (144) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/assets/icons/ui/permissions/accounts.svg +1 -0
  3. package/assets/icons/ui/permissions/apps.svg +1 -0
  4. package/assets/icons/ui/permissions/bank-accounts.svg +1 -0
  5. package/assets/icons/ui/permissions/bank-groups.svg +10 -0
  6. package/assets/icons/ui/permissions/bank-operations.svg +1 -0
  7. package/assets/icons/ui/permissions/bank-recurrence.svg +1 -0
  8. package/assets/icons/ui/permissions/bill.svg +1 -0
  9. package/assets/icons/ui/permissions/bug-report.svg +1 -0
  10. package/assets/icons/ui/permissions/calendar.svg +1 -0
  11. package/assets/icons/ui/permissions/category.svg +1 -0
  12. package/assets/icons/ui/permissions/certified.svg +1 -0
  13. package/assets/icons/ui/permissions/connected-clients.svg +1 -0
  14. package/assets/icons/ui/permissions/consumption.svg +1 -0
  15. package/assets/icons/ui/permissions/contacts-accounts.svg +1 -0
  16. package/assets/icons/ui/permissions/contacts-groups.svg +1 -0
  17. package/assets/icons/ui/permissions/contacts.svg +1 -0
  18. package/assets/icons/ui/permissions/contract.svg +1 -0
  19. package/assets/icons/ui/permissions/ecolyo.svg +1 -0
  20. package/assets/icons/ui/permissions/energy.svg +1 -0
  21. package/assets/icons/ui/permissions/energybreakdown.svg +1 -0
  22. package/assets/icons/ui/permissions/fallback.svg +1 -0
  23. package/assets/icons/ui/permissions/family.svg +1 -0
  24. package/assets/icons/ui/permissions/files-pen.svg +1 -0
  25. package/assets/icons/ui/permissions/files-versions.svg +1 -0
  26. package/assets/icons/ui/permissions/files.svg +1 -0
  27. package/assets/icons/ui/permissions/home.svg +1 -0
  28. package/assets/icons/ui/permissions/identities.svg +1 -0
  29. package/assets/icons/ui/permissions/konnectors-result.svg +8 -0
  30. package/assets/icons/ui/permissions/konnectors.svg +1 -0
  31. package/assets/icons/ui/permissions/location.svg +1 -0
  32. package/assets/icons/ui/permissions/notifications.svg +1 -0
  33. package/assets/icons/ui/permissions/opinions.svg +1 -0
  34. package/assets/icons/ui/permissions/passwords.svg +1 -0
  35. package/assets/icons/ui/permissions/permissions.svg +1 -0
  36. package/assets/icons/ui/permissions/photos-album.svg +1 -0
  37. package/assets/icons/ui/permissions/photos-settings.svg +1 -0
  38. package/assets/icons/ui/permissions/profile.svg +1 -0
  39. package/assets/icons/ui/permissions/safe.svg +1 -0
  40. package/assets/icons/ui/permissions/settings.svg +1 -0
  41. package/assets/icons/ui/permissions/sharings.svg +1 -0
  42. package/assets/icons/ui/permissions/sinister.svg +1 -0
  43. package/assets/icons/ui/permissions/tags.svg +1 -0
  44. package/assets/icons/ui/permissions/task-to-effectuate.svg +1 -0
  45. package/assets/icons/ui/permissions/triggers.svg +1 -0
  46. package/assets/icons/ui/permissions/versioning.svg +1 -0
  47. package/package.json +1 -1
  48. package/react/Icon/Readme.md +133 -1
  49. package/react/Icons/Accounts.jsx +22 -0
  50. package/react/Icons/Apps.jsx +25 -0
  51. package/react/Icons/BankAccounts.jsx +18 -0
  52. package/react/Icons/BankGroups.jsx +26 -0
  53. package/react/Icons/BankOperations.jsx +22 -0
  54. package/react/Icons/BankRecurrence.jsx +25 -0
  55. package/react/Icons/BillPermissions.jsx +25 -0
  56. package/react/Icons/BugReport.jsx +21 -0
  57. package/react/Icons/CalendarPermissions.jsx +20 -0
  58. package/react/Icons/Category.jsx +23 -0
  59. package/react/Icons/CertifiedPermissions.jsx +22 -0
  60. package/react/Icons/ConnectedClients.jsx +28 -0
  61. package/react/Icons/Consumption.jsx +24 -0
  62. package/react/Icons/Contacts.jsx +21 -0
  63. package/react/Icons/ContactsAccounts.jsx +21 -0
  64. package/react/Icons/ContactsGroups.jsx +21 -0
  65. package/react/Icons/ContractPermissions.jsx +21 -0
  66. package/react/Icons/Ecolyo.jsx +28 -0
  67. package/react/Icons/Energy.jsx +16 -0
  68. package/react/Icons/Energybreakdown.jsx +25 -0
  69. package/react/Icons/Fallback.jsx +21 -0
  70. package/react/Icons/Family.jsx +28 -0
  71. package/react/Icons/Files.jsx +18 -0
  72. package/react/Icons/FilesPen.jsx +21 -0
  73. package/react/Icons/FilesVersions.jsx +21 -0
  74. package/react/Icons/HomePermissions.jsx +18 -0
  75. package/react/Icons/Identities.jsx +21 -0
  76. package/react/Icons/Konnectors.jsx +18 -0
  77. package/react/Icons/KonnectorsResult.jsx +24 -0
  78. package/react/Icons/LocationPermissions.jsx +16 -0
  79. package/react/Icons/Notifications.jsx +21 -0
  80. package/react/Icons/Opinions.jsx +21 -0
  81. package/react/Icons/Passwords.jsx +18 -0
  82. package/react/Icons/Permissions.jsx +18 -0
  83. package/react/Icons/PhotosAlbum.jsx +71 -0
  84. package/react/Icons/PhotosSettings.jsx +36 -0
  85. package/react/Icons/Profile.jsx +28 -0
  86. package/react/Icons/SafePermissions.jsx +25 -0
  87. package/react/Icons/Settings.jsx +19 -0
  88. package/react/Icons/Sharings.jsx +23 -0
  89. package/react/Icons/Sinister.jsx +21 -0
  90. package/react/Icons/Tags.jsx +16 -0
  91. package/react/Icons/TaskToEffectuate.jsx +32 -0
  92. package/react/Icons/Triggers.jsx +18 -0
  93. package/react/Icons/Versioning.jsx +23 -0
  94. package/react/MuiCozyTheme/makeOverrides.js +2 -2
  95. package/react/Viewer/locales/en.json +2 -1
  96. package/react/Viewer/locales/fr.json +2 -1
  97. package/react/__snapshots__/examples.spec.jsx.snap +433 -23
  98. package/transpiled/react/Icons/Accounts.js +21 -0
  99. package/transpiled/react/Icons/Apps.js +23 -0
  100. package/transpiled/react/Icons/BankAccounts.js +20 -0
  101. package/transpiled/react/Icons/BankGroups.js +31 -0
  102. package/transpiled/react/Icons/BankOperations.js +21 -0
  103. package/transpiled/react/Icons/BankRecurrence.js +22 -0
  104. package/transpiled/react/Icons/BillPermissions.js +26 -0
  105. package/transpiled/react/Icons/BugReport.js +20 -0
  106. package/transpiled/react/Icons/CalendarPermissions.js +24 -0
  107. package/transpiled/react/Icons/Category.js +22 -0
  108. package/transpiled/react/Icons/CertifiedPermissions.js +26 -0
  109. package/transpiled/react/Icons/ConnectedClients.js +26 -0
  110. package/transpiled/react/Icons/Consumption.js +23 -0
  111. package/transpiled/react/Icons/Contacts.js +20 -0
  112. package/transpiled/react/Icons/ContactsAccounts.js +20 -0
  113. package/transpiled/react/Icons/ContactsGroups.js +20 -0
  114. package/transpiled/react/Icons/ContractPermissions.js +20 -0
  115. package/transpiled/react/Icons/Ecolyo.js +27 -0
  116. package/transpiled/react/Icons/Energy.js +18 -0
  117. package/transpiled/react/Icons/Energybreakdown.js +24 -0
  118. package/transpiled/react/Icons/Fallback.js +20 -0
  119. package/transpiled/react/Icons/Family.js +30 -0
  120. package/transpiled/react/Icons/Files.js +23 -0
  121. package/transpiled/react/Icons/FilesPen.js +20 -0
  122. package/transpiled/react/Icons/FilesVersions.js +20 -0
  123. package/transpiled/react/Icons/HomePermissions.js +20 -0
  124. package/transpiled/react/Icons/Identities.js +20 -0
  125. package/transpiled/react/Icons/Konnectors.js +22 -0
  126. package/transpiled/react/Icons/KonnectorsResult.js +31 -0
  127. package/transpiled/react/Icons/LocationPermissions.js +15 -0
  128. package/transpiled/react/Icons/Notifications.js +20 -0
  129. package/transpiled/react/Icons/Opinions.js +20 -0
  130. package/transpiled/react/Icons/Passwords.js +20 -0
  131. package/transpiled/react/Icons/Permissions.js +20 -0
  132. package/transpiled/react/Icons/PhotosAlbum.js +74 -0
  133. package/transpiled/react/Icons/PhotosSettings.js +37 -0
  134. package/transpiled/react/Icons/Profile.js +30 -0
  135. package/transpiled/react/Icons/SafePermissions.js +23 -0
  136. package/transpiled/react/Icons/Settings.js +21 -0
  137. package/transpiled/react/Icons/Sharings.js +22 -0
  138. package/transpiled/react/Icons/Sinister.js +20 -0
  139. package/transpiled/react/Icons/Tags.js +18 -0
  140. package/transpiled/react/Icons/TaskToEffectuate.js +72 -0
  141. package/transpiled/react/Icons/Triggers.js +23 -0
  142. package/transpiled/react/Icons/Versioning.js +22 -0
  143. package/transpiled/react/MuiCozyTheme/makeOverrides.js +2 -2
  144. package/transpiled/react/Viewer/withViewerLocales.js +4 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,24 @@
1
+ ## [70.5.1](https://github.com/cozy/cozy-ui/compare/v70.5.0...v70.5.1) (2022-08-08)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Add missing document date label in the viewer ([ace3449](https://github.com/cozy/cozy-ui/commit/ace3449))
7
+
8
+ # [70.5.0](https://github.com/cozy/cozy-ui/compare/v70.4.2...v70.5.0) (2022-08-04)
9
+
10
+
11
+ ### Features
12
+
13
+ * **Permissions:** add permissions icons ([d8ffdd3](https://github.com/cozy/cozy-ui/commit/d8ffdd3))
14
+
15
+ ## [70.4.2](https://github.com/cozy/cozy-ui/compare/v70.4.1...v70.4.2) (2022-07-29)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * Apply top/bottom spacing on dialog fullscreen ([1a3aebb](https://github.com/cozy/cozy-ui/commit/1a3aebb))
21
+
1
22
  ## [70.4.1](https://github.com/cozy/cozy-ui/compare/v70.4.0...v70.4.1) (2022-07-28)
2
23
 
3
24
 
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><g fill="none" fill-rule="evenodd"><path fill="#d6d8da" fill-rule="nonzero" d="M3 9c0 29.178 11.311 34.3 20.997 39C33.682 43.3 45 38.178 45 9L23.998 0 3 9Z"/><path fill="#5d6165" d="M22.5 25.244V30.5a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-5.256A4.502 4.502 0 0 0 24 16.5a4.5 4.5 0 0 0-1.5 8.744ZM24 37.5c-8.284 0-15-6.716-15-15 0-8.284 6.716-15 15-15 8.284 0 15 6.716 15 15 0 8.284-6.716 15-15 15Z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><g fill="none" fill-rule="evenodd"><path fill="#d6d8da" d="m25.342 24.67 20.87 10.436a1 1 0 0 1 0 1.788L25.341 47.33a3 3 0 0 1-2.684 0L1.788 36.894a1 1 0 0 1 0-1.788l20.87-10.435a3 3 0 0 1 2.684 0Z"/><path fill="#95999d" d="m25.342 12.67 20.87 10.436a1 1 0 0 1 0 1.788L25.341 35.33a3 3 0 0 1-2.684 0L1.788 24.894a1 1 0 0 1 0-1.788l20.87-10.435a3 3 0 0 1 2.684 0Z"/><path fill="#5d6165" d="m25.342.67 20.87 10.436a1 1 0 0 1 0 1.788L25.341 23.33a3 3 0 0 1-2.684 0L1.788 12.894a1 1 0 0 1 0-1.788L22.659.67a3 3 0 0 1 2.684 0Z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><g fill="none" fill-rule="evenodd"><path fill="#d6d8da" d="M0 4h46v40H0z"/><path fill="#5d6165" d="M38 18h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-8a6 6 0 1 1 0-12Zm0 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"/></g></svg>
@@ -0,0 +1,10 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48">
2
+ <g fill="none" fill-rule="evenodd">
3
+ <rect width="38" height="32" fill="#d6d8da"/>
4
+ <path fill="#5d6165" d="M31,12 L38,12 C39.1045695,12 40,12.8954305 40,14 L40,20 C40,21.1045695 39.1045695,22 38,22 L31,22 C28.2385763,22 26,19.7614237 26,17 L26,17 L26,17 C26,14.2385763 28.2385763,12 31,12 L31,12 Z M31,19 C32.1045695,19 33,18.1045695 33,17 C33,15.8954305 32.1045695,15 31,15 C29.8954305,15 29,15.8954305 29,17 C29,18.1045695 29.8954305,19 31,19 Z"/>
5
+ <g transform="translate(24 24)">
6
+ <circle cx="12" cy="12" r="12" fill="#5d6165"/>
7
+ <path fill="#FFFFFF" fill-rule="nonzero" d="M5.29194944,13.7099466 C4.89985674,13.3178539 4.9055206,12.6764822 5.29194944,12.2900534 L11.8720562,5.70994663 C12.2641489,5.31785393 13.0350391,5 13.5790329,5 L19.5849727,5 C20.1356172,5 20.5820028,5.45303631 20.5820028,5.99703014 L20.5820028,12.0029699 C20.5820028,12.5536144 20.258485,13.3235178 19.8720562,13.7099466 L13.2919494,20.2900534 C12.8998567,20.6821461 12.258485,20.6764822 11.8720562,20.2900534 L5.29194944,13.7099466 Z M16.5800018,11 C17.6845713,11 18.5800018,10.1045695 18.5800018,9 C18.5800018,7.8954305 17.6845713,7 16.5800018,7 C15.4754323,7 14.5800018,7.8954305 14.5800018,9 C14.5800018,10.1045695 15.4754323,11 16.5800018,11 Z" transform="matrix(-1 0 0 1 25.582 0)"/>
8
+ </g>
9
+ </g>
10
+ </svg>
@@ -0,0 +1 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M24 0C10.766 0 0 10.766 0 24c0 13.232 10.766 24 24 24 13.232 0 24-10.768 24-24C48 10.766 37.232 0 24 0Z" fill="#d6d8da" fill-rule="nonzero"/><path d="M33.933 16.376C32.149 13.856 29.827 12 25.72 12c-4.779 0-8.211 3.215-9.558 7.69H13v2.818h2.625c-.067.498-.067 1.028-.067 1.525 0 .431 0 .862.033 1.26H13v2.85h3.063C17.375 32.852 20.875 36 25.855 36c3.836 0 6.226-1.923 8.144-4.674l-2.962-2.155c-1.548 2.022-2.894 3.183-5.149 3.183-2.625 0-4.543-1.592-5.485-4.21h7.27v-2.851h-7.91c-.033-.431-.033-.862-.033-1.326 0-.497 0-.995.067-1.459h7.875v-2.817h-7.235c.942-2.487 2.793-4.045 5.182-4.045 2.356 0 3.736 1.061 5.183 3.017l3.13-2.287Z" fill="#5d6165"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="48" height="48" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><g fill="none"><path d="M24 0C10.766 0 0 10.766 0 24c0 13.232 10.766 24 24 24 13.232 0 24-10.768 24-24C48 10.766 37.232 0 24 0z" fill="#D6D8DA"/><path d="M29.958 19.735C28.854 18.16 27.417 17 24.875 17c-2.958 0-5.083 2.01-5.917 4.807H17v1.76h1.625c-.042.311-.042.643-.042.954 0 .27 0 .538.021.787H17v1.782h1.896c.812 2.942 2.979 4.91 6.062 4.91 2.375 0 3.855-1.202 5.042-2.921l-1.833-1.347c-.959 1.264-1.792 1.989-3.188 1.989-1.625 0-2.812-.994-3.396-2.631h4.5v-1.782h-4.895c-.021-.27-.021-.539-.021-.829 0-.31 0-.621.041-.911h4.875v-1.761h-4.479c.584-1.554 1.73-2.528 3.209-2.528 1.458 0 2.312.663 3.208 1.885l1.937-1.43z" fill="#5D6165"/><path d="M24 6c8.984 0 16.593 6.625 17.829 15.524 1.235 8.9-4.28 17.347-12.925 19.795-8.644 2.448-17.77-1.853-21.384-10.079l-.2-.45a2 2 0 0 1 3.64-1.65l.1.23a14 14 0 1 0 2.04-14.15 2 2 0 0 1 2.33.38l.1.12a2 2 0 0 1-.13 2.7l-.12.12-6 5a2 2 0 0 1-3.27-1.39L6 22v-8a2 2 0 0 1 3.74-.99A17.98 17.98 0 0 1 24 6z" fill="#5D6165"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><g fill="none" fill-rule="evenodd"><path fill="#d6d8da" d="M9 47c-1.105 0-2-.898-2-2.006V3.006C7 1.898 7.89 1 8.991 1H29l12 12v32c0 1.105-.892 2-2 2H9Z"/><path fill="#5d6165" d="M29 1v9.991A2.01 2.01 0 0 0 31.009 13H41L29 1Z"/><path stroke="#5d6165" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M35 41H13V17h22zM13 22h22m-22 6h22m-22 6h22M20 17v24"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 2.996A2.992 2.992 0 0 1 3.003 0h41.994A3 3 0 0 1 48 2.996v33.008A3.006 3.006 0 0 1 45.009 39H27L9 48v-9H3c-1.657 0-3-1.343-3-2.995V2.995Z" fill="#D6D8DA"/><path d="M24 7a2.807 2.807 0 0 0-2.8 2.993l.667 10.011a2.138 2.138 0 0 0 4.266 0l.667-10.01A2.807 2.807 0 0 0 24 7ZM21 28a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z" fill="#5D6165"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><rect y="4" width="48" height="44" rx="8" fill="#D1D5DB"/><path d="M0 12a8 8 0 0 1 8-8h32a8 8 0 0 1 8 8v4H0v-4ZM6 27a3 3 0 1 1 6 0 3 3 0 0 1-6 0ZM9 34a3 3 0 1 0 0 6 3 3 0 0 0 0-6ZM16 27a3 3 0 1 1 6 0 3 3 0 0 1-6 0ZM19 34a3 3 0 1 0 0 6 3 3 0 0 0 0-6ZM26 27a3 3 0 1 1 6 0 3 3 0 0 1-6 0ZM29 34a3 3 0 1 0 0 6 3 3 0 0 0 0-6ZM36 27a3 3 0 1 1 6 0 3 3 0 0 1-6 0ZM39 34a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z" fill="#5D6165"/><path d="M12 0a3 3 0 0 0-3 3v6a3 3 0 1 0 6 0V3a3 3 0 0 0-3-3ZM36 0a3 3 0 0 0-3 3v6a3 3 0 1 0 6 0V3a3 3 0 0 0-3-3Z" fill="#95999D"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M21 48C9.402 48 0 38.598 0 27S9.402 6 21 6v21h21c0 11.598-9.402 21-21 21Z" fill="#D6D8DA"/><path fill-rule="evenodd" clip-rule="evenodd" d="M27 21V0c11.598 0 21 9.402 21 21H27Z" fill="#5D6165"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><g fill="none" fill-rule="evenodd" transform="translate(6)"><path fill="#95999D" d="M9 30h18v17.08a.9.9 0 0 1-1.45.71L18 42l-7.55 5.79A.9.9 0 0 1 9 47.08V30z"/><path fill="#5D6165" d="m10.87 3.6-2.84.3A4.45 4.45 0 0 0 4.1 7.8l-.36 2.83c-.1.82-.43 1.6-.95 2.25l-1.8 2.21a4.45 4.45 0 0 0-.04 5.54l1.75 2.25c.51.65.83 1.44.92 2.26l.3 2.84a4.45 4.45 0 0 0 3.88 3.94l2.83.36c.82.1 1.6.43 2.24.95l2.23 1.8a4.45 4.45 0 0 0 5.53.04l2.25-1.75a4.45 4.45 0 0 1 2.26-.92l2.84-.3a4.45 4.45 0 0 0 3.94-3.88l.36-2.83c.1-.82.43-1.6.95-2.25l1.8-2.21a4.45 4.45 0 0 0 .04-5.54l-1.75-2.25a4.45 4.45 0 0 1-.92-2.26l-.3-2.84a4.45 4.45 0 0 0-3.88-3.94l-2.83-.36c-.82-.1-1.6-.43-2.25-.95L20.92.98a4.45 4.45 0 0 0-5.54-.04l-2.25 1.75c-.65.51-1.44.83-2.26.92z"/><circle cx="18" cy="18" r="9" fill="#D6D8DA"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M35 48H13c-2.21 0-4-1.87-4-4.174V4.174C9 1.87 10.79 0 13 0h22c2.208 0 4 1.87 4 4.174v39.652C39 46.13 37.208 48 35 48Z" fill="#d6d8da"/><path d="M21 3h6" stroke="#5d6165" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M26 44a2 2 0 1 1-4.001-.001A2 2 0 0 1 26 44ZM12 6h24v34H12z" fill="#5d6165"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><g fill="none" fill-rule="evenodd"><path fill="#d6d8da" d="M24 47C11.297 47 1 36.703 1 24S11.297 1 24 1s23 10.297 23 23-10.297 23-23 23Zm19-23h-4a1 1 0 0 0 0 2h4a1 1 0 0 0 0-2Zm-1.83-8.194-3.696 1.53a1 1 0 0 0 .765 1.848l3.696-1.53a1 1 0 0 0-.765-1.848ZM30.346 6.063l-1.53 3.696a1 1 0 0 0 1.848.765l1.53-3.696a1 1 0 0 0-1.848-.765ZM23 5v4a1 1 0 0 0 2 0V5a1 1 0 0 0-2 0Zm-7.194 1.828 1.53 3.696a1 1 0 0 0 1.848-.765l-1.53-3.696a1 1 0 1 0-1.848.765Zm-5.948 4.44 2.824 2.833a1 1 0 1 0 1.417-1.413l-2.824-2.832a1 1 0 1 0-1.417 1.413Zm-3.793 6.386 3.694 1.53a1 1 0 1 0 .765-1.847l-3.694-1.53a1 1 0 1 0-.765 1.847ZM5 26h4a1 1 0 0 0 0-2H5a1 1 0 0 0 0 2Z"/><path stroke="#5d6165" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M22 33h4v8h-4zM30 33h4v8h-4zM14 33h4v8h-4zM27 24a3.001 3.001 0 0 1-6 0 3.001 3.001 0 0 1 6 0h0zm-.879-2.121 9.9-9.898"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M48 40c0 1.105-.902 2-2.009 2H36v-4.501C36 36.67 35.336 36 34.502 36h-1.504c-.827 0-1.498.665-1.498 1.499V42h-15v-4.501c0-.828-.664-1.499-1.498-1.499h-1.504c-.827 0-1.498.665-1.498 1.499V42H2.009A2 2 0 0 1 0 40V8a2 2 0 0 1 2.001-2H46C47.104 6 48 6.89 48 8v32Z" fill="#d6d8da"/><path d="M25.5 13.5h9V15h-9v-1.5Zm0 4.5H42v1.5H25.5V18Zm0 4.5H42V24H25.5v-1.5Zm0 4.5H42v1.5H25.5V27Zm-12-4.875c-2.485 0-4.5-2.267-4.5-5.063C9 14.268 11.015 12 13.5 12s4.5 2.267 4.5 5.063c0 2.795-2.015 5.062-4.5 5.062Zm-9 5.625c0-1.125 2.25-4.5 4.5-4.5s1.125 1.125 4.5 1.125 2.25-1.125 4.5-1.125 4.5 3.375 4.5 4.5 0 2.25-1.125 2.25H5.625C4.5 30 4.5 28.875 4.5 27.75Z" fill="#5d6165"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M43 9c.552 0 1 .438 1 1.003v36.994A.996.996 0 0 1 42.997 48H8.99C6.787 48 5 46.206 5 43.99V4.01A4 4 0 0 1 8.995 0h32.502A.998.998 0 0 1 42.5.999v1.002a1 1 0 0 1-.995.999H10.004A2.003 2.003 0 0 0 8 4.998v2.004C8 8.106 8.89 9 10 9h33ZM9.5 6a1.5 1.5 0 0 1 1.498-1.5h28.504a1.5 1.5 0 0 1 0 3H10.998A1.495 1.495 0 0 1 9.5 6Z" fill="#d6d8da"/><path d="M24.5 30c-3.314 0-6-3.022-6-6.75s2.686-6.75 6-6.75 6 3.022 6 6.75-2.686 6.75-6 6.75Zm-12 7.5c0-1.5 3-6 6-6s1.5 1.5 6 1.5 3-1.5 6-1.5 6 4.5 6 6 0 3-1.5 3H14c-1.5 0-1.5-1.5-1.5-3Z" fill="#5d6165"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M48 40c0 1.105-.902 2-2.009 2H36v-4.501C36 36.67 35.336 36 34.502 36h-1.504c-.827 0-1.498.665-1.498 1.499V42h-15v-4.501c0-.828-.664-1.499-1.498-1.499h-1.504c-.827 0-1.498.665-1.498 1.499V42H2.009A2 2 0 0 1 0 40V8a2 2 0 0 1 2.001-2H46C47.104 6 48 6.89 48 8v32Z" fill="#d6d8da"/><path d="M25.5 13.5h9V15h-9v-1.5Zm0 4.5H42v1.5H25.5V18Zm0 4.5H42V24H25.5v-1.5Zm0 4.5H42v1.5H25.5V27Zm-12-4.875c-2.485 0-4.5-2.267-4.5-5.063C9 14.268 11.015 12 13.5 12s4.5 2.267 4.5 5.063c0 2.795-2.015 5.062-4.5 5.062Zm-9 5.625c0-1.125 2.25-4.5 4.5-4.5s1.125 1.125 4.5 1.125 2.25-1.125 4.5-1.125 4.5 3.375 4.5 4.5 0 2.25-1.125 2.25H5.625C4.5 30 4.5 28.875 4.5 27.75Z" fill="#5d6165"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><g fill="none" fill-rule="evenodd"><path fill="#d6d8da" d="M3.002 43A2.001 2.001 0 0 1 1 41.003V2.997C1 1.894 1.89 1 2.991 1H23l10 10v32H3.002Z"/><path fill="#5d6165" d="m23 1 10 10h-8c-1.113 0-2-.895-2-2V1Zm3.931 45.452c-1.066.305-1.686-.306-1.38-1.38L27 40.005l13.59-13.592a2 2 0 0 1 2.831.007l2.162 2.162c.784.784.784 2.054.008 2.83L32 45.005l-5.069 1.448ZM16 38h10v2H16v-2Z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="#fff" d="M0 0h16v16H0z"/><path d="M8 15.059c6.828-2.67 6.298-6.466 5.944-12.128C11.75 2.834 9.804 2.159 8 1.033 6.196 2.159 4.25 2.834 2.056 2.93 1.703 8.593 1.172 12.389 8 15.059Z" fill="#383941"/><path d="m8 0-.463.289c-1.691 1.055-3.493 1.677-5.52 1.766l-.785.035-.049.786-.045.697c-.162 2.486-.314 4.817.369 6.826.787 2.317 2.614 4.084 6.175 5.477L8 16v-.941c-6.56-2.566-6.328-6.17-5.986-11.47l.042-.658C4.25 2.834 6.196 2.159 8 1.033V0Z" fill="#E0E0E0"/><path d="m8 0 .463.289c1.691 1.055 3.493 1.677 5.52 1.766l.785.035.049.786.045.697c.162 2.486.314 4.817-.369 6.826-.787 2.317-2.614 4.084-6.175 5.477L8 16v-.941c6.56-2.566 6.328-6.17 5.986-11.47l-.042-.658C11.75 2.834 9.804 2.159 8 1.033V0Z" fill="#A0A0A0"/><path d="M5.842 5.514h.31a.47.47 0 0 1 .331.136.46.46 0 0 1 .137.327v4.699H5.375V5.977c0-.123.05-.24.137-.327a.47.47 0 0 1 .33-.136ZM8 7.802h.31a.47.47 0 0 1 .331.136.46.46 0 0 1 .137.327v2.41H7.532v-2.41c0-.123.049-.24.137-.327a.47.47 0 0 1 .33-.136Zm2.285-.885h.31a.47.47 0 0 1 .331.136.46.46 0 0 1 .137.327v3.296H9.817V7.38c0-.123.05-.24.137-.327a.47.47 0 0 1 .33-.136Z" fill="#E0E0E0"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="#fff" d="M0 0h16v16H0z"/><path d="M8.276 5.908h-.552a.835.835 0 0 0-.587.24.818.818 0 0 0-.243.582v5.855h2.212V6.73a.818.818 0 0 0-.243-.582.835.835 0 0 0-.587-.24ZM11.828 3.415h-.551a.834.834 0 0 0-.587.241.818.818 0 0 0-.243.582v8.347h2.212V4.238a.818.818 0 0 0-.244-.582.834.834 0 0 0-.587-.24ZM4.723 7.48H4.17a.835.835 0 0 0-.587.24.818.818 0 0 0-.243.582v4.283h2.212V8.302a.818.818 0 0 0-.243-.581.835.835 0 0 0-.587-.241Z" fill="#7B7B7B"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><g fill="none" fill-rule="evenodd" clip-rule="evenodd"><path d="M43.302 1.481a2 2 0 0 1 .217 2.82l-12 14a2 2 0 0 1-2.151.596L18.424 15.25 7.28 24.536a2 2 0 1 1-2.56-3.072l12-10a2 2 0 0 1 1.913-.361l10.724 3.574L40.48 1.698a2 2 0 0 1 2.82-.217Z" fill="#D6D8DA"/><path d="M42 6a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM18 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM6 26a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm27-9a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z" fill="#95999D"/><path d="M40 16a2 2 0 0 0-2 2v28a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2V18a2 2 0 0 0-2-2h-4ZM16 26a2 2 0 0 0-2 2v18a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2V28a2 2 0 0 0-2-2h-4ZM4 36a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2H4Zm22-4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V32Z" fill="#5D6165"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><g fill="none" fill-rule="evenodd"><path fill="#d6d8da" d="M8 0h25.086a1 1 0 0 1 .707.293l9.914 9.914a1 1 0 0 1 .293.707V45a3 3 0 0 1-3 3H8a3 3 0 0 1-3-3V3a3 3 0 0 1 3-3Z"/><path fill="#5d6165" d="M32 0v12h12v-1.086a1 1 0 0 0-.293-.707L33.793.293A1 1 0 0 0 33.086 0H32Z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><path id="a" d="M46 23c0 12.704-10.298 23-23 23C10.296 46 0 35.704 0 23 0 10.3 10.296 0 23 0c12.702 0 23 10.3 23 23Z"/></defs><g transform="translate(1 1)" fill="none" fill-rule="evenodd"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><use fill="#d6d8da" xlink:href="#a"/><path fill="#5d6165" d="M9 25a6 6 0 0 1 6 6v16H3V31a6 6 0 0 1 6-6Zm0-2a6 6 0 1 1 0-12 6 6 0 0 1 0 12Zm28 0a6 6 0 1 1 0-12 6 6 0 0 1 0 12Zm-14 8a6 6 0 1 1 0-12 6 6 0 0 1 0 12Zm14-6a6 6 0 0 1 6 6v16H31V31a6 6 0 0 1 6-6Zm-14 8a6 6 0 0 1 6 6v8H17v-8a6 6 0 0 1 6-6Z" mask="url(#b)"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><g fill="none" fill-rule="evenodd"><path fill="#d6d8da" d="M3.002 43A2.001 2.001 0 0 1 1 41.003V2.997C1 1.894 1.89 1 2.991 1H23l10 10v32H3.002Z"/><path fill="#5d6165" d="m23 1 10 10h-8c-1.113 0-2-.895-2-2V1Zm3.931 45.452c-1.066.305-1.686-.306-1.38-1.38L27 40.005l13.59-13.592a2 2 0 0 1 2.831.007l2.162 2.162c.784.784.784 2.054.008 2.83L32 45.005l-5.069 1.448ZM16 38h10v2H16v-2Z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><g fill="none" fill-rule="evenodd"><path fill="#D6D8DA" d="M42 0H6a6 6 0 0 0-6 6v36a6 6 0 0 0 6 6h36a6 6 0 0 0 6-6V6a6 6 0 0 0-6-6"/><path fill="#5D6165" d="M24 6A18 18 0 1 1 7.52 31.24l-.2-.45a2 2 0 0 1 3.64-1.65l.1.23a14 14 0 1 0 2.04-14.15 2 2 0 0 1 2.33.38l.1.12a2 2 0 0 1-.13 2.7l-.12.12-6 5a2 2 0 0 1-3.27-1.39L6 22v-8a2 2 0 0 1 3.74-.99A17.98 17.98 0 0 1 24 6zm0 8a2 2 0 0 1 2 2v7.17l3.41 3.42a2 2 0 1 1-2.82 2.82l-4-4A2.05 2.05 0 0 1 22 24v-8c0-1.1.9-2 2-2z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><g fill="none" fill-rule="evenodd"><rect width="48" height="39" y="6" fill="#d6d8da" rx="2"/><path fill="#5d6165" d="M2 3h18.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 0 24.828 6H45a3 3 0 0 1 3 3H24.828a2 2 0 0 0-1.414.586l-1.828 1.828a2 2 0 0 1-1.414.586H0V5a2 2 0 0 1 2-2Z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><g fill="none" fill-rule="evenodd"><path fill="#5d6165" d="M6.001 21v26h36V21l4.292 4.293a1 1 0 0 0 1.414 0l.086-.086a1 1 0 0 0 0-1.414L38 14V4a1 1 0 0 0-1-1H32a1 1 0 0 0-1 1v3L24.707.707a1 1 0 0 0-1.414 0L.207 23.793a1 1 0 0 0 0 1.414l.087.086a1 1 0 0 0 1.414 0L6 21Z"/><path fill="#d6d8da" d="M14 33h8v14h-8z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><g fill="none" fill-rule="evenodd"><path fill="#D6D8DA" d="M48 40a2 2 0 0 1-2 2H36v-4.5c0-.83-.66-1.5-1.5-1.5H33c-.83 0-1.5.67-1.5 1.5V42h-15v-4.5c0-.83-.66-1.5-1.5-1.5h-1.5c-.83 0-1.5.67-1.5 1.5V42H2a2 2 0 0 1-2-2V8c0-1.1.9-2 2-2h44a2 2 0 0 1 2 2v32z"/><path fill="#5D6165" d="M25.5 13.5h9V15h-9v-1.5zm0 4.5H42v1.5H25.5V18zm0 4.5H42V24H25.5v-1.5zm0 4.5H42v1.5H25.5V27zm-12-4.88c-2.49 0-4.5-2.26-4.5-5.06S11.01 12 13.5 12s4.5 2.27 4.5 5.06c0 2.8-2.01 5.06-4.5 5.06zm-9 5.63c0-1.13 2.25-4.5 4.5-4.5s1.13 1.13 4.5 1.13c3.38 0 2.25-1.13 4.5-1.13s4.5 3.38 4.5 4.5c0 1.13 0 2.25-1.13 2.25H5.63C4.5 30 4.5 28.87 4.5 27.75z"/></g></svg>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48">
2
+ <g fill="none" fill-rule="evenodd">
3
+ <circle cx="24" cy="24" r="24" fill="#d6d8da"/>
4
+ <path fill="#5d6165" d="M24,14 C20.6862915,14 18,11.3137085 18,8 C18,4.6862915 20.6862915,2 24,2 C27.3137085,2 30,4.6862915 30,8 C30,11.3137085 27.3137085,14 24,14 Z M32.660254,19 C31.0033998,16.1302443 31.9866507,12.4607018 34.8564065,10.8038476 C37.7261622,9.14699333 41.3957046,10.1302443 43.0525589,13 C44.7094131,15.8697557 43.7261622,19.5392982 40.8564065,21.1961524 C37.9866507,22.8530067 34.3171083,21.8697557 32.660254,19 Z M32.660254,29 C34.3171083,26.1302443 37.9866507,25.1469933 40.8564065,26.8038476 C43.7261622,28.4607018 44.7094131,32.1302443 43.0525589,35 C41.3957046,37.8697557 37.7261622,38.8530067 34.8564065,37.1961524 C31.9866507,35.5392982 31.0033998,31.8697557 32.660254,29 Z M24,34 C27.3137085,34 30,36.6862915 30,40 C30,43.3137085 27.3137085,46 24,46 C20.6862915,46 18,43.3137085 18,40 C18,36.6862915 20.6862915,34 24,34 Z M15.339746,29 C16.9966002,31.8697557 16.0133493,35.5392982 13.1435935,37.1961524 C10.2738378,38.8530067 6.60429537,37.8697557 4.94744112,35 C3.29058687,32.1302443 4.2738378,28.4607018 7.14359354,26.8038476 C10.0133493,25.1469933 13.6828917,26.1302443 15.339746,29 Z M15.339746,19 C13.6828917,21.8697557 10.0133493,22.8530067 7.14359354,21.1961524 C4.2738378,19.5392982 3.29058687,15.8697557 4.94744112,13 C6.60429537,10.1302443 10.2738378,9.14699333 13.1435935,10.8038476 C16.0133493,12.4607018 16.9966002,16.1302443 15.339746,19 Z M24,30 C20.6862915,30 18,27.3137085 18,24 C18,20.6862915 20.6862915,18 24,18 C27.3137085,18 30,20.6862915 30,24 C30,27.3137085 27.3137085,30 24,30 Z"/>
5
+ <circle cx="36" cy="36" r="12" fill="#5d6165"/>
6
+ <path fill="#FFFFFF" fill-rule="nonzero" d="M31.7071068,37.2928932 C31.3165825,36.9023689 30.6834175,36.9023689 30.2928932,37.2928932 C29.9023689,37.6834175 29.9023689,38.3165825 30.2928932,38.7071068 L32.2928932,40.7071068 C32.6834175,41.0976311 33.3165825,41.0976311 33.7071068,40.7071068 L41.7071068,32.7071068 C42.0976311,32.3165825 42.0976311,31.6834175 41.7071068,31.2928932 C41.3165825,30.9023689 40.6834175,30.9023689 40.2928932,31.2928932 L33,38.5857864 L31.7071068,37.2928932 Z"/>
7
+ </g>
8
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><g fill="none" fill-rule="evenodd"><circle cx="24" cy="24" r="24" fill="#d6d8da"/><path fill="#5d6165" d="M24 14a6 6 0 1 1 0-12 6 6 0 0 1 0 12Zm8.66 5a6 6 0 1 1 10.393-6 6 6 0 0 1-10.393 6Zm0 10a6 6 0 1 1 10.393 6 6 6 0 0 1-10.393-6ZM24 34a6 6 0 1 1 0 12 6 6 0 0 1 0-12Zm-8.66-5a6 6 0 1 1-10.393 6 6 6 0 0 1 10.393-6Zm0-10a6 6 0 1 1-10.393-6 6 6 0 0 1 10.393 6ZM24 30a6 6 0 1 1 0-12 6 6 0 0 1 0 12Z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M8 0c3.99 0 7 2.866 7 6.667 0 4.782-6.508 9.089-6.784 9.27a.398.398 0 0 1-.432 0C7.507 15.756 1 11.45 1 6.667 1 2.866 4.01 0 8 0Zm0 9a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z" fill="#5d6165" fill-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M24 0c13.255 0 24 10.745 24 24S37.255 48 24 48 0 37.255 0 24 10.745 0 24 0" fill="#d6d8da"/><path d="m26.536 36.393 6.928-4 .006.01A3.984 3.984 0 0 1 32 37.857a3.997 3.997 0 0 1-5.458-1.454l-.006-.01Zm-1-1.732-6.917 3.993a2.002 2.002 0 0 1-2.744-.726 2.007 2.007 0 0 1 .733-2.731l-2-3.464c-2.45-4.243-3.257-10.974.301-15.48l-.379-.655A3.985 3.985 0 0 1 16 10.144a3.995 3.995 0 0 1 5.458 1.454l.38.656c5.68-.828 11.104 3.236 13.554 7.478l2 3.465a1.994 1.994 0 0 1 2.732.732 2.004 2.004 0 0 1-.743 2.738l-6.917 3.994-6.928 4Z" fill="#5d6165"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M24 36 9.893 43.416l2.694-15.708L1.175 16.584l15.772-2.292L24 0l7.053 14.292 15.772 2.292-11.412 11.124 2.694 15.708L24 36Z" fill="#D1D5DB"/><path d="M12.587 27.708 9.893 43.416 24 36V0l-7.053 14.292-15.772 2.292 11.412 11.124Z" fill="#5D6165"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><g fill="none" fill-rule="evenodd"><path fill="#5d6165" d="M19 24h10v16H19z"/><path fill="#d6d8da" d="M24 28c1.102 0 2 .896 2 2 0 .736-.406 1.374-1 1.72V37c0 .55-.45 1-1 1-.552 0-1-.45-1-1v-5.28c-.596-.346-1-.984-1-1.72a2 2 0 0 1 2-2ZM6 21v24a3 3 0 0 0 3 3h30a3 3 0 0 0 3-3V21a3 3 0 0 0-3-3h-3v-6c0-6.618-5.384-12-12-12-6.618 0-12 5.382-12 12h2c0-5.514 4.484-10 10-10 5.514 0 10 4.486 10 10v6H9a3 3 0 0 0-3 3Z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><g fill="none" fill-rule="evenodd"><path fill="#5d6165" d="M19 24h10v16H19z"/><path fill="#d6d8da" d="M24 28c1.102 0 2 .896 2 2 0 .736-.406 1.374-1 1.72V37c0 .55-.45 1-1 1-.552 0-1-.45-1-1v-5.28c-.596-.346-1-.984-1-1.72a2 2 0 0 1 2-2ZM6 21v24a3 3 0 0 0 3 3h30a3 3 0 0 0 3-3V21a3 3 0 0 0-3-3h-3v-6c0-6.618-5.384-12-12-12-6.618 0-12 5.382-12 12h2c0-5.514 4.484-10 10-10 5.514 0 10 4.486 10 10v6H9a3 3 0 0 0-3 3Z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="48" viewBox="0 0 48 48"><defs><path id="a" d="M0 0h32v26H0V0Zm0 0v20h23a3 3 0 0 0 3-3V0H0Z"/><path id="c" d="M0 0h32v26H0V0Zm0 0v20h23a3 3 0 0 0 3-3V0H0Z"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(8 11)"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><rect width="32" height="26" fill="#d6d8da" mask="url(#b)" rx="2"/><path fill="#5d6165" d="m0 20 6.29-6.29a.999.999 0 0 1 1.416-.004L11 17l8.294-8.294a1.003 1.003 0 0 1 1.412 0L32 20v4.002C32 25.106 31.11 26 29.998 26H2.002A2.002 2.002 0 0 1 0 24.002V20Z" mask="url(#b)"/></g><g transform="translate(16 19)"><mask id="d" fill="#fff"><use xlink:href="#c"/></mask><rect width="32" height="26" fill="#d6d8da" mask="url(#d)" rx="2"/><path fill="#5d6165" d="m0 20 6.29-6.29a.999.999 0 0 1 1.416-.004L11 17l8.294-8.294a1.003 1.003 0 0 1 1.412 0L32 20v4.002C32 25.106 31.11 26 29.998 26H2.002A2.002 2.002 0 0 1 0 24.002V20Z" mask="url(#d)"/></g><g transform="translate(0 3)"><rect width="32" height="26" fill="#d6d8da" rx="2"/><path fill="#5d6165" d="m0 20 6.29-6.29a.999.999 0 0 1 1.416-.004L11 17l8.294-8.294a1.003 1.003 0 0 1 1.412 0L32 20v4.002C32 25.106 31.11 26 29.998 26H2.002A2.002 2.002 0 0 1 0 24.002V20Z"/><circle cx="8" cy="7" r="3" fill="#FFF"/><path stroke="#d6d8da" stroke-linecap="round" stroke-linejoin="round" d="m11 16-5.5 5.5L11 16Z"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 6.872A2.369 2.369 0 0 1 2.376 4.5h33.248A2.374 2.374 0 0 1 38 6.872v26.132a2.37 2.37 0 0 1-2.376 2.371H2.376A2.375 2.375 0 0 1 0 33.004V6.872Z" fill="#D1D5DB"/><path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 16.375a3.562 3.562 0 1 0 0-7.125 3.562 3.562 0 0 0 0 7.125" fill="#fff"/><circle cx="36" cy="36" r="12" fill="#5D6165"/><path fill-rule="evenodd" clip-rule="evenodd" d="M42.25 35.078c.051.26.077.568.077.926 0 .358-.026.665-.078.925l1.62 1.333c.131.086.163.203.099.352-.325.95-.859 1.826-1.602 2.628-.104.124-.229.155-.37.094l-2.032-.668c-.52.396-1.08.705-1.68.926l-.409 2c-.026.146-.117.233-.273.258-.56.1-1.094.148-1.602.148a9.212 9.212 0 0 1-1.601-.148c-.157-.024-.248-.11-.274-.259l-.409-1.999a5.979 5.979 0 0 1-1.68-.926l-2.03.668c-.145.062-.268.03-.372-.094-.742-.802-1.275-1.677-1.602-2.628-.065-.148-.032-.266.099-.352l1.62-1.333a4.757 4.757 0 0 1-.078-.925c0-.358.026-.667.078-.926l-1.62-1.332c-.13-.086-.164-.204-.099-.352.326-.95.86-1.826 1.602-2.627.104-.123.228-.154.371-.093l2.031.666a5.988 5.988 0 0 1 1.68-.925l.41-1.999c.025-.148.117-.234.273-.259a8.22 8.22 0 0 1 3.202 0c.156.024.247.111.273.26l.41 1.998c.6.223 1.159.53 1.68.925l2.03-.666c.143-.062.267-.03.371.093.742.802 1.276 1.678 1.602 2.627.064.148.032.266-.098.352l-1.62 1.332ZM36 32.5a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7Z" fill="#fff"/><path fill-rule="evenodd" clip-rule="evenodd" d="M22.912 14.838a1.188 1.188 0 0 1 1.676 0l7.668 7.668c-5.722 1.584-9.972 6.71-10.242 12.87H2.377A2.384 2.384 0 0 1 0 32.997V28.25l7.474-7.474a1.185 1.185 0 0 1 1.677 0l2.712 2.711-5.673 5.694a.841.841 0 0 0 1.19 1.188l5.683-5.681 9.849-9.85Z" fill="#5D6165"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><path id="a" d="M46 23c0 12.704-10.298 23-23 23C10.296 46 0 35.704 0 23 0 10.3 10.296 0 23 0c12.702 0 23 10.3 23 23Z"/></defs><g transform="translate(1 1)" fill="none" fill-rule="evenodd"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><use fill="#d6d8da" xlink:href="#a"/><path fill="#5d6165" d="M23 27c-5.523 0-10-4.701-10-10.5S17.477 6 23 6s10 4.701 10 10.5S28.523 27 23 27Zm0 38c-9.941 0-18-8.059-18-18s8.059-18 18-18 18 8.059 18 18-8.059 18-18 18Z" mask="url(#b)"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><g fill="none" fill-rule="evenodd"><path fill="#5D6165" d="M42 0a6 6 0 0 1 6 6v33a6 6 0 0 1-6 6h-3v3h-9v-3H18v3H9v-3H6a6 6 0 0 1-6-6V6a6 6 0 0 1 6-6h36z"/><path fill="#D1D5DB" d="M39 6H9a3 3 0 0 0-2.98 2.65L6 9v3H4a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h2v9H4a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h2v3a3 3 0 0 0 2.65 2.98L9 39h30a3 3 0 0 0 2.98-2.65L42 36V9a3 3 0 0 0-2.65-2.98L39 6z"/><path fill="#5D6165" d="M24 34a11.5 11.5 0 1 0 0-23 11.5 11.5 0 0 0 0 23zm-7.92-7.07-2.25 1-.67-1.5 2.25-1a.82.82 0 1 1 .67 1.5zm5.45 4.3-.88 2.3-1.54-.59.89-2.3a.82.82 0 1 1 1.53.59zm-5.2-11.67a.82.82 0 0 1-1.06.47l-2.3-.88.59-1.54 2.3.89c.42.16.63.63.47 1.06zM27 21.16a3.29 3.29 0 1 1-6 2.68 3.29 3.29 0 0 1 6-2.68zm2.43 11.51-1.5.67-1-2.25a.82.82 0 1 1 1.5-.67l1 2.25zM20.66 15c-.42.18-.9 0-1.09-.42l-1-2.25 1.5-.67 1 2.25c.19.42 0 .9-.41 1.09zm14.37 10.85-.59 1.54-2.3-.89a.82.82 0 1 1 .59-1.53l2.3.88zm-6.14-13.8-.89 2.3a.82.82 0 1 1-1.53-.58l.88-2.3 1.54.59zm5.95 6.52-2.25 1a.82.82 0 1 1-.67-1.5l2.25-1 .67 1.5z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><g fill="#5d6165" fill-rule="evenodd"><path d="M36.243 8.821 39.51 6.28a.577.577 0 0 1 .75.04l1.42 1.42a.58.58 0 0 1 .04.75l-2.542 3.268c.73.905 1.382 1.876 1.943 2.904l3.99-1.097a.577.577 0 0 1 .677.323l.769 1.857a.58.58 0 0 1-.25.707l-3.596 2.045a19.41 19.41 0 0 1 .679 3.428l4.108.513a.577.577 0 0 1 .501.558v2.01a.58.58 0 0 1-.501.558l-4.108.513a19.41 19.41 0 0 1-.679 3.428l3.596 2.045a.577.577 0 0 1 .25.707l-.77 1.857a.58.58 0 0 1-.676.323l-3.99-1.097a19.534 19.534 0 0 1-1.943 2.904l2.542 3.268a.577.577 0 0 1-.04.75l-1.42 1.42a.58.58 0 0 1-.75.04l-3.268-2.542a19.534 19.534 0 0 1-2.904 1.943l1.097 3.99a.577.577 0 0 1-.323.677l-1.857.769a.58.58 0 0 1-.707-.25l-2.045-3.596a19.41 19.41 0 0 1-3.428.679l-.513 4.108a.577.577 0 0 1-.558.501h-2.01a.58.58 0 0 1-.558-.501l-.513-4.108a19.41 19.41 0 0 1-3.428-.679l-2.045 3.596a.577.577 0 0 1-.707.25l-1.857-.77a.58.58 0 0 1-.323-.676l1.097-3.99a19.534 19.534 0 0 1-2.904-1.943L8.49 41.72a.577.577 0 0 1-.75-.04l-1.42-1.42a.58.58 0 0 1-.04-.75l2.542-3.268a19.534 19.534 0 0 1-1.943-2.904l-3.99 1.097a.577.577 0 0 1-.677-.323l-.769-1.857a.58.58 0 0 1 .25-.707l3.596-2.045a19.41 19.41 0 0 1-.679-3.428l-4.108-.513A.577.577 0 0 1 0 25.005v-2.01a.58.58 0 0 1 .501-.558l4.108-.513a19.41 19.41 0 0 1 .679-3.428L1.692 16.45a.577.577 0 0 1-.25-.707l.77-1.857a.58.58 0 0 1 .676-.323l3.99 1.097a19.534 19.534 0 0 1 1.943-2.904L6.28 8.49a.577.577 0 0 1 .04-.75l1.42-1.42a.58.58 0 0 1 .75-.04l3.268 2.542a19.534 19.534 0 0 1 2.904-1.943l-1.097-3.99a.577.577 0 0 1 .323-.677l1.857-.769a.58.58 0 0 1 .707.25l2.045 3.596a19.41 19.41 0 0 1 3.428-.679l.513-4.108A.577.577 0 0 1 22.995 0h2.01a.58.58 0 0 1 .558.501l.513 4.108a19.41 19.41 0 0 1 3.428.679l2.045-3.596a.577.577 0 0 1 .707-.25l1.857.77a.58.58 0 0 1 .323.676l-1.097 3.99a19.534 19.534 0 0 1 2.904 1.943ZM9 24c0 8.284 6.716 15 15 15 8.284 0 15-6.716 15-15 0-8.284-6.716-15-15-15-8.284 0-15 6.716-15 15Z"/><path d="M24 19.5a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm0 6a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"/><g fill-rule="nonzero"><path d="m20.951 25.869-7.2 10.799 2.497 1.664 7.2-10.8zM27.129 25.103l13.49-.99-.219-2.992-13.49.99zM23.841 20.329l-6-12-2.683 1.341 6 12z"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M24 0c13.255 0 24 10.745 24 24S37.255 48 24 48 0 37.255 0 24 10.745 0 24 0" fill="#D6D8DA"/><path fill-rule="evenodd" clip-rule="evenodd" d="m17.26 20.491 8.027-4.014a4.875 4.875 0 1 1 1.454 2.907l-8.028 4.014a4.928 4.928 0 0 1 0 1.204l8.028 4.014a4.875 4.875 0 1 1-1.454 2.907l-8.028-4.014a4.875 4.875 0 1 1 0-7.018Z" fill="#5D6165"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><g fill="none" fill-rule="evenodd"><path fill="#d6d8da" d="M46.813 45.349 24.895 1.508c-.34-.678-1.45-.678-1.788 0l-22 44A1 1 0 0 0 2 46.956h44.02c.55 0 1-.449 1-1 0-.23-.078-.44-.208-.608Z"/><path fill="#5d6165" d="M24 41.172a1.912 1.912 0 1 1-.003-3.824 1.912 1.912 0 0 1 .004 3.825Zm-1-23.911a1 1 0 0 1 2 0v15.303a1 1 0 0 1-2 0V17.261Z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="#5d6165" fill-rule="evenodd" xmlns="http://www.w3.org/2000/svg"><path d="M5 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"/><path clip-rule="evenodd" d="M2 0a2 2 0 0 0-2 2v5.89a2 2 0 0 0 .586 1.415l5.98 5.973a2.462 2.462 0 0 0 3.481 0l5.236-5.237.002-.002a2.461 2.461 0 0 0 0-3.47L9.303.587A2 2 0 0 0 7.888 0H2Zm0 2h5.888l5.978 5.98a.461.461 0 0 1 0 .649l-5.234 5.236a.46.46 0 0 1-.652 0L2 7.89V2Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><rect fill="#d6d8da" width="38" height="38" rx="2"/><g transform="matrix(1 0 0 -1 11 32)" fill="#5d6165"><rect width="10" height="4" rx="2"/><rect y="8" width="15" height="4" rx="2"/><rect y="16" width="23" height="4" rx="2"/><rect y="24" width="23" height="4" rx="2"/></g><g transform="translate(24 24)"><circle fill="#5d6165" cx="12" cy="12" r="12"/><path d="M12.328 12.333V5.667a.667.667 0 0 0-1.333 0v8h5.333a.667.667 0 0 0 0-1.334h-4Z" stroke="#d6d8da" fill="#d6d8da"/></g><circle fill="#5d6165" cx="6" cy="14" r="2"/><circle fill="#5d6165" cx="6" cy="6" r="2"/><circle fill="#5d6165" cx="6" cy="22" r="2"/><circle fill="#5d6165" cx="6" cy="30" r="2"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><g fill="none" fill-rule="evenodd"><ellipse cx="24" cy="24.5" fill="#5d6165" rx="18" ry="18.5"/><path fill="#d6d8da" d="M42 0c3.308 0 6 2.692 6 6v36c0 3.308-2.692 6-6 6H6c-3.308 0-6-2.692-6-6V6c0-3.308 2.692-6 6-6h36ZM24 40c8.822 0 16-7.178 16-16S32.822 8 24 8 8 15.178 8 24s7.178 16 16 16Zm6-16a1 1 0 0 1 0 2h-8V14a1 1 0 0 1 2 0v10h6Z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M42 0H6C2.692 0 0 2.692 0 6v36c0 3.308 2.692 6 6 6h36c3.308 0 6-2.692 6-6V6c0-3.308-2.692-6-6-6Z" fill="#D6D8DA"/><path fill-rule="evenodd" clip-rule="evenodd" d="M24 6c9.941 0 18 8.06 18 18 0 9.941-8.059 18-18 18A18.003 18.003 0 0 1 7.516 31.24l-.192-.452a2 2 0 0 1 3.64-1.652l.102.233A14.003 14.003 0 0 0 24 38c7.732 0 14-6.268 14-14s-6.268-14-14-14c-4.317 0-8.288 1.97-10.904 5.217a1.999 1.999 0 0 1 2.33.38l.11.123a2 2 0 0 1-.134 2.706l-.122.11-6 5c-1.263 1.053-3.16.214-3.275-1.384L6 22v-8a2 2 0 0 1 3.74-.987A17.981 17.981 0 0 1 24 6Zm0 8a2 2 0 0 1 2 2v7.172l3.414 3.414A1.998 1.998 0 0 1 28 30a1.995 1.995 0 0 1-1.414-.586l-4-3.998A2.05 2.05 0 0 1 22 24v-8a2 2 0 0 1 2-2Z" fill="#5D6165"/></svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cozy-ui",
3
- "version": "70.4.1",
3
+ "version": "70.5.1",
4
4
  "description": "Cozy apps UI SDK",
5
5
  "main": "./index.js",
6
6
  "bin": {
@@ -2,7 +2,7 @@ Provides an easy way to use SVG icons included in Cozy-UI as well
2
2
  as your custom icons.
3
3
 
4
4
  ⚠️ When using `Icon`, you can either give a React component or use the identifier
5
- of an already loaded one. `cozy-ui` ships with built-in icons that you can
5
+ of an already loaded one. `cozy-ui` is shipped with built-in icons, containing Illustrations and SVGr Icons that you can
6
6
  include via `Sprite`. See the example below for how to include `Sprite`.
7
7
  `Sprite` can for example be included in the main `Layout` of your application.
8
8
 
@@ -641,6 +641,138 @@ const availableIcons = ['cozy', 'cloud-broken', 'cozy-logo', 'device-laptop', 'd
641
641
  </div>
642
642
  ```
643
643
 
644
+ ### Permissions Icons
645
+
646
+ ```jsx
647
+ import Icon from 'cozy-ui/transpiled/react/Icon'
648
+ import Typography from 'cozy-ui/transpiled/react/Typography'
649
+ import Dialog from 'cozy-ui/transpiled/react/CozyDialogs/Dialog'
650
+ import { BreakpointsProvider } from 'cozy-ui/transpiled/react/hooks/useBreakpoints'
651
+ import { makeStyles } from '@material-ui/styles'
652
+ import cx from 'classnames'
653
+
654
+ import Accounts from 'cozy-ui/transpiled/react/Icons/Accounts'
655
+ import Apps from 'cozy-ui/transpiled/react/Icons/Apps'
656
+ import BankAccounts from 'cozy-ui/transpiled/react/Icons/BankAccounts'
657
+ import BankGroups from 'cozy-ui/transpiled/react/Icons/BankGroups'
658
+ import BankOperations from 'cozy-ui/transpiled/react/Icons/BankOperations'
659
+ import BankRecurrence from 'cozy-ui/transpiled/react/Icons/BankRecurrence'
660
+ import BillPermissions from 'cozy-ui/transpiled/react/Icons/BillPermissions'
661
+ import BugReport from 'cozy-ui/transpiled/react/Icons/BugReport'
662
+ import CalendarPermissions from 'cozy-ui/transpiled/react/Icons/CalendarPermissions'
663
+ import Category from 'cozy-ui/transpiled/react/Icons/Category'
664
+ import CertifiedPermissions from 'cozy-ui/transpiled/react/Icons/CertifiedPermissions'
665
+ import ConnectedClients from 'cozy-ui/transpiled/react/Icons/ConnectedClients'
666
+ import Consumption from 'cozy-ui/transpiled/react/Icons/Consumption'
667
+ import ContactsAccounts from 'cozy-ui/transpiled/react/Icons/ContactsAccounts'
668
+ import ContactsGroups from 'cozy-ui/transpiled/react/Icons/ContactsGroups'
669
+ import Contacts from 'cozy-ui/transpiled/react/Icons/Contacts'
670
+ import Contract from 'cozy-ui/transpiled/react/Icons/Contract'
671
+ import Ecolyo from 'cozy-ui/transpiled/react/Icons/Ecolyo'
672
+ import Energy from 'cozy-ui/transpiled/react/Icons/Energy'
673
+ import Energybreakdown from 'cozy-ui/transpiled/react/Icons/Energybreakdown'
674
+ import Fallback from 'cozy-ui/transpiled/react/Icons/Fallback'
675
+ import Family from 'cozy-ui/transpiled/react/Icons/Family'
676
+ import FilesPen from 'cozy-ui/transpiled/react/Icons/FilesPen'
677
+ import FilesVersions from 'cozy-ui/transpiled/react/Icons/FilesVersions'
678
+ import Files from 'cozy-ui/transpiled/react/Icons/Files'
679
+ import HomePermissions from 'cozy-ui/transpiled/react/Icons/HomePermissions'
680
+ import Identities from 'cozy-ui/transpiled/react/Icons/Identities'
681
+ import KonnectorsResult from 'cozy-ui/transpiled/react/Icons/KonnectorsResult'
682
+ import Konnectors from 'cozy-ui/transpiled/react/Icons/Konnectors'
683
+ import LocationPermissions from 'cozy-ui/transpiled/react/Icons/LocationPermissions'
684
+ import Notifications from 'cozy-ui/transpiled/react/Icons/Notifications'
685
+ import Opinions from 'cozy-ui/transpiled/react/Icons/Opinions'
686
+ import Passwords from 'cozy-ui/transpiled/react/Icons/Passwords'
687
+ import Permissions from 'cozy-ui/transpiled/react/Icons/Permissions'
688
+ import PhotosAlbum from 'cozy-ui/transpiled/react/Icons/PhotosAlbum'
689
+ import PhotosSettings from 'cozy-ui/transpiled/react/Icons/PhotosSettings'
690
+ import Profile from 'cozy-ui/transpiled/react/Icons/Profile'
691
+ import SafePermissions from 'cozy-ui/transpiled/react/Icons/SafePermissions'
692
+ import Settings from 'cozy-ui/transpiled/react/Icons/Settings'
693
+ import Sharings from 'cozy-ui/transpiled/react/Icons/Sharings'
694
+ import Sinister from 'cozy-ui/transpiled/react/Icons/Sinister'
695
+ import Tags from 'cozy-ui/transpiled/react/Icons/Tags'
696
+ import TaskToEffectuate from 'cozy-ui/transpiled/react/Icons/TaskToEffectuate'
697
+ import Triggers from 'cozy-ui/transpiled/react/Icons/Triggers'
698
+ import Versioning from 'cozy-ui/transpiled/react/Icons/Versioning'
699
+
700
+ const icons = [Accounts, Apps, BankAccounts, BankGroups, BankOperations, BankRecurrence, BillPermissions, BugReport, CalendarPermissions, Category, CertifiedPermissions, ConnectedClients, Consumption, ContactsAccounts, ContactsGroups, Contacts, Contract, Ecolyo, Energy, Energybreakdown, Fallback, Family, FilesPen, FilesVersions, Files, HomePermissions, Identities, KonnectorsResult, Konnectors, LocationPermissions, Notifications, Opinions, Passwords, Permissions, PhotosAlbum, PhotosSettings, Profile, SafePermissions, Settings, Sharings, Sinister, Tags,TaskToEffectuate, Triggers, Versioning]
701
+
702
+ const wrapperStyle = {
703
+ fontSize: '2rem',
704
+ display: 'grid',
705
+ gridTemplateColumns: 'repeat(6, 1fr)'
706
+ }
707
+
708
+ initialState = { size: 16 };
709
+
710
+ const handleInputRangeChange = ev => {
711
+ setState({ size: parseInt(ev.target.value, 10) })
712
+ }
713
+
714
+ const getNameFromIcon = icon => {
715
+ return icon.name.replace(/^Svg/, '')
716
+ }
717
+
718
+ const InfoModal = ({ icon }) => {
719
+ const iconName = getNameFromIcon(icon)
720
+ return <Dialog
721
+ size='large'
722
+ open={true}
723
+ title={<div className='u-ta-center'>{ iconName }</div>}
724
+ onClose={() => setState({ selected: null })}
725
+ content={
726
+ <>
727
+ <Typography variant='body1'>To import {iconName}, copy/paste the following line:</Typography>
728
+ <pre>
729
+ import {iconName}Icon from 'cozy-ui/transpiled/react/Icons/{iconName}'
730
+ </pre>
731
+ </>
732
+ }
733
+ />
734
+ }
735
+
736
+ const useStyles = makeStyles({
737
+ iconTile: {
738
+ cursor: 'pointer',
739
+ '&:hover': {
740
+ 'text-decoration': 'underline'
741
+ }
742
+ }
743
+ })
744
+
745
+ const Example = () => {
746
+ const classes = useStyles()
747
+ return (
748
+ <BreakpointsProvider>
749
+ <Typography component='p' variant='body1' className='u-mb-1'>
750
+ Font size: <input type='range' min='8' max='48' value={state.size} onChange={handleInputRangeChange} /> {state.size}px
751
+ </Typography>
752
+ <div style={wrapperStyle}>
753
+ {
754
+ icons.map(icon => <div
755
+ key={icon}
756
+ className={cx(classes.iconTile, 'u-ta-center u-mb-1')}
757
+ onClick={() => setState({ selected: icon })}
758
+ >
759
+ <Icon icon={ icon } size={state.size} />
760
+ <Typography variant='body1' className='u-mt-half'>
761
+ { getNameFromIcon(icon) }
762
+ </Typography>
763
+ </div>
764
+ )}
765
+ { state.selected ? <InfoModal icon={state.selected} /> : null }
766
+ </div>
767
+ </BreakpointsProvider>
768
+ )
769
+ }
770
+
771
+ ;
772
+
773
+ <Example />
774
+ ```
775
+
644
776
  ### Transform properties
645
777
 
646
778
  Use `spin` and `rotate` if you want you to turn your icons upside down 🙃.
@@ -0,0 +1,22 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh /Users/vdnj/Documents/CozyCloud/cozy-ui/assets/icons/ui/permissions/accounts.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgAccounts(props) {
5
+ return (
6
+ <svg viewBox="0 0 48 48" {...props}>
7
+ <g fill="none" fillRule="evenodd">
8
+ <path
9
+ fill="#d6d8da"
10
+ fillRule="nonzero"
11
+ d="M3 9c0 29.178 11.311 34.3 20.997 39C33.682 43.3 45 38.178 45 9L23.998 0 3 9z"
12
+ />
13
+ <path
14
+ fill="#5d6165"
15
+ d="M22.5 25.244V30.5a1 1 0 001 1h1a1 1 0 001-1v-5.256A4.502 4.502 0 0024 16.5a4.5 4.5 0 00-1.5 8.744zM24 37.5c-8.284 0-15-6.716-15-15 0-8.284 6.716-15 15-15 8.284 0 15 6.716 15 15 0 8.284-6.716 15-15 15z"
16
+ />
17
+ </g>
18
+ </svg>
19
+ )
20
+ }
21
+
22
+ export default SvgAccounts
@@ -0,0 +1,25 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh /Users/vdnj/Documents/CozyCloud/cozy-ui/assets/icons/ui/permissions/apps.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgApps(props) {
5
+ return (
6
+ <svg viewBox="0 0 48 48" {...props}>
7
+ <g fill="none" fillRule="evenodd">
8
+ <path
9
+ fill="#d6d8da"
10
+ d="M25.342 24.67l20.87 10.436a1 1 0 010 1.788L25.341 47.33a3 3 0 01-2.684 0L1.788 36.894a1 1 0 010-1.788l20.87-10.435a3 3 0 012.684 0z"
11
+ />
12
+ <path
13
+ fill="#95999d"
14
+ d="M25.342 12.67l20.87 10.436a1 1 0 010 1.788L25.341 35.33a3 3 0 01-2.684 0L1.788 24.894a1 1 0 010-1.788l20.87-10.435a3 3 0 012.684 0z"
15
+ />
16
+ <path
17
+ fill="#5d6165"
18
+ d="M25.342.67l20.87 10.436a1 1 0 010 1.788L25.341 23.33a3 3 0 01-2.684 0L1.788 12.894a1 1 0 010-1.788L22.659.67a3 3 0 012.684 0z"
19
+ />
20
+ </g>
21
+ </svg>
22
+ )
23
+ }
24
+
25
+ export default SvgApps
@@ -0,0 +1,18 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh /Users/vdnj/Documents/CozyCloud/cozy-ui/assets/icons/ui/permissions/bank-accounts.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgBankAccounts(props) {
5
+ return (
6
+ <svg viewBox="0 0 48 48" {...props}>
7
+ <g fill="none" fillRule="evenodd">
8
+ <path fill="#d6d8da" d="M0 4h46v40H0z" />
9
+ <path
10
+ fill="#5d6165"
11
+ d="M38 18h8a2 2 0 012 2v8a2 2 0 01-2 2h-8a6 6 0 110-12zm0 8a2 2 0 100-4 2 2 0 000 4z"
12
+ />
13
+ </g>
14
+ </svg>
15
+ )
16
+ }
17
+
18
+ export default SvgBankAccounts
@@ -0,0 +1,26 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh /Users/vdnj/Documents/CozyCloud/cozy-ui/assets/icons/ui/permissions/bank-groups.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgBankGroups(props) {
5
+ return (
6
+ <svg viewBox="0 0 48 48" {...props}>
7
+ <g fill="none" fillRule="evenodd">
8
+ <path fill="#d6d8da" d="M0 0h38v32H0z" />
9
+ <path
10
+ fill="#5d6165"
11
+ d="M31 12h7a2 2 0 012 2v6a2 2 0 01-2 2h-7a5 5 0 010-10zm0 7a2 2 0 100-4 2 2 0 000 4z"
12
+ />
13
+ <g transform="translate(24 24)">
14
+ <circle cx={12} cy={12} r={12} fill="#5d6165" />
15
+ <path
16
+ fill="#FFF"
17
+ fillRule="nonzero"
18
+ d="M20.29 13.71a1.01 1.01 0 000-1.42l-6.58-6.58c-.392-.392-1.163-.71-1.707-.71H5.997C5.447 5 5 5.453 5 5.997v6.006c0 .55.324 1.32.71 1.707l6.58 6.58a1.01 1.01 0 001.42 0l6.58-6.58zM9.002 11a2 2 0 110-4 2 2 0 010 4z"
19
+ />
20
+ </g>
21
+ </g>
22
+ </svg>
23
+ )
24
+ }
25
+
26
+ export default SvgBankGroups
@@ -0,0 +1,22 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh /Users/vdnj/Documents/CozyCloud/cozy-ui/assets/icons/ui/permissions/bank-operations.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgBankOperations(props) {
5
+ return (
6
+ <svg viewBox="0 0 48 48" {...props}>
7
+ <g fill="none" fillRule="evenodd">
8
+ <path
9
+ d="M24 0C10.766 0 0 10.766 0 24c0 13.232 10.766 24 24 24 13.232 0 24-10.768 24-24C48 10.766 37.232 0 24 0z"
10
+ fill="#d6d8da"
11
+ fillRule="nonzero"
12
+ />
13
+ <path
14
+ d="M33.933 16.376C32.149 13.856 29.827 12 25.72 12c-4.779 0-8.211 3.215-9.558 7.69H13v2.818h2.625c-.067.498-.067 1.028-.067 1.525 0 .431 0 .862.033 1.26H13v2.85h3.063C17.375 32.852 20.875 36 25.855 36c3.836 0 6.226-1.923 8.144-4.674l-2.962-2.155c-1.548 2.022-2.894 3.183-5.149 3.183-2.625 0-4.543-1.592-5.485-4.21h7.27v-2.851h-7.91c-.033-.431-.033-.862-.033-1.326 0-.497 0-.995.067-1.459h7.875v-2.817h-7.235c.942-2.487 2.793-4.045 5.182-4.045 2.356 0 3.736 1.061 5.183 3.017l3.13-2.287z"
15
+ fill="#5d6165"
16
+ />
17
+ </g>
18
+ </svg>
19
+ )
20
+ }
21
+
22
+ export default SvgBankOperations
@@ -0,0 +1,25 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh /Users/vdnj/Documents/CozyCloud/cozy-ui/assets/icons/ui/permissions/bank-recurrence.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgBankRecurrence(props) {
5
+ return (
6
+ <svg viewBox="0 0 48 48" {...props}>
7
+ <g fill="none">
8
+ <path
9
+ d="M24 0C10.766 0 0 10.766 0 24c0 13.232 10.766 24 24 24 13.232 0 24-10.768 24-24C48 10.766 37.232 0 24 0z"
10
+ fill="#D6D8DA"
11
+ />
12
+ <path
13
+ d="M29.958 19.735C28.854 18.16 27.417 17 24.875 17c-2.958 0-5.083 2.01-5.917 4.807H17v1.76h1.625c-.042.311-.042.643-.042.954 0 .27 0 .538.021.787H17v1.782h1.896c.812 2.942 2.979 4.91 6.062 4.91 2.375 0 3.855-1.202 5.042-2.921l-1.833-1.347c-.959 1.264-1.792 1.989-3.188 1.989-1.625 0-2.812-.994-3.396-2.631h4.5v-1.782h-4.895c-.021-.27-.021-.539-.021-.829 0-.31 0-.621.041-.911h4.875v-1.761h-4.479c.584-1.554 1.73-2.528 3.209-2.528 1.458 0 2.312.663 3.208 1.885l1.937-1.43z"
14
+ fill="#5D6165"
15
+ />
16
+ <path
17
+ d="M24 6c8.984 0 16.593 6.625 17.829 15.524 1.235 8.9-4.28 17.347-12.925 19.795-8.644 2.448-17.77-1.853-21.384-10.079l-.2-.45a2 2 0 013.64-1.65l.1.23a14 14 0 102.04-14.15 2 2 0 012.33.38l.1.12a2 2 0 01-.13 2.7l-.12.12-6 5a2 2 0 01-3.27-1.39L6 22v-8a2 2 0 013.74-.99A17.98 17.98 0 0124 6z"
18
+ fill="#5D6165"
19
+ />
20
+ </g>
21
+ </svg>
22
+ )
23
+ }
24
+
25
+ export default SvgBankRecurrence
@@ -0,0 +1,25 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh /Users/vdnj/Documents/CozyCloud/cozy-ui/assets/icons/ui/permissions/bill.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgBill(props) {
5
+ return (
6
+ <svg viewBox="0 0 48 48" {...props}>
7
+ <g fill="none" fillRule="evenodd">
8
+ <path
9
+ fill="#d6d8da"
10
+ d="M9 47c-1.105 0-2-.898-2-2.006V3.006C7 1.898 7.89 1 8.991 1H29l12 12v32c0 1.105-.892 2-2 2H9z"
11
+ />
12
+ <path fill="#5d6165" d="M29 1v9.991A2.01 2.01 0 0031.009 13H41L29 1z" />
13
+ <path
14
+ stroke="#5d6165"
15
+ strokeWidth={2}
16
+ strokeLinecap="round"
17
+ strokeLinejoin="round"
18
+ d="M35 41H13V17h22zM13 22h22m-22 6h22m-22 6h22M20 17v24"
19
+ />
20
+ </g>
21
+ </svg>
22
+ )
23
+ }
24
+
25
+ export default SvgBill