@gravitee/ui-components 3.24.5 → 3.25.0-fix-gvcode-15ce1d2

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 (114) hide show
  1. package/CHANGELOG.md +1270 -0
  2. package/LICENSE.txt +202 -0
  3. package/README.md +195 -0
  4. package/assets/i18n/en.json +3 -0
  5. package/assets/i18n/fr.json +3 -0
  6. package/assets/icons/design.svg +1 -1
  7. package/package.json +1 -1
  8. package/src/.eslintrc.js +19 -0
  9. package/src/atoms/gv-autocomplete.js +156 -132
  10. package/src/atoms/gv-button.js +248 -73
  11. package/src/atoms/gv-checkbox.js +103 -45
  12. package/src/atoms/gv-date-picker-calendar.js +393 -312
  13. package/src/atoms/gv-date-picker-cell.js +81 -57
  14. package/src/atoms/gv-date-picker.js +319 -180
  15. package/src/atoms/gv-file-upload.js +195 -85
  16. package/src/atoms/gv-icon.js +34 -13
  17. package/src/atoms/gv-image.js +66 -31
  18. package/src/atoms/gv-input-message.js +37 -12
  19. package/src/atoms/gv-input.js +148 -117
  20. package/src/atoms/gv-link.js +125 -47
  21. package/src/atoms/gv-message.js +69 -18
  22. package/src/atoms/gv-metric.js +68 -19
  23. package/src/atoms/gv-relative-time.js +38 -67
  24. package/src/atoms/gv-select-native.js +215 -96
  25. package/src/atoms/gv-select.js +230 -110
  26. package/src/atoms/gv-spinner.js +26 -5
  27. package/src/atoms/gv-state.js +66 -25
  28. package/src/atoms/gv-switch.js +160 -40
  29. package/src/atoms/gv-tag.js +78 -26
  30. package/src/atoms/gv-text.js +83 -22
  31. package/src/charts/gv-chart-bar.js +18 -22
  32. package/src/charts/gv-chart-gauge.js +31 -28
  33. package/src/charts/gv-chart-histogram.js +10 -18
  34. package/src/charts/gv-chart-line.js +59 -70
  35. package/src/charts/gv-chart-map.js +42 -44
  36. package/src/charts/gv-chart-pie.js +14 -18
  37. package/src/index.js +0 -1
  38. package/src/lib/cron-expression.js +35 -40
  39. package/src/lib/date.js +1 -10
  40. package/src/lib/events.js +1 -3
  41. package/src/lib/http-client-schema-form.js +12 -13
  42. package/src/lib/http.js +56 -57
  43. package/src/lib/i18n.js +22 -30
  44. package/src/lib/item.js +12 -13
  45. package/src/lib/properties.js +42 -77
  46. package/src/lib/schema-form.js +5 -4
  47. package/src/lib/studio.js +60 -13
  48. package/src/lib/style.js +8 -8
  49. package/src/lib/text-format.js +7 -14
  50. package/src/lib/theme.js +5 -8
  51. package/src/lib/utils.js +18 -17
  52. package/src/mixins/chart-element.js +54 -31
  53. package/src/mixins/input-element.js +47 -60
  54. package/src/mixins/item-resource.js +32 -34
  55. package/src/mixins/keyboard-element.js +5 -6
  56. package/src/mixins/update-after-browser.js +1 -4
  57. package/src/mixins/with-resize-observer.js +13 -23
  58. package/src/mixins/with-skeleton-attribute.js +48 -54
  59. package/src/molecules/gv-card-full.js +147 -26
  60. package/src/molecules/gv-card-list.js +42 -13
  61. package/src/molecules/gv-card.js +91 -17
  62. package/src/molecules/gv-category-list.js +17 -6
  63. package/src/molecules/gv-category.js +103 -23
  64. package/src/molecules/gv-code.js +143 -81
  65. package/src/molecules/gv-confirm.js +71 -41
  66. package/src/molecules/gv-cron-editor.js +389 -143
  67. package/src/molecules/gv-dropdown-menu.js +46 -14
  68. package/src/molecules/gv-expandable.js +59 -31
  69. package/src/molecules/gv-expression-language.js +138 -176
  70. package/src/molecules/gv-identity-picture.js +65 -42
  71. package/src/molecules/gv-list.js +134 -42
  72. package/src/molecules/gv-metrics.js +49 -37
  73. package/src/molecules/gv-modal.js +95 -28
  74. package/src/molecules/gv-nav.js +75 -49
  75. package/src/molecules/gv-option.js +130 -57
  76. package/src/molecules/gv-plans.js +209 -86
  77. package/src/molecules/gv-popover.js +177 -57
  78. package/src/molecules/gv-promote.js +146 -28
  79. package/src/molecules/gv-rating-list.js +195 -69
  80. package/src/molecules/gv-rating.js +105 -52
  81. package/src/molecules/gv-row-expandable.js +11 -5
  82. package/src/molecules/gv-row.js +147 -21
  83. package/src/molecules/gv-stats.js +48 -23
  84. package/src/molecules/gv-stepper.js +187 -43
  85. package/src/molecules/gv-table.js +309 -199
  86. package/src/molecules/gv-tree.js +156 -33
  87. package/src/organisms/gv-documentation.js +128 -45
  88. package/src/organisms/gv-header.js +195 -37
  89. package/src/organisms/gv-http-client.js +168 -32
  90. package/src/organisms/gv-menu.js +158 -37
  91. package/src/organisms/gv-newsletter-subscription.js +189 -48
  92. package/src/organisms/gv-pagination.js +77 -49
  93. package/src/organisms/gv-properties.js +492 -271
  94. package/src/organisms/gv-resizable-views.js +259 -41
  95. package/src/organisms/gv-resources.js +275 -168
  96. package/src/organisms/gv-schema-form-array.js +159 -49
  97. package/src/organisms/gv-schema-form-control-object.js +73 -59
  98. package/src/organisms/gv-schema-form-control.js +134 -107
  99. package/src/organisms/gv-schema-form.js +324 -195
  100. package/src/organisms/gv-tabs.js +98 -66
  101. package/src/organisms/gv-user-menu.js +201 -36
  102. package/src/organisms/gv-vertical-menu.js +61 -20
  103. package/src/policy-studio/gv-flow-step.js +266 -105
  104. package/src/policy-studio/gv-flow.js +304 -125
  105. package/src/policy-studio/gv-policy-studio-menu.js +471 -157
  106. package/src/policy-studio/gv-policy-studio.js +777 -686
  107. package/src/styles/empty.js +20 -3
  108. package/src/styles/input.js +247 -3
  109. package/src/styles/link.js +16 -3
  110. package/src/styles/shapes.js +0 -1
  111. package/src/styles/skeleton.js +37 -3
  112. package/src/styles/zoom.js +24 -3
  113. package/src/theme/definition.json +1762 -0
  114. package/src/theme/gv-theme.js +60 -21
package/LICENSE.txt ADDED
@@ -0,0 +1,202 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "{}"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright {yyyy} {name of copyright owner}
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
202
+
package/README.md ADDED
@@ -0,0 +1,195 @@
1
+ # Welcome to Gravitee.io UI Components
2
+
3
+ ## User guide
4
+
5
+ To use the Gravitee.io component library in your app just run:
6
+
7
+ ```bash
8
+ npm install --save @gravitee/ui-components
9
+ # Or
10
+ yarn add @gravitee/ui-components
11
+ ```
12
+
13
+ ### Configuration
14
+
15
+ The components are based on a set of files to manage **icons**, **images**, **i18n** or even for **CSS**.
16
+ When we publish the dist folder, we also publish the assets, you can get them in folder `@gravitee/ui-components/assets`.
17
+ To use them in an application, it is necessary to add some configuration to expose the folders on the correct paths.
18
+
19
+ When working with Webpack directly you need to update the configuration:
20
+
21
+ **webpack.conf.js**
22
+
23
+ ```javascript
24
+ const CopyPlugin = require('copy-webpack-plugin');
25
+
26
+ module.exports = {
27
+ plugins: [
28
+ new CopyPlugin({
29
+ patterns: [
30
+ { from: 'node_modules/@gravitee/ui-components/assets/images', to: 'images' },
31
+ { from: 'node_modules/@gravitee/ui-components/assets/css', to: 'css' },
32
+ { from: 'node_modules/@gravitee/ui-components/assets/svg', to: 'svg' },
33
+ { from: 'node_modules/@gravitee/ui-components/assets/i18n', to: 'i18n' },
34
+ ],
35
+ }),
36
+ ],
37
+ };
38
+ ```
39
+
40
+ When working with Angular then update your `angular.json` file:
41
+
42
+ **angular.json**
43
+
44
+ ```json
45
+ {
46
+ "architect": {
47
+ "build": {
48
+ "builder": "@angular-devkit/build-angular:browser",
49
+ "options": {
50
+ "index": "src/index.html",
51
+ "main": "src/main.ts",
52
+ "assets": [
53
+ "src/favicon.ico",
54
+ "src/favicon.png",
55
+ "src/assets",
56
+ {
57
+ "glob": "**/*",
58
+ "input": "node_modules/@gravitee/ui-components/assets/images",
59
+ "output": "images/"
60
+ },
61
+ {
62
+ "glob": "**/*.css",
63
+ "input": "node_modules/@gravitee/ui-components/assets/css",
64
+ "output": "css/"
65
+ },
66
+ {
67
+ "glob": "**/*.svg",
68
+ "input": "node_modules/@gravitee/ui-components/assets/icons",
69
+ "output": "icons/"
70
+ },
71
+ {
72
+ "glob": "**/*.json",
73
+ "input": "node_modules/@gravitee/ui-components/assets/i18n",
74
+ "output": "i18n/"
75
+ }
76
+ ]
77
+ }
78
+ }
79
+ }
80
+ }
81
+ ```
82
+
83
+ ### I18n
84
+
85
+ Some components use i18n, if you didn't need it, you can load the default `EN` translations when your app starts.
86
+
87
+ ```js
88
+ import { loadDefaultTranslations } from '@gravitee/ui-components/src/lib/i18n';
89
+
90
+ loadDefaultTranslations();
91
+ ```
92
+
93
+ ### Using in Angular app
94
+
95
+ **First import the component**
96
+
97
+ ```js
98
+ import { FormGroup, FormControl } from '@angular/forms';
99
+
100
+ import '@gravitee/ui-components/wc/gv-input';
101
+ import '@gravitee/ui-components/wc/gv-button';
102
+ ```
103
+
104
+ **Use in template, like an simple HTML element**
105
+
106
+ ```html
107
+ <form [formGroup]="loginForm" (ngSubmit)="login()">
108
+ <div>
109
+ <gv-input autofocus name="username" formControlName="username" ngDefaultControl gvControl icon-left="communication:shield-user">
110
+ </gv-input>
111
+ <gv-input type="password" name="password" formControlName="password" ngDefaultControl gvControl icon-left="general:shield-protected">
112
+ </gv-input>
113
+ </div>
114
+
115
+ <div>
116
+ <gv-button class="signin" primary icon="navigation:sign-in" type="submit">Login</gv-button>
117
+ </div>
118
+ </form>
119
+ ```
120
+
121
+ ### Upgrade
122
+
123
+ Read the changelog and be careful with breaking changes or notes about upgrade of dependencies.
124
+
125
+ To install the desired version:
126
+
127
+ ```
128
+ npm install --save @gravitee/ui-components@{version}
129
+ ```
130
+
131
+ _TIP_: You can clean the **package-lock.json** and remove duplicate dependencies with `npm dedupe`
132
+
133
+ ## Developers guide
134
+
135
+ ### Install
136
+
137
+ - Install [nvm](https://github.com/nvm-sh/nvm)
138
+ - Use with `nvm use` or install with `nvm install` the node version declared in `.nvmrc`
139
+ - Then install node modules with: `npm install`
140
+
141
+ ### Tasks
142
+
143
+ The available NPM scripts are:
144
+
145
+ - `npm run serve`: start Storybook in dev mode
146
+ - `npm run lint`: run eslint and prettier
147
+ - `npm run lint:fix`: run eslint with autofix and prettier in write mode
148
+ - `npm run test`: run the unit tests
149
+ - `npm run test -- --collect-coverage`: run the unit tests with coverage
150
+ - `npm run docs`: generate the documentation
151
+ - `npm run build`: build storybook
152
+ - `npm run serve:prod`: start Storybook in prod mode
153
+ - `npm run generate:dist`: build components to use them in your project
154
+ - `npm run generate:icons`: build icons files from svg files
155
+ - `npm run generate:theme`: generate theme file based on css custom properties defined in each component file
156
+
157
+ If you want link for use in other local project as dependency:
158
+
159
+ ```bash
160
+ npm link
161
+ cd ../my-project
162
+ npm link @gravitee/ui-components
163
+ ```
164
+
165
+ If you want link the prod version in other local project:
166
+
167
+ ```bash
168
+ npm run build
169
+ cd dist
170
+ npm link
171
+ cd ../my-project
172
+ npm link @gravitee/ui-components
173
+ ```
174
+
175
+ ## Renovate
176
+
177
+ Some components are based on third party libraries, for integration into a web component, we extract the css from its libraries as assets.
178
+
179
+ WARNING: When `highlight.js` or `github-markdown-css` are updated, we must run `npm run build` task to update the css.
180
+
181
+ ## Contributing
182
+
183
+ You think Gravitee.io is awesome and want to contribute to the project?
184
+ Here are few [guidelines](https://github.com/gravitee-io/gravitee-ui-components/blob/master/CONTRIBUTING.md) that should help you get started.
185
+
186
+ ## Copyright
187
+
188
+ Copyright (C) 2015 The Gravitee team (http://gravitee.io)
189
+ Licensed under the Apache License, Version 2.0 (the "License");
190
+
191
+ See the [LICENSE](https://github.com/gravitee-io/gravitee-ui-components/blob/master/LICENSE.txt) file for details.
192
+
193
+ ## Changelog
194
+
195
+ Refer to the [CHANGELOG](https://github.com/gravitee-io/gravitee-ui-components/blob/master/CHANGELOG.md) for a complete list of changes.
@@ -88,6 +88,9 @@
88
88
  "manual": "Manual validation"
89
89
  }
90
90
  },
91
+ "gv-policy-studio": {
92
+ "policy-settings": "Settings"
93
+ },
91
94
  "gv-promote": {
92
95
  "empty": "No information to display",
93
96
  "error": "An error has occurred",
@@ -88,6 +88,9 @@
88
88
  "manual": "Validation manuelle"
89
89
  }
90
90
  },
91
+ "gv-policy-studio": {
92
+ "policy-settings": "Settings"
93
+ },
91
94
  "gv-promote": {
92
95
  "empty": "Aucun élément à afficher ici",
93
96
  "error": "Une erreur est survenue pendant le chargement",
@@ -1 +1 @@
1
- <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs/><symbol id="adjust" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 24c0 8.837 7.163 16 16 16s16-7.163 16-16S32.837 8 24 8 8 15.163 8 24Zm4 0c0 6.627 5.373 12 12 12V12c-6.627 0-12 5.373-12 12Z"/></symbol><symbol id="anchor-center-down" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M24 44a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M26 14v15a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V14h-5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5Z"/></symbol><symbol id="anchor-center-up" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M24 16a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M26 22v15a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V22h-5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5Z"/></symbol><symbol id="anchor-center" viewBox="0 0 48 48"><path d="M16 14h16v4H16z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M24 32a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/></symbol><symbol id="anchor-left-down" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M10 44a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M30 14v15a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V14h-5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5Z"/></symbol><symbol id="anchor-left-up" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M10 16a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M30 22v15a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V22h-5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5Z"/></symbol><symbol id="anchor-left" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M10 30a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M30 18v15a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V18h-5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5Z"/></symbol><symbol id="anchor-right-down" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M38 44a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M22 14v15a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V14h-5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5Z"/></symbol><symbol id="anchor-right-up" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M38 16a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M22 22v15a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V22h-5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5Z"/></symbol><symbol id="anchor-right" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M38 30a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M22 18v15a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V18h-5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5Z"/></symbol><symbol id="arrows" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M6.515 22a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1H22v18.515a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V26h18.515a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1H26V6.515a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1V22H6.515Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M19.757 11.272 24 7.03l4.243 4.243s1.414 1.414 2.828 0 0-2.828 0-2.828L24 1.373l-7.071 7.07s-1.172 1.658 0 2.83c1.172 1.17 2.828 0 2.828 0Zm-8.485 16.97L7.03 24l4.243-4.243s1.414-1.414 0-2.828-2.828 0-2.828 0L1.373 24l7.07 7.071s1.658 1.172 2.83 0c1.17-1.172 0-2.828 0-2.828Zm16.97 8.486L24 40.97l-4.243-4.242s-1.414-1.414-2.828 0 0 2.828 0 2.828L24 46.627l7.071-7.07s1.172-1.657 0-2.83c-1.172-1.17-2.828 0-2.828 0ZM40.972 24l-4.243-4.243s-1.172-1.657 0-2.828c1.172-1.172 2.828 0 2.828 0L46.627 24l-7.07 7.071s-1.415 1.414-2.83 0c-1.413-1.414 0-2.828 0-2.828L40.972 24Z"/></symbol><symbol id="bezier-curve" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="m6.094 27.395 3.812 1.21C12.624 20.045 17.246 16 24 16a2 2 0 1 1-.003-4 2 2 0 0 1 .004 4c6.753 0 11.375 4.045 14.093 12.605l3.812-1.21C38.698 17.289 32.654 12 24 12c-8.654 0-14.698 5.289-17.906 15.395Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M24 20a6.003 6.003 0 0 0 5.659-4h6.876a4 4 0 1 0 0-4H29.66a6.003 6.003 0 0 0-11.318 0h-6.876a4 4 0 1 0 0 4h6.876c.824 2.33 3.047 4 5.659 4Zm2-6a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM8 38a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm2-6a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm30 6a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm2-6a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"/></symbol><symbol id="border" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M34 8H14a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V14a6 6 0 0 0-6-6Zm-22 6a2 2 0 0 1 2-2h20a2 2 0 0 1 2 2v20a2 2 0 0 1-2 2H14a2 2 0 0 1-2-2V14Z"/></symbol><symbol id="brush" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M27 12s-.488 6.857-3.345 9c0 0 1.345-13-2.508-17 0 0 0 7.857-3.571 14.286-1.675 3.013-3.572 5.998-3.572 10C14.004 34 20.94 36 24.01 36c3.595 0 9.99-2 9.99-9 0-4.317-7-15-7-15Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" d="M16 41a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v5H16v-5Z"/></symbol><symbol id="bucket" viewBox="0 0 50 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M40.385 17.757 26.243 3.615a4 4 0 0 0-5.657 0L6.444 17.757a8 8 0 0 0 0 11.314l8.485 8.485a8 8 0 0 0 11.314 0l14.142-14.142a4 4 0 0 0 0-5.657ZM9.272 20.586 23.414 6.444l14.142 14.142-3.471 3.471s-25.95 0-25.95-.032c-.011-.122-.02-.246-.028-.374a3.99 3.99 0 0 1 1.165-3.065Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M42 44a6 6 0 0 0 6-6c0-3.314-6-10-6-10s-6 6.686-6 10a6 6 0 0 0 6 6Z"/></symbol><symbol id="cap-1" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 8h32v30H26v-6.2c4.564-.927 8-4.962 8-9.8 0-5.523-4.477-10-10-10s-10 4.477-10 10c0 4.838 3.436 8.873 8 9.8V38H8V8Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M24 26a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"/></symbol><symbol id="cap-2" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M24 18a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M26 23.82c4.564-.834 8-4.466 8-8.82 0-.338-.02-.672-.061-1H40v24H26V23.82Zm-4 0c-4.564-.834-8-4.466-8-8.82 0-.338.02-.672.061-1H8v24h14V23.82Z"/></symbol><symbol id="cap-3" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 24c0-8.837 7.163-16 16-16s16 7.163 16 16v14H26v-6.2c4.564-.927 8-4.962 8-9.8 0-5.523-4.477-10-10-10s-10 4.477-10 10c0 4.838 3.436 8.873 8 9.8V38H8V24Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M24 26a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"/></symbol><symbol id="circle" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M24 40c8.837 0 16-7.163 16-16S32.837 8 24 8 8 15.163 8 24s7.163 16 16 16Z"/></symbol><symbol id="color-profile" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M8 30c0 5.523 4.477 10 10 10a9.956 9.956 0 0 0 6-2 9.956 9.956 0 0 0 6 2c5.523 0 10-4.477 10-10s-4.477-10-10-10a9.956 9.956 0 0 0-6 2 9.956 9.956 0 0 0-6-2c-5.523 0-10 4.477-10 10Zm18.667-4.991A9.955 9.955 0 0 1 28 30a9.953 9.953 0 0 1-1.333 4.991c.97.65 2.12 1.009 3.333 1.009a6 6 0 1 0-3.333-10.991Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M24 28c5.523 0 10-4.477 10-10S29.523 8 24 8s-10 4.477-10 10 4.477 10 10 10Z"/></symbol><symbol id="color" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M24 42c7.732 0 14-6.268 14-14S24 8 24 8 10 20.268 10 28c0 7.732 6.268 14 14 14Z"/></symbol><symbol id="component" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M24.744 6.132a1.5 1.5 0 0 0-1.488 0L8.75 14.422a1.5 1.5 0 0 0-.756 1.302v16.552a1.5 1.5 0 0 0 .756 1.302l14.506 8.29a1.5 1.5 0 0 0 1.488 0l14.507-8.29a1.5 1.5 0 0 0 .755-1.302V15.724a1.5 1.5 0 0 0-.755-1.302l-14.507-8.29ZM29 24a5 5 0 1 1-10 0 5 5 0 0 1 10 0Z"/></symbol><symbol id="crop" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M16 12H8a2 2 0 1 0 0 4h8v-4Zm4 4h9c2.21 0 3 .79 3 3v9h4v-9c0-4.418-2.582-7-7-7h-9v4Zm12 16h4v8a2 2 0 1 1-4 0v-8Z"/><path d="M40 32a2 2 0 1 1 0 4H19c-4.418 0-7-2.582-7-7V8a2 2 0 1 1 4 0v21c0 2.21.79 3 3 3h21Z"/></symbol><symbol id="difference" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M34 20v12h1.636C38.465 32 40 30.465 40 27.636V12.364C40 9.535 38.465 8 35.636 8H20.364C17.535 8 16 9.535 16 12.364V14h12a6 6 0 0 1 6 6ZM12 30V18h-1.636C7.535 18 6 19.535 6 22.364v15.272C6 40.465 7.535 42 10.364 42h15.272C28.465 42 30 40.465 30 37.636V36H18a6 6 0 0 1-6-6Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M18.546 18h8.909c1.65 0 2.545.895 2.545 2.546v8.909c0 1.65-.895 2.545-2.546 2.545h-8.909C16.896 32 16 31.105 16 29.454v-8.909c0-1.65.895-2.545 2.546-2.545Z"/></symbol><symbol id="edit" viewBox="0 0 48 48"><path d="M40.91 13.697a1.5 1.5 0 0 1 0 2.121L22.507 34.221a1.5 1.5 0 0 1-1.075.44l-9.125-.09a1.5 1.5 0 0 1-1.485-1.463l-.224-8.945a1.5 1.5 0 0 1 .439-1.099l18.56-18.56a1.5 1.5 0 0 1 2.121 0l9.192 9.193Z"/><rect style="fill: var(--opacity, #fff)" opacity=".3" x="10" y="40" width="30" height="4" rx="1"/></symbol><symbol id="eraser" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M28.475 7.383 9.383 26.475c-1.757 1.757-2.03 4.333-.61 5.753l8.999 9c1.42 1.42 3.996 1.146 5.753-.611l19.092-19.092c1.757-1.757 2.03-4.333.61-5.753l-8.999-9c-1.42-1.42-3.996-1.146-5.753.61Zm-8.132 30.759-8.485-8.485L17.515 24 26 32.485l-5.657 5.657Z"/></symbol><symbol id="flatten" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M18 42c6.627 0 12-5.373 12-12s-5.373-12-12-12S6 23.373 6 30s5.373 12 12 12Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M17.602 14.005c.133-.003.265-.005.398-.005 8.837 0 16 7.163 16 16 0 .133-.002.265-.005.397A11.995 11.995 0 0 0 40 20c0-6.627-5.373-12-12-12a11.996 11.996 0 0 0-10.398 6.005Z"/></symbol><symbol id="flip-horizontal" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M6.274 37.314A.5.5 0 0 0 6.74 38H17.5a.5.5 0 0 0 .5-.5V10.596c0-.55-.76-.697-.964-.185L6.274 37.314Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M41.726 37.314a.5.5 0 0 1-.465.686H30.5a.5.5 0 0 1-.5-.5V10.596c0-.55.76-.697.964-.185l10.762 26.903Z"/><rect opacity=".3" x="22" y="4" width="4" height="40" rx="1"/></symbol><symbol id="flip-vertical" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M10.686 6.274A.5.5 0 0 0 10 6.74V17.5a.5.5 0 0 0 .5.5h26.904c.55 0 .696-.76.185-.964L10.686 6.274Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M10.686 41.726A.5.5 0 0 1 10 41.26V30.5a.5.5 0 0 1 .5-.5h26.904c.55 0 .697.76.185.964L10.686 41.726Z"/><rect opacity=".3" x="44" y="22" width="4" height="40" rx="1" transform="rotate(90 44 22)"/></symbol><symbol id="horizontal" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 23a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-2Zm9-1a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h4Zm11 1a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-2Zm10 0a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-2Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M17.04 6a.5.5 0 0 0-.39.812l6.96 8.7c.2.25.58.25.78 0l6.96-8.7A.5.5 0 0 0 30.96 6H17.04Zm13.92 36a.5.5 0 0 0 .39-.812l-6.96-8.7a.5.5 0 0 0-.78 0l-6.96 8.7a.5.5 0 0 0 .39.812h13.92Z"/></symbol><symbol id="image" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M6 13a3 3 0 0 1 3-3h30a3 3 0 0 1 3 3v24a3 3 0 0 1-3 3H9a3 3 0 0 1-3-3V13Zm4 21 9-12 9 12H10Zm28-12a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z"/></symbol><symbol id="interselect" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M34 20v12h1.636C38.465 32 40 30.465 40 27.636V12.364C40 9.535 38.465 8 35.636 8H20.364C17.535 8 16 9.535 16 12.364V14h12a6 6 0 0 1 6 6ZM12 30V18h-1.636C7.535 18 6 19.535 6 22.364v15.272C6 40.465 7.535 42 10.364 42h15.272C28.465 42 30 40.465 30 37.636V36H18a6 6 0 0 1-6-6Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M18.546 18h8.909c1.65 0 2.545.895 2.545 2.546v8.909c0 1.65-.895 2.545-2.546 2.545h-8.909C16.896 32 16 31.105 16 29.454v-8.909c0-1.65.895-2.545 2.546-2.545Z"/></symbol><symbol id="join-1" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M10 20v-8h26v26h-8V20H10Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M16 36a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"/></symbol><symbol id="join-2" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M10 12h16l11 11-1 1v14h-8V28l-8-8H10v-8Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M16 36a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"/></symbol><symbol id="join-3" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M16 36a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"/><path d="M28.008 38h7.998c.076-9.279-2.088-16.078-6.823-20.201C24.66 13.86 18.221 11.987 10 12l.013 8c6.445-.01 11.04 1.327 13.917 3.832 2.665 2.32 4.137 7.001 4.078 14.168Z"/></symbol><symbol id="layers-1" viewBox="0 0 48 48"><rect style="fill: var(--opacity, #fff)" opacity=".3" x="12" y="10" width="32" height="24" rx="1"/><rect x="6" y="16" width="32" height="24" rx="1"/></symbol><symbol id="layers" viewBox="0 0 48 48"><path d="M23.066 32.889a1.5 1.5 0 0 0 1.868 0L38.72 21.912l1.798-1.424a1.5 1.5 0 0 0 .003-2.35L24.934 5.743a1.5 1.5 0 0 0-1.868 0l-15.591 12.4a1.5 1.5 0 0 0-.001 2.347l1.786 1.423 13.806 10.976Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M24.913 38.084a1.5 1.5 0 0 1-1.867 0L10.43 28.053a1.5 1.5 0 0 0-2.12.256l-.385.498a1.5 1.5 0 0 0 .275 2.11l14.887 11.386a1.5 1.5 0 0 0 1.822 0L39.8 30.918a1.5 1.5 0 0 0 .274-2.111l-.403-.52a1.5 1.5 0 0 0-2.12-.255L24.914 38.084Z"/></symbol><symbol id="line" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" d="M26 18v-6c-7.909 2.976-12.423 5.987-16 14h6c1.486-1.6 3.977-6 10-8Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M36 21a6 6 0 1 0 0-12 6 6 0 0 0 0 12ZM12 42a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/></symbol><symbol id="magic" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.1 44.385 38.386 16.1a2 2 0 0 0 0-2.829l-5.657-5.657a2 2 0 0 0-2.829 0L1.616 35.9a2 2 0 0 0 0 2.828l5.657 5.657a2 2 0 0 0 2.829 0Zm21.214-32.527 2.828 2.828-7.071 7.071-2.828-2.828 7.07-7.071Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M40 18.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3Zm-6 6a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3Zm8.5 1.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3Z"/></symbol><symbol id="mask" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M40 24c0 8.837-7.163 16-16 16-3.187 0-6.156-.932-8.65-2.537C19.36 34.77 22 30.193 22 25c0-5.823-3.318-10.87-8.166-13.356A15.934 15.934 0 0 1 24 8c8.837 0 16 7.163 16 16Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M12.785 35.412A12.98 12.98 0 0 0 18 25c0-4.75-2.547-8.905-6.35-11.173A15.935 15.935 0 0 0 8 24c0 4.468 1.832 8.51 4.785 11.412Z"/></symbol><symbol id="patch" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="m22.586 11.272 14.142 14.142L24 38.142 9.858 24l12.728-12.728Zm-5.657 11.314a2 2 0 1 0 2.829 2.828 2 2 0 0 0-2.83-2.828Zm5.657-5.657a2 2 0 1 0 2.828 2.828 2 2 0 0 0-2.828-2.828Zm0 11.314a2 2 0 1 0 2.828 2.828 2 2 0 0 0-2.828-2.829Zm5.657-5.657a2 2 0 1 0 2.828 2.828 2 2 0 0 0-2.828-2.828Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M21.03 40.83c-3.883 2.572-9.165 2.147-12.586-1.274-3.421-3.42-3.846-8.703-1.273-12.586l13.86 13.86ZM25.556 8.585c3.882-2.572 9.165-2.148 12.586 1.273 3.421 3.42 3.845 8.704 1.273 12.586L25.555 8.585Z"/></symbol><symbol id="pen-tool-vector" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.207 25.585a1 1 0 0 0-.024.841l5.687 13.271a.5.5 0 0 0 .46.303h11.34a.5.5 0 0 0 .46-.303l5.687-13.27a1 1 0 0 0-.024-.842L26 6v16.535a4 4 0 1 1-4 0V6l-9.793 19.585Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" d="M18 43a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v3H18v-3Z"/></symbol><symbol id="pen&amp;ruller" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M7 6a1 1 0 0 0-1 1v5h5a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H6v4h5a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H6v4h5a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H6v7a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H7Z"/></symbol><symbol id="pencil" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="m21 16-9 22s.106.4.165.588C12.875 40.863 16.152 42 18 42c3 0 4-4 7-4s4.183 3.969 7 4c2.816.031 6-4 6-4l-9-22h-8ZM22.6 12h4.8L25 6l-2.4 6Z"/></symbol><symbol id="picker" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="m20.465 20.464 7.07 7.071L16.93 38.142a5 5 0 0 1-7.071-7.071l10.607-10.607Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="m27.535 13.393 3.536-3.535a5 5 0 0 1 7.071 7.07l-3.535 3.536 2.12 2.122a3 3 0 0 1-4.242 4.242L21.172 15.515a3 3 0 0 1 4.242-4.243l2.121 2.121Z"/></symbol><symbol id="pixels" viewBox="0 0 48 48"><rect x="8" y="32" width="8" height="8" rx="1"/><rect x="8" y="20" width="8" height="8" rx="1"/><rect x="20" y="32" width="8" height="8" rx="1"/><rect style="fill: var(--opacity, #fff)" opacity=".3" x="20" y="20" width="8" height="8" rx="1"/><rect x="8" y="8" width="8" height="8" rx="1"/><rect x="32" y="32" width="8" height="8" rx="1"/></symbol><symbol id="polygon" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M13.658 38.974A1.5 1.5 0 0 0 15.081 40H32.92a1.5 1.5 0 0 0 1.423-1.026l5.33-15.99a1.5 1.5 0 0 0-.476-1.638L24.967 9.769a1.5 1.5 0 0 0-1.892-.001L8.806 21.346a1.5 1.5 0 0 0-.478 1.639l5.33 15.99Z"/></symbol><symbol id="position" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M36 12h-6s-2-.343-2-2 2-2 2-2h10v10s0 2-2 2-2-2-2-2v-6ZM18 36h-6v-6s0-2-2-2-2 2-2 2v10h10s2-.343 2-2-2-2-2-2Zm18-6v6h-6s-2 0-2 2 2 2 2 2h10V30s-.343-2-2-2-2 2-2 2ZM12 18v-6h6s2 0 2-2-2-2-2-2H8v10s.343 2 2 2 2-2 2-2Z"/></symbol><symbol id="rectagnle" viewBox="0 0 48 48"><rect x="8" y="8" width="32" height="32" rx="2"/></symbol><symbol id="ruller" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M25.414 11.272 24 9.858l2.828-2.828 4.243 4.242A2 2 0 0 0 33.9 8.444L29.657 4.2l1.414-1.414a2 2 0 0 1 2.829 0L45.213 14.1a2 2 0 0 1 0 2.828L16.93 45.213a2 2 0 0 1-2.828 0L2.787 33.9a2 2 0 0 1 0-2.829L4.2 29.657 8.444 33.9a2 2 0 0 0 2.828-2.829l-4.243-4.243L9.858 24l1.414 1.414a2 2 0 0 0 2.829-2.828l-1.415-1.414 2.829-2.829 4.242 4.243a2 2 0 0 0 2.829-2.829l-4.243-4.242 2.829-2.829 1.414 1.415a2 2 0 0 0 2.828-2.829Z"/></symbol><symbol id="saturation" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M10 28c0 7.732 6.268 14 14 14s14-6.268 14-14c0-5.155-4.667-11.821-14-20-9.333 8.179-14 14.845-14 20Zm14 10c-5.523 0-10-4.477-10-10 0-3.252 3.26-8.263 10-14.601C30.74 19.736 34 24.748 34 28c0 5.523-4.477 10-10 10Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M24 42c7.732 0 14-6.268 14-14S24 8 24 8v34Z"/></symbol><symbol id="select" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M37 16a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm0 26a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm-21-5a5 5 0 1 1-10 0 5 5 0 0 1 10 0Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M11 16a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm9-7a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-6a1 1 0 0 1-1-1V9Zm1 27a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-6ZM8 21a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1v-6Zm29-1a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1h-2Z"/></symbol><symbol id="sketch" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M10 6h28l8 10H2l8-10Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M46 16 24 40 2 16h44Z"/></symbol><symbol id="stamp" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M26 17.659a6 6 0 1 0-4 0V22H12a2 2 0 0 0-2 2v8h28v-8a2 2 0 0 0-2-2H26v-4.341Z"/><rect style="fill: var(--opacity, #fff)" opacity=".3" x="10" y="36" width="28" height="4" rx="1.5"/></symbol><symbol id="substract" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 18h-1.636C7.535 18 6 19.535 6 22.364v15.272C6 40.465 7.535 42 10.364 42h15.272C28.465 42 30 40.465 30 37.636V36H15a3 3 0 0 1-3-3V18Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M20.364 8h15.272C38.465 8 40 9.535 40 12.364v15.272C40 30.465 38.465 32 35.636 32H20.364C17.535 32 16 30.465 16 27.636V12.364C16 9.535 17.535 8 20.364 8Z"/></symbol><symbol id="target" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M22 6a2 2 0 1 1 4 0v4a2 2 0 1 1-4 0V6ZM6 22a2 2 0 1 0 0 4h4a2 2 0 1 0 0-4H6Zm32 0a2 2 0 1 0 0 4h4a2 2 0 1 0 0-4h-4ZM24 36a2 2 0 0 0-2 2v4a2 2 0 1 0 4 0v-4a2 2 0 0 0-2-2Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M24 30a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/></symbol><symbol id="triangle" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.543 37.215a.5.5 0 0 0 .411.785h34.092a.5.5 0 0 0 .41-.785L24.412 12.594a.5.5 0 0 0-.822 0L6.543 37.215Z"/></symbol><symbol id="union" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M35.636 8H20.364C17.535 8 16 9.535 16 12.364V18h-5.636C7.535 18 6 19.535 6 22.364v15.272C6 40.465 7.535 42 10.364 42h15.272C28.465 42 30 40.465 30 37.636V32h5.636C38.465 32 40 30.465 40 27.636V12.364C40 9.535 38.465 8 35.636 8Z"/></symbol><symbol id="vertical" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M23 6a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1h-2Zm0 10a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-2Zm-1 11a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-4Zm1 9a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-2Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M42 17.04a.5.5 0 0 0-.812-.39l-8.7 6.96a.5.5 0 0 0 0 .78l8.7 6.96a.5.5 0 0 0 .812-.39V17.04ZM6 30.96a.5.5 0 0 0 .812.39l8.7-6.96a.5.5 0 0 0 0-.78l-8.7-6.96a.5.5 0 0 0-.812.39v13.92Z"/></symbol><symbol id="zoom-minus" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" d="M28.586 33.414a2 2 0 1 1 2.828-2.828l8 8a2 2 0 1 1-2.828 2.828l-8-8Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8 22c0 7.732 6.268 14 14 14s14-6.268 14-14S29.732 8 22 8 8 14.268 8 22Zm24 0c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10 10 4.477 10 10Z"/><rect opacity=".3" x="18" y="21" width="8" height="2" rx=".5"/></symbol><symbol id="zoom-plus" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" d="M28.586 33.414a2 2 0 1 1 2.828-2.828l8 8a2 2 0 1 1-2.828 2.828l-8-8Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8 22c0 7.732 6.268 14 14 14s14-6.268 14-14S29.732 8 22 8 8 14.268 8 22Zm24 0c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10 10 4.477 10 10Z"/><path opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M23 18.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5V21h-2.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5H21v2.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5V23h2.5a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5H23v-2.5Z"/></symbol></svg>
1
+ <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs/><symbol id="adjust" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 24c0 8.837 7.163 16 16 16s16-7.163 16-16S32.837 8 24 8 8 15.163 8 24Zm4 0c0 6.627 5.373 12 12 12V12c-6.627 0-12 5.373-12 12Z"/></symbol><symbol id="anchor-center-down" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M24 44a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M26 14v15a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V14h-5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5Z"/></symbol><symbol id="anchor-center-up" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M24 16a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M26 22v15a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V22h-5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5Z"/></symbol><symbol id="anchor-center" viewBox="0 0 48 48"><path d="M16 14h16v4H16z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M24 32a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/></symbol><symbol id="anchor-left-down" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M10 44a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M30 14v15a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V14h-5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5Z"/></symbol><symbol id="anchor-left-up" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M10 16a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M30 22v15a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V22h-5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5Z"/></symbol><symbol id="anchor-left" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M10 30a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M30 18v15a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V18h-5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5Z"/></symbol><symbol id="anchor-right-down" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M38 44a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M22 14v15a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V14h-5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5Z"/></symbol><symbol id="anchor-right-up" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M38 16a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M22 22v15a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V22h-5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5Z"/></symbol><symbol id="anchor-right" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M38 30a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M22 18v15a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V18h-5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5Z"/></symbol><symbol id="arrows" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M6.515 22a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1H22v18.515a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V26h18.515a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1H26V6.515a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1V22H6.515Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M19.757 11.272 24 7.03l4.243 4.243s1.414 1.414 2.828 0 0-2.828 0-2.828L24 1.373l-7.071 7.07s-1.172 1.658 0 2.83c1.172 1.17 2.828 0 2.828 0Zm-8.485 16.97L7.03 24l4.243-4.243s1.414-1.414 0-2.828-2.828 0-2.828 0L1.373 24l7.07 7.071s1.658 1.172 2.83 0c1.17-1.172 0-2.828 0-2.828Zm16.97 8.486L24 40.97l-4.243-4.242s-1.414-1.414-2.828 0 0 2.828 0 2.828L24 46.627l7.071-7.07s1.172-1.657 0-2.83c-1.172-1.17-2.828 0-2.828 0ZM40.972 24l-4.243-4.243s-1.172-1.657 0-2.828c1.172-1.172 2.828 0 2.828 0L46.627 24l-7.07 7.071s-1.415 1.414-2.83 0c-1.413-1.414 0-2.828 0-2.828L40.972 24Z"/></symbol><symbol id="bezier-curve" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="m6.094 27.395 3.812 1.21C12.624 20.045 17.246 16 24 16a2 2 0 1 1-.003-4 2 2 0 0 1 .004 4c6.753 0 11.375 4.045 14.093 12.605l3.812-1.21C38.698 17.289 32.654 12 24 12c-8.654 0-14.698 5.289-17.906 15.395Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M24 20a6.003 6.003 0 0 0 5.659-4h6.876a4 4 0 1 0 0-4H29.66a6.003 6.003 0 0 0-11.318 0h-6.876a4 4 0 1 0 0 4h6.876c.824 2.33 3.047 4 5.659 4Zm2-6a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM8 38a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm2-6a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm30 6a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm2-6a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"/></symbol><symbol id="border" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M34 8H14a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h20a6 6 0 0 0 6-6V14a6 6 0 0 0-6-6Zm-22 6a2 2 0 0 1 2-2h20a2 2 0 0 1 2 2v20a2 2 0 0 1-2 2H14a2 2 0 0 1-2-2V14Z"/></symbol><symbol id="brush" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M27 12s-.488 6.857-3.345 9c0 0 1.345-13-2.508-17 0 0 0 7.857-3.571 14.286-1.675 3.013-3.572 5.998-3.572 10C14.004 34 20.94 36 24.01 36c3.595 0 9.99-2 9.99-9 0-4.317-7-15-7-15Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" d="M16 41a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v5H16v-5Z"/></symbol><symbol id="bucket" viewBox="0 0 50 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M40.385 17.757 26.243 3.615a4 4 0 0 0-5.657 0L6.444 17.757a8 8 0 0 0 0 11.314l8.485 8.485a8 8 0 0 0 11.314 0l14.142-14.142a4 4 0 0 0 0-5.657ZM9.272 20.586 23.414 6.444l14.142 14.142-3.471 3.471s-25.95 0-25.95-.032c-.011-.122-.02-.246-.028-.374a3.99 3.99 0 0 1 1.165-3.065Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M42 44a6 6 0 0 0 6-6c0-3.314-6-10-6-10s-6 6.686-6 10a6 6 0 0 0 6 6Z"/></symbol><symbol id="cap-1" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 8h32v30H26v-6.2c4.564-.927 8-4.962 8-9.8 0-5.523-4.477-10-10-10s-10 4.477-10 10c0 4.838 3.436 8.873 8 9.8V38H8V8Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M24 26a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"/></symbol><symbol id="cap-2" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M24 18a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M26 23.82c4.564-.834 8-4.466 8-8.82 0-.338-.02-.672-.061-1H40v24H26V23.82Zm-4 0c-4.564-.834-8-4.466-8-8.82 0-.338.02-.672.061-1H8v24h14V23.82Z"/></symbol><symbol id="cap-3" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 24c0-8.837 7.163-16 16-16s16 7.163 16 16v14H26v-6.2c4.564-.927 8-4.962 8-9.8 0-5.523-4.477-10-10-10s-10 4.477-10 10c0 4.838 3.436 8.873 8 9.8V38H8V24Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M24 26a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"/></symbol><symbol id="circle" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M24 40c8.837 0 16-7.163 16-16S32.837 8 24 8 8 15.163 8 24s7.163 16 16 16Z"/></symbol><symbol id="color-profile" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M8 30c0 5.523 4.477 10 10 10a9.956 9.956 0 0 0 6-2 9.956 9.956 0 0 0 6 2c5.523 0 10-4.477 10-10s-4.477-10-10-10a9.956 9.956 0 0 0-6 2 9.956 9.956 0 0 0-6-2c-5.523 0-10 4.477-10 10Zm18.667-4.991A9.955 9.955 0 0 1 28 30a9.953 9.953 0 0 1-1.333 4.991c.97.65 2.12 1.009 3.333 1.009a6 6 0 1 0-3.333-10.991Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M24 28c5.523 0 10-4.477 10-10S29.523 8 24 8s-10 4.477-10 10 4.477 10 10 10Z"/></symbol><symbol id="color" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M24 42c7.732 0 14-6.268 14-14S24 8 24 8 10 20.268 10 28c0 7.732 6.268 14 14 14Z"/></symbol><symbol id="component" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M24.744 6.132a1.5 1.5 0 0 0-1.488 0L8.75 14.422a1.5 1.5 0 0 0-.756 1.302v16.552a1.5 1.5 0 0 0 .756 1.302l14.506 8.29a1.5 1.5 0 0 0 1.488 0l14.507-8.29a1.5 1.5 0 0 0 .755-1.302V15.724a1.5 1.5 0 0 0-.755-1.302l-14.507-8.29ZM29 24a5 5 0 1 1-10 0 5 5 0 0 1 10 0Z"/></symbol><symbol id="conditional" viewBox="0 0 28 29"><path d="m27.598 6.201-1.784-.312-.268-.67 1.07-1.472c.135-.178.09-.401-.044-.58l-1.74-1.74a.468.468 0 0 0-.58-.044l-1.472 1.07c-.223-.089-.446-.222-.67-.267L21.8.402C21.754.178 21.576 0 21.352 0H18.9a.48.48 0 0 0-.446.357L18.14 2.14l-.669.268L16 1.34c-.178-.134-.402-.09-.58.044l-1.74 1.74c-.089.223-.134.446 0 .624l1.07 1.473c-.088.223-.222.446-.267.669l-1.784.312a.434.434 0 0 0-.357.446v2.454c0 .223.134.401.357.446l1.784.312.268.67L13.68 12c-.135.178-.09.401.044.58l1.74 1.74a.467.467 0 0 0 .58.044l1.472-1.07c.223.089.446.223.669.267l.312 1.785a.434.434 0 0 0 .446.357h2.454a.434.434 0 0 0 .446-.357l.313-1.785.669-.268 1.472 1.071c.178.134.401.09.58-.045l1.74-1.74a.467.467 0 0 0 .044-.58l-1.07-1.472.267-.669 1.785-.312A.434.434 0 0 0 28 9.101V6.647c-.045-.223-.179-.401-.402-.446Zm-7.45 4.283a2.637 2.637 0 0 1-2.632-2.632 2.637 2.637 0 0 1 2.632-2.632c1.428 0 2.587 1.16 2.587 2.632 0 1.472-1.16 2.632-2.587 2.632ZM8.37 25.34v.624a2.59 2.59 0 0 1-2.587 2.588 2.59 2.59 0 0 1-2.588-2.588v-.624H8.37ZM6.452 18.603l-.446.446a.431.431 0 0 1-.624 0l-.446-.446.356 5.845h.803l.357-5.845Z"/><path d="M10.914 14.588C8.683 9.993 2.036 10.44.34 15.258c-.759 2.096-.224 4.371 1.338 5.933 1.115 1.115 1.07 2.275 1.07 2.677v.223a.434.434 0 0 0 .447.357h1.249l-.402-6.96c-.044-.401.446-.625.759-.357l.937.937.936-.937c.268-.268.759-.044.759.357l-.402 6.96h1.383a.434.434 0 0 0 .446-.357v-.179c0-1.026.357-2.007 1.116-2.81 1.65-1.74 2.007-4.283.937-6.514ZM21.978 16.328c-.223-.045-.446.134-.49.357a8.035 8.035 0 0 1-3.168 4.952c-1.428 1.07-3.168 1.606-4.952 1.606l.58-.402c.178-.133.223-.401.089-.624-.134-.179-.402-.223-.625-.09l-1.472 1.071c-.09.09-.178.179-.178.268 0 .134 0 .223.089.312l1.115 1.517c.134.179.402.223.625.09.178-.135.223-.402.089-.625l-.58-.67h.357a8.976 8.976 0 0 0 5.353-1.784c1.83-1.338 3.079-3.301 3.48-5.487.134-.223-.044-.446-.312-.491ZM9.977.223C9.798.045 9.53.09 9.352.268c-.178.178-.134.446.045.624l.58.536c-4.328.401-7.808 3.926-8.165 8.342 0 .268.179.446.447.446.223 0 .446-.178.446-.401.312-3.97 3.435-7.138 7.36-7.495l-.58.624c-.178.179-.133.447.045.625.179.178.447.134.625-.045l1.294-1.383a.405.405 0 0 0 .134-.312.405.405 0 0 0-.134-.312L9.977.223Z"/></symbol><symbol id="crop" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M16 12H8a2 2 0 1 0 0 4h8v-4Zm4 4h9c2.21 0 3 .79 3 3v9h4v-9c0-4.418-2.582-7-7-7h-9v4Zm12 16h4v8a2 2 0 1 1-4 0v-8Z"/><path d="M40 32a2 2 0 1 1 0 4H19c-4.418 0-7-2.582-7-7V8a2 2 0 1 1 4 0v21c0 2.21.79 3 3 3h21Z"/></symbol><symbol id="difference" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M34 20v12h1.636C38.465 32 40 30.465 40 27.636V12.364C40 9.535 38.465 8 35.636 8H20.364C17.535 8 16 9.535 16 12.364V14h12a6 6 0 0 1 6 6ZM12 30V18h-1.636C7.535 18 6 19.535 6 22.364v15.272C6 40.465 7.535 42 10.364 42h15.272C28.465 42 30 40.465 30 37.636V36H18a6 6 0 0 1-6-6Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M18.546 18h8.909c1.65 0 2.545.895 2.545 2.546v8.909c0 1.65-.895 2.545-2.546 2.545h-8.909C16.896 32 16 31.105 16 29.454v-8.909c0-1.65.895-2.545 2.546-2.545Z"/></symbol><symbol id="edit" viewBox="0 0 48 48"><path d="M40.91 13.697a1.5 1.5 0 0 1 0 2.121L22.507 34.221a1.5 1.5 0 0 1-1.075.44l-9.125-.09a1.5 1.5 0 0 1-1.485-1.463l-.224-8.945a1.5 1.5 0 0 1 .439-1.099l18.56-18.56a1.5 1.5 0 0 1 2.121 0l9.192 9.193Z"/><rect style="fill: var(--opacity, #fff)" opacity=".3" x="10" y="40" width="30" height="4" rx="1"/></symbol><symbol id="eraser" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M28.475 7.383 9.383 26.475c-1.757 1.757-2.03 4.333-.61 5.753l8.999 9c1.42 1.42 3.996 1.146 5.753-.611l19.092-19.092c1.757-1.757 2.03-4.333.61-5.753l-8.999-9c-1.42-1.42-3.996-1.146-5.753.61Zm-8.132 30.759-8.485-8.485L17.515 24 26 32.485l-5.657 5.657Z"/></symbol><symbol id="flatten" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M18 42c6.627 0 12-5.373 12-12s-5.373-12-12-12S6 23.373 6 30s5.373 12 12 12Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M17.602 14.005c.133-.003.265-.005.398-.005 8.837 0 16 7.163 16 16 0 .133-.002.265-.005.397A11.995 11.995 0 0 0 40 20c0-6.627-5.373-12-12-12a11.996 11.996 0 0 0-10.398 6.005Z"/></symbol><symbol id="flip-horizontal" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M6.274 37.314A.5.5 0 0 0 6.74 38H17.5a.5.5 0 0 0 .5-.5V10.596c0-.55-.76-.697-.964-.185L6.274 37.314Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M41.726 37.314a.5.5 0 0 1-.465.686H30.5a.5.5 0 0 1-.5-.5V10.596c0-.55.76-.697.964-.185l10.762 26.903Z"/><rect opacity=".3" x="22" y="4" width="4" height="40" rx="1"/></symbol><symbol id="flip-vertical" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M10.686 6.274A.5.5 0 0 0 10 6.74V17.5a.5.5 0 0 0 .5.5h26.904c.55 0 .696-.76.185-.964L10.686 6.274Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M10.686 41.726A.5.5 0 0 1 10 41.26V30.5a.5.5 0 0 1 .5-.5h26.904c.55 0 .697.76.185.964L10.686 41.726Z"/><rect opacity=".3" x="44" y="22" width="4" height="40" rx="1" transform="rotate(90 44 22)"/></symbol><symbol id="horizontal" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 23a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-2Zm9-1a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1h4Zm11 1a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-2Zm10 0a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-2Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M17.04 6a.5.5 0 0 0-.39.812l6.96 8.7c.2.25.58.25.78 0l6.96-8.7A.5.5 0 0 0 30.96 6H17.04Zm13.92 36a.5.5 0 0 0 .39-.812l-6.96-8.7a.5.5 0 0 0-.78 0l-6.96 8.7a.5.5 0 0 0 .39.812h13.92Z"/></symbol><symbol id="image" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M6 13a3 3 0 0 1 3-3h30a3 3 0 0 1 3 3v24a3 3 0 0 1-3 3H9a3 3 0 0 1-3-3V13Zm4 21 9-12 9 12H10Zm28-12a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z"/></symbol><symbol id="interselect" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M34 20v12h1.636C38.465 32 40 30.465 40 27.636V12.364C40 9.535 38.465 8 35.636 8H20.364C17.535 8 16 9.535 16 12.364V14h12a6 6 0 0 1 6 6ZM12 30V18h-1.636C7.535 18 6 19.535 6 22.364v15.272C6 40.465 7.535 42 10.364 42h15.272C28.465 42 30 40.465 30 37.636V36H18a6 6 0 0 1-6-6Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M18.546 18h8.909c1.65 0 2.545.895 2.545 2.546v8.909c0 1.65-.895 2.545-2.546 2.545h-8.909C16.896 32 16 31.105 16 29.454v-8.909c0-1.65.895-2.545 2.546-2.545Z"/></symbol><symbol id="join-1" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M10 20v-8h26v26h-8V20H10Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M16 36a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"/></symbol><symbol id="join-2" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M10 12h16l11 11-1 1v14h-8V28l-8-8H10v-8Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M16 36a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"/></symbol><symbol id="join-3" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M16 36a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"/><path d="M28.008 38h7.998c.076-9.279-2.088-16.078-6.823-20.201C24.66 13.86 18.221 11.987 10 12l.013 8c6.445-.01 11.04 1.327 13.917 3.832 2.665 2.32 4.137 7.001 4.078 14.168Z"/></symbol><symbol id="layers-1" viewBox="0 0 48 48"><rect style="fill: var(--opacity, #fff)" opacity=".3" x="12" y="10" width="32" height="24" rx="1"/><rect x="6" y="16" width="32" height="24" rx="1"/></symbol><symbol id="layers" viewBox="0 0 48 48"><path d="M23.066 32.889a1.5 1.5 0 0 0 1.868 0L38.72 21.912l1.798-1.424a1.5 1.5 0 0 0 .003-2.35L24.934 5.743a1.5 1.5 0 0 0-1.868 0l-15.591 12.4a1.5 1.5 0 0 0-.001 2.347l1.786 1.423 13.806 10.976Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M24.913 38.084a1.5 1.5 0 0 1-1.867 0L10.43 28.053a1.5 1.5 0 0 0-2.12.256l-.385.498a1.5 1.5 0 0 0 .275 2.11l14.887 11.386a1.5 1.5 0 0 0 1.822 0L39.8 30.918a1.5 1.5 0 0 0 .274-2.111l-.403-.52a1.5 1.5 0 0 0-2.12-.255L24.914 38.084Z"/></symbol><symbol id="line" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" d="M26 18v-6c-7.909 2.976-12.423 5.987-16 14h6c1.486-1.6 3.977-6 10-8Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M36 21a6 6 0 1 0 0-12 6 6 0 0 0 0 12ZM12 42a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/></symbol><symbol id="magic" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.1 44.385 38.386 16.1a2 2 0 0 0 0-2.829l-5.657-5.657a2 2 0 0 0-2.829 0L1.616 35.9a2 2 0 0 0 0 2.828l5.657 5.657a2 2 0 0 0 2.829 0Zm21.214-32.527 2.828 2.828-7.071 7.071-2.828-2.828 7.07-7.071Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M40 18.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3Zm-6 6a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3Zm8.5 1.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3Z"/></symbol><symbol id="mask" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M40 24c0 8.837-7.163 16-16 16-3.187 0-6.156-.932-8.65-2.537C19.36 34.77 22 30.193 22 25c0-5.823-3.318-10.87-8.166-13.356A15.934 15.934 0 0 1 24 8c8.837 0 16 7.163 16 16Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M12.785 35.412A12.98 12.98 0 0 0 18 25c0-4.75-2.547-8.905-6.35-11.173A15.935 15.935 0 0 0 8 24c0 4.468 1.832 8.51 4.785 11.412Z"/></symbol><symbol id="patch" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="m22.586 11.272 14.142 14.142L24 38.142 9.858 24l12.728-12.728Zm-5.657 11.314a2 2 0 1 0 2.829 2.828 2 2 0 0 0-2.83-2.828Zm5.657-5.657a2 2 0 1 0 2.828 2.828 2 2 0 0 0-2.828-2.828Zm0 11.314a2 2 0 1 0 2.828 2.828 2 2 0 0 0-2.828-2.829Zm5.657-5.657a2 2 0 1 0 2.828 2.828 2 2 0 0 0-2.828-2.828Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M21.03 40.83c-3.883 2.572-9.165 2.147-12.586-1.274-3.421-3.42-3.846-8.703-1.273-12.586l13.86 13.86ZM25.556 8.585c3.882-2.572 9.165-2.148 12.586 1.273 3.421 3.42 3.845 8.704 1.273 12.586L25.555 8.585Z"/></symbol><symbol id="pen-tool-vector" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.207 25.585a1 1 0 0 0-.024.841l5.687 13.271a.5.5 0 0 0 .46.303h11.34a.5.5 0 0 0 .46-.303l5.687-13.27a1 1 0 0 0-.024-.842L26 6v16.535a4 4 0 1 1-4 0V6l-9.793 19.585Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" d="M18 43a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v3H18v-3Z"/></symbol><symbol id="pen&amp;ruller" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M7 6a1 1 0 0 0-1 1v5h5a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H6v4h5a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H6v4h5a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H6v7a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H7Z"/></symbol><symbol id="pencil" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="m21 16-9 22s.106.4.165.588C12.875 40.863 16.152 42 18 42c3 0 4-4 7-4s4.183 3.969 7 4c2.816.031 6-4 6-4l-9-22h-8ZM22.6 12h4.8L25 6l-2.4 6Z"/></symbol><symbol id="picker" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="m20.465 20.464 7.07 7.071L16.93 38.142a5 5 0 0 1-7.071-7.071l10.607-10.607Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="m27.535 13.393 3.536-3.535a5 5 0 0 1 7.071 7.07l-3.535 3.536 2.12 2.122a3 3 0 0 1-4.242 4.242L21.172 15.515a3 3 0 0 1 4.242-4.243l2.121 2.121Z"/></symbol><symbol id="pixels" viewBox="0 0 48 48"><rect x="8" y="32" width="8" height="8" rx="1"/><rect x="8" y="20" width="8" height="8" rx="1"/><rect x="20" y="32" width="8" height="8" rx="1"/><rect style="fill: var(--opacity, #fff)" opacity=".3" x="20" y="20" width="8" height="8" rx="1"/><rect x="8" y="8" width="8" height="8" rx="1"/><rect x="32" y="32" width="8" height="8" rx="1"/></symbol><symbol id="polygon" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M13.658 38.974A1.5 1.5 0 0 0 15.081 40H32.92a1.5 1.5 0 0 0 1.423-1.026l5.33-15.99a1.5 1.5 0 0 0-.476-1.638L24.967 9.769a1.5 1.5 0 0 0-1.892-.001L8.806 21.346a1.5 1.5 0 0 0-.478 1.639l5.33 15.99Z"/></symbol><symbol id="position" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M36 12h-6s-2-.343-2-2 2-2 2-2h10v10s0 2-2 2-2-2-2-2v-6ZM18 36h-6v-6s0-2-2-2-2 2-2 2v10h10s2-.343 2-2-2-2-2-2Zm18-6v6h-6s-2 0-2 2 2 2 2 2h10V30s-.343-2-2-2-2 2-2 2ZM12 18v-6h6s2 0 2-2-2-2-2-2H8v10s.343 2 2 2 2-2 2-2Z"/></symbol><symbol id="rectagnle" viewBox="0 0 48 48"><rect x="8" y="8" width="32" height="32" rx="2"/></symbol><symbol id="ruller" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M25.414 11.272 24 9.858l2.828-2.828 4.243 4.242A2 2 0 0 0 33.9 8.444L29.657 4.2l1.414-1.414a2 2 0 0 1 2.829 0L45.213 14.1a2 2 0 0 1 0 2.828L16.93 45.213a2 2 0 0 1-2.828 0L2.787 33.9a2 2 0 0 1 0-2.829L4.2 29.657 8.444 33.9a2 2 0 0 0 2.828-2.829l-4.243-4.243L9.858 24l1.414 1.414a2 2 0 0 0 2.829-2.828l-1.415-1.414 2.829-2.829 4.242 4.243a2 2 0 0 0 2.829-2.829l-4.243-4.242 2.829-2.829 1.414 1.415a2 2 0 0 0 2.828-2.829Z"/></symbol><symbol id="saturation" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M10 28c0 7.732 6.268 14 14 14s14-6.268 14-14c0-5.155-4.667-11.821-14-20-9.333 8.179-14 14.845-14 20Zm14 10c-5.523 0-10-4.477-10-10 0-3.252 3.26-8.263 10-14.601C30.74 19.736 34 24.748 34 28c0 5.523-4.477 10-10 10Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M24 42c7.732 0 14-6.268 14-14S24 8 24 8v34Z"/></symbol><symbol id="select" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M37 16a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm0 26a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm-21-5a5 5 0 1 1-10 0 5 5 0 0 1 10 0Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M11 16a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm9-7a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-6a1 1 0 0 1-1-1V9Zm1 27a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-6ZM8 21a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1v-6Zm29-1a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1h-2Z"/></symbol><symbol id="sketch" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M10 6h28l8 10H2l8-10Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M46 16 24 40 2 16h44Z"/></symbol><symbol id="stamp" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M26 17.659a6 6 0 1 0-4 0V22H12a2 2 0 0 0-2 2v8h28v-8a2 2 0 0 0-2-2H26v-4.341Z"/><rect style="fill: var(--opacity, #fff)" opacity=".3" x="10" y="36" width="28" height="4" rx="1.5"/></symbol><symbol id="substract" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 18h-1.636C7.535 18 6 19.535 6 22.364v15.272C6 40.465 7.535 42 10.364 42h15.272C28.465 42 30 40.465 30 37.636V36H15a3 3 0 0 1-3-3V18Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M20.364 8h15.272C38.465 8 40 9.535 40 12.364v15.272C40 30.465 38.465 32 35.636 32H20.364C17.535 32 16 30.465 16 27.636V12.364C16 9.535 17.535 8 20.364 8Z"/></symbol><symbol id="target" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M22 6a2 2 0 1 1 4 0v4a2 2 0 1 1-4 0V6ZM6 22a2 2 0 1 0 0 4h4a2 2 0 1 0 0-4H6Zm32 0a2 2 0 1 0 0 4h4a2 2 0 1 0 0-4h-4ZM24 36a2 2 0 0 0-2 2v4a2 2 0 1 0 4 0v-4a2 2 0 0 0-2-2Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M24 30a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z"/></symbol><symbol id="triangle" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.543 37.215a.5.5 0 0 0 .411.785h34.092a.5.5 0 0 0 .41-.785L24.412 12.594a.5.5 0 0 0-.822 0L6.543 37.215Z"/></symbol><symbol id="union" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M35.636 8H20.364C17.535 8 16 9.535 16 12.364V18h-5.636C7.535 18 6 19.535 6 22.364v15.272C6 40.465 7.535 42 10.364 42h15.272C28.465 42 30 40.465 30 37.636V32h5.636C38.465 32 40 30.465 40 27.636V12.364C40 9.535 38.465 8 35.636 8Z"/></symbol><symbol id="vertical" viewBox="0 0 48 48"><path fill-rule="evenodd" clip-rule="evenodd" d="M23 6a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1h-2Zm0 10a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-2Zm-1 11a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-4Zm1 9a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-2Z"/><path style="fill: var(--opacity, #fff)" opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M42 17.04a.5.5 0 0 0-.812-.39l-8.7 6.96a.5.5 0 0 0 0 .78l8.7 6.96a.5.5 0 0 0 .812-.39V17.04ZM6 30.96a.5.5 0 0 0 .812.39l8.7-6.96a.5.5 0 0 0 0-.78l-8.7-6.96a.5.5 0 0 0-.812.39v13.92Z"/></symbol><symbol id="zoom-minus" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" d="M28.586 33.414a2 2 0 1 1 2.828-2.828l8 8a2 2 0 1 1-2.828 2.828l-8-8Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8 22c0 7.732 6.268 14 14 14s14-6.268 14-14S29.732 8 22 8 8 14.268 8 22Zm24 0c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10 10 4.477 10 10Z"/><rect opacity=".3" x="18" y="21" width="8" height="2" rx=".5"/></symbol><symbol id="zoom-plus" viewBox="0 0 48 48"><path style="fill: var(--opacity, #fff)" opacity=".3" d="M28.586 33.414a2 2 0 1 1 2.828-2.828l8 8a2 2 0 1 1-2.828 2.828l-8-8Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8 22c0 7.732 6.268 14 14 14s14-6.268 14-14S29.732 8 22 8 8 14.268 8 22Zm24 0c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10 10 4.477 10 10Z"/><path opacity=".3" fill-rule="evenodd" clip-rule="evenodd" d="M23 18.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5V21h-2.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5H21v2.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5V23h2.5a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5H23v-2.5Z"/></symbol></svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravitee/ui-components",
3
- "version": "3.24.5",
3
+ "version": "3.25.0-fix-gvcode-15ce1d2",
4
4
  "description": "Gravitee.io UI Components library, based on Web Components",
5
5
  "repository": {
6
6
  "type": "git",
@@ -0,0 +1,19 @@
1
+ /*
2
+ * Copyright (C) 2015 The Gravitee team (http://gravitee.io)
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ module.exports = {
17
+ extends: ['../.eslintrc.js', 'plugin:lit/recommended'],
18
+ env: { browser: true },
19
+ };