@cypress-design/react-icon 0.30.1 → 0.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +25 -0
- package/IconReact.cy.tsx +11 -3
- package/_TreeShakableIcons.ts +279 -216
- package/animated/_IconGeneralChatBubble.cy.tsx +6 -0
- package/animated/_IconGeneralChatBubble.tsx +31 -0
- package/animated/_IconObjectGear.cy.tsx +6 -0
- package/animated/_IconObjectGear.tsx +28 -0
- package/animated/_IconTechnologyGitBranches.cy.tsx +6 -0
- package/animated/_IconTechnologyGitBranches.tsx +31 -0
- package/animated/_IconTechnologyServer.cy.tsx +6 -0
- package/animated/_IconTechnologyServer.tsx +46 -0
- package/animated/_IconViewChart.cy.tsx +6 -0
- package/animated/_IconViewChart.tsx +38 -0
- package/animated/_Morphers.tsx +54 -0
- package/animated/_testUtils.tsx +69 -0
- package/animated/index.ts +5 -0
- package/compileProperties.ts +7 -1
- package/dist/_TreeShakableIcons.d.ts +6 -0
- package/dist/_TreeShakableIcons.d.ts.map +1 -1
- package/dist/animated/_IconGeneralChatBubble.d.ts +6 -0
- package/dist/animated/_IconGeneralChatBubble.d.ts.map +1 -0
- package/dist/animated/_IconObjectGear.d.ts +6 -0
- package/dist/animated/_IconObjectGear.d.ts.map +1 -0
- package/dist/animated/_IconTechnologyGitBranches.d.ts +6 -0
- package/dist/animated/_IconTechnologyGitBranches.d.ts.map +1 -0
- package/dist/animated/_IconTechnologyServer.d.ts +6 -0
- package/dist/animated/_IconTechnologyServer.d.ts.map +1 -0
- package/dist/animated/_IconViewChart.d.ts +6 -0
- package/dist/animated/_IconViewChart.d.ts.map +1 -0
- package/dist/animated/_Morphers.d.ts +10 -0
- package/dist/animated/_Morphers.d.ts.map +1 -0
- package/dist/animated/index.d.ts +6 -0
- package/dist/animated/index.d.ts.map +1 -0
- package/dist/compileProperties.d.ts +2 -1
- package/dist/compileProperties.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.es.mjs +384 -222
- package/dist/index.es.mjs.map +1 -1
- package/dist/index.umd.js +395 -223
- package/dist/index.umd.js.map +1 -1
- package/generate-icons.js +3 -3
- package/index.ts +1 -0
- package/package.json +5 -4
package/_TreeShakableIcons.ts
CHANGED
|
@@ -80,7 +80,7 @@ export const IconActionDeleteCircle: React.FC<
|
|
|
80
80
|
Omit<iconsRegistry.IconActionDeleteCircleProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
81
81
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
82
82
|
"16": {
|
|
83
|
-
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M2 8a6 6 0 1 1 12 0A6 6 0 0 1 2
|
|
83
|
+
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M2 8a6 6 0 1 1 12 0A6 6 0 0 1 2 8m6-8a8 8 0 1 0 0 16A8 8 0 0 0 8 0M6.707 5.293a1 1 0 0 0-1.414 1.414L6.586 8 5.293 9.293a1 1 0 0 0 1.414 1.414L8 9.414l1.293 1.293a1 1 0 0 0 1.414-1.414L9.414 8l1.293-1.293a1 1 0 0 0-1.414-1.414L8 6.586z\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
84
84
|
}
|
|
85
85
|
}, ["16"], "action-delete-circle"))
|
|
86
86
|
|
|
@@ -164,7 +164,7 @@ export const IconActionNext: React.FC<
|
|
|
164
164
|
Omit<iconsRegistry.IconActionNextProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
165
165
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
166
166
|
"16": {
|
|
167
|
-
"body": "<path fill=\"#D0D2E0\" d=\"m12.285 8.429-8.528 5.117a.5.5 0 0 1-.757-.43V2.884a.5.5 0 0 1 .757-.429l8.528 5.117a.5.5 0 0 1 0 .
|
|
167
|
+
"body": "<path fill=\"#D0D2E0\" d=\"m12.285 8.429-8.528 5.117a.5.5 0 0 1-.757-.43V2.884a.5.5 0 0 1 .757-.429l8.528 5.117a.5.5 0 0 1 0 .858\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M13 2.6v10.8M3.757 2.454l8.528 5.117a.5.5 0 0 1 0 .858l-8.528 5.117a.5.5 0 0 1-.757-.43V2.884a.5.5 0 0 1 .757-.429\" class=\"icon-dark\"/>"
|
|
168
168
|
}
|
|
169
169
|
}, ["16"], "action-next"))
|
|
170
170
|
|
|
@@ -173,7 +173,7 @@ export const IconActionPlayLarge: React.FC<
|
|
|
173
173
|
Omit<iconsRegistry.IconActionPlayLargeProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
174
174
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
175
175
|
"16": {
|
|
176
|
-
"body": "<path fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m12.285 8.429-8.528 5.117a.5.5 0 0 1-.757-.43V2.884a.5.5 0 0 1 .757-.429l8.528 5.117a.5.5 0 0 1 0 .
|
|
176
|
+
"body": "<path fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m12.285 8.429-8.528 5.117a.5.5 0 0 1-.757-.43V2.884a.5.5 0 0 1 .757-.429l8.528 5.117a.5.5 0 0 1 0 .858\" class=\"icon-dark-stroke icon-light-fill\"/>"
|
|
177
177
|
}
|
|
178
178
|
}, ["16"], "action-play-large"))
|
|
179
179
|
|
|
@@ -182,7 +182,7 @@ export const IconActionPlaySmall: React.FC<
|
|
|
182
182
|
Omit<iconsRegistry.IconActionPlaySmallProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
183
183
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
184
184
|
"16": {
|
|
185
|
-
"body": "<path fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m11.322 8.424-6.557 4.098A.5.5 0 0 1 4 12.098V3.902a.5.5 0 0 1 .765-.424l6.557 4.098a.5.5 0 0 1 0 .
|
|
185
|
+
"body": "<path fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m11.322 8.424-6.557 4.098A.5.5 0 0 1 4 12.098V3.902a.5.5 0 0 1 .765-.424l6.557 4.098a.5.5 0 0 1 0 .848\" class=\"icon-dark-stroke icon-light-fill\"/>"
|
|
186
186
|
}
|
|
187
187
|
}, ["16"], "action-play-small"))
|
|
188
188
|
|
|
@@ -191,10 +191,10 @@ export const IconActionPlayVideo: React.FC<
|
|
|
191
191
|
Omit<iconsRegistry.IconActionPlayVideoProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
192
192
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
193
193
|
"16": {
|
|
194
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M1 5a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H3a2 2 0 0 1-2-
|
|
194
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M1 5a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2zM11 6v4l3.379.845A.5.5 0 0 0 15 10.36V5.64a.5.5 0 0 0-.621-.485z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M11 6V5a2 2 0 0 0-2-2H3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2zm0 0 3.379-.845A.5.5 0 0 1 15 5.64v4.72a.5.5 0 0 1-.621.485L11 10z\" class=\"icon-dark\"/>"
|
|
195
195
|
},
|
|
196
196
|
"24": {
|
|
197
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M3 8a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-
|
|
197
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M3 8a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zM16 9v6l3.804.76A1 1 0 0 0 21 14.78V9.22a1 1 0 0 0-1.196-.98z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M16 9V8a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h9a2 2 0 0 0 2-2zm0 0 3.804-.76A1 1 0 0 1 21 9.22v5.56a1 1 0 0 1-1.196.98L16 15z\" class=\"icon-dark\"/>"
|
|
198
198
|
}
|
|
199
199
|
}, ["16","24"], "action-play-video"))
|
|
200
200
|
|
|
@@ -203,7 +203,7 @@ export const IconActionPower: React.FC<
|
|
|
203
203
|
Omit<iconsRegistry.IconActionPowerProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
204
204
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
205
205
|
"16": {
|
|
206
|
-
"body": "<path fill=\"currentColor\" d=\"M7 7a1 1 0 1 0 2
|
|
206
|
+
"body": "<path fill=\"currentColor\" d=\"M7 7a1 1 0 1 0 2 0zm2-6a1 1 0 0 0-2 0zM4.572 3.074a1 1 0 1 0-1.144-1.64zm8-1.64a1 1 0 0 0-1.144 1.64zM3.757 12.243a6 6 0 0 1 0-8.486L2.343 2.343a8 8 0 0 0 0 11.314zm8.486-8.486a6 6 0 0 1 0 8.486l1.414 1.414a8 8 0 0 0 0-11.314zm0 8.486a6 6 0 0 1-8.486 0l-1.414 1.414a8 8 0 0 0 11.314 0zM9 7V1H7v6zM3.757 3.757q.386-.384.815-.683l-1.144-1.64q-.574.4-1.085.91zm7.67-.683q.431.3.816.683l1.414-1.414a8 8 0 0 0-1.085-.91z\" class=\"icon-dark\"/>"
|
|
207
207
|
}
|
|
208
208
|
}, ["16"], "action-power"))
|
|
209
209
|
|
|
@@ -212,7 +212,7 @@ export const IconActionQuestionMarkCircle: React.FC<
|
|
|
212
212
|
Omit<iconsRegistry.IconActionQuestionMarkCircleProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
213
213
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
214
214
|
"16": {
|
|
215
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M13.657 13.657A8 8 0 1 1 2.343 2.343a8 8 0 0 1 11.314 11.
|
|
215
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M13.657 13.657A8 8 0 1 1 2.343 2.343a8 8 0 0 1 11.314 11.314\" class=\"icon-light\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"m1.845 2.535-.001.001A1 1 0 0 1 .146 1.48L1 2c-.854-.52-.854-.52-.853-.521v-.001l.001-.002.003-.004.005-.009.015-.023.042-.061q.05-.074.139-.179C.469 1.061.64.883.87.706A3.45 3.45 0 0 1 3 0c1.099 0 1.911.432 2.414 1.113C5.879 1.743 6 2.478 6 3c0 .63-.173 1.147-.463 1.574-.272.402-.62.68-.871.873-.608.465-.655.516-.673.67a1 1 0 0 1-1.986-.234c.125-1.061.915-1.638 1.327-1.938l.117-.087c.229-.175.352-.29.43-.405C3.944 3.363 4 3.237 4 3c0-.259-.067-.525-.195-.7C3.714 2.179 3.526 2 3 2c-.437 0-.729.152-.913.294a1.3 1.3 0 0 0-.242.241M3 10a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" class=\"icon-dark\" clip-rule=\"evenodd\" style=\"transform:translate(5px,2.8px)\"/>"
|
|
216
216
|
}
|
|
217
217
|
}, ["16"], "action-question-mark-circle"))
|
|
218
218
|
|
|
@@ -221,7 +221,7 @@ export const IconActionQuestionMarkDefault: React.FC<
|
|
|
221
221
|
Omit<iconsRegistry.IconActionQuestionMarkDefaultProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
222
222
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
223
223
|
"16": {
|
|
224
|
-
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"
|
|
224
|
+
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"m6.33 4.85-.007.012.001-.002.003-.004.001-.003v-.002zm-.868-.496a99 99 0 0 1-.868-.497l.001-.003.003-.004.005-.01.016-.025.046-.073q.057-.087.16-.219A3.99 3.99 0 0 1 8 2c1.344 0 2.293.561 2.865 1.388.532.77.674 1.67.674 2.32 0 .76-.187 1.38-.51 1.893-.313.495-.718.834-1.045 1.083-.118.09-.219.164-.308.23-.19.14-.326.239-.457.368-.148.144-.21.256-.235.398a1 1 0 0 1-1.968-.36c.12-.653.447-1.118.803-1.467a7 7 0 0 1 .776-.628l.177-.132c.271-.207.446-.371.565-.559.106-.17.201-.413.201-.826 0-.409-.096-.861-.318-1.182C9.04 4.264 8.718 4 8 4a1.99 1.99 0 0 0-1.677.861 1 1 0 0 1-1.73-1.003zM8 12a1 1 0 0 1 1 1v.01a1 1 0 1 1-2 0V13a1 1 0 0 1 1-1\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
225
225
|
}
|
|
226
226
|
}, ["16"], "action-question-mark-default"))
|
|
227
227
|
|
|
@@ -230,7 +230,7 @@ export const IconActionQuestionMarkOutline: React.FC<
|
|
|
230
230
|
Omit<iconsRegistry.IconActionQuestionMarkOutlineProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
231
231
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
232
232
|
"16": {
|
|
233
|
-
"body": "<path fill=\"#E1E3ED\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M12.95 12.95a7 7 0 1 1-9.9-9.9 7 7 0 0 1 9.9 9.9Z\" class=\"icon-dark-stroke icon-light-fill\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"m6.845 5.535-.001.001A1 1 0 0 1 5.146 4.48L6 5c-.854-.52-.854-.52-.853-.521v-.001l.001-.002.003-.004.005-.009.015-.023.042-.
|
|
233
|
+
"body": "<path fill=\"#E1E3ED\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M12.95 12.95a7 7 0 1 1-9.9-9.9 7 7 0 0 1 9.9 9.9Z\" class=\"icon-dark-stroke icon-light-fill\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"m6.845 5.535-.001.001A1 1 0 0 1 5.146 4.48L6 5c-.854-.52-.854-.52-.853-.521v-.001l.001-.002.003-.004.005-.009.015-.023.042-.061q.05-.074.139-.179c.117-.139.288-.317.518-.494A3.45 3.45 0 0 1 8 3c1.099 0 1.911.432 2.414 1.113.465.63.586 1.365.586 1.887 0 .63-.173 1.147-.463 1.574-.272.402-.62.68-.871.873-.608.465-.655.516-.673.67a1 1 0 1 1-1.986-.234c.125-1.061.915-1.638 1.327-1.938l.117-.087c.229-.175.352-.29.43-.405C8.944 6.363 9 6.237 9 6c0-.259-.067-.525-.195-.7C8.714 5.179 8.526 5 8 5c-.437 0-.729.152-.913.294a1.3 1.3 0 0 0-.242.241M8 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
234
234
|
}
|
|
235
235
|
}, ["16"], "action-question-mark-outline"))
|
|
236
236
|
|
|
@@ -239,7 +239,7 @@ export const IconActionRecord: React.FC<
|
|
|
239
239
|
Omit<iconsRegistry.IconActionRecordProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
240
240
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
241
241
|
"16": {
|
|
242
|
-
"body": "<path fill=\"currentColor\" d=\"M8 10a2 2 0 1 0 0-4 2 2 0 0 0 0
|
|
242
|
+
"body": "<path fill=\"currentColor\" d=\"M8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4\" class=\"icon-dark\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0\" class=\"icon-dark\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M14 8A6 6 0 1 1 2 8a6 6 0 0 1 12 0Zm-4 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z\" class=\"icon-dark\"/>"
|
|
243
243
|
}
|
|
244
244
|
}, ["16"], "action-record"))
|
|
245
245
|
|
|
@@ -248,7 +248,7 @@ export const IconActionRefresh: React.FC<
|
|
|
248
248
|
Omit<iconsRegistry.IconActionRefreshProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
249
249
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
250
250
|
"16": {
|
|
251
|
-
"body": "<path fill=\"currentColor\" d=\"m13 2.071-.707-.707A1 1 0 0 1 14 2.
|
|
251
|
+
"body": "<path fill=\"currentColor\" d=\"m13 2.071-.707-.707A1 1 0 0 1 14 2.071zm0 2.572h1a1 1 0 0 1-1 1zm-2.571 0v1a1 1 0 0 1-.708-1.707zm1.17 4.321a1 1 0 0 1 1.84.786zM14 2.071v2.572h-2V2.07zM7 2a5 5 0 0 0-5 5H0a7 7 0 0 1 7-7zm4.6 3.036A5 5 0 0 0 7 2V0a7 7 0 0 1 6.439 4.25zm1.4.607h-.48v-2H13zm-.48 0h-2.091v-2h2.09zM2 7c0 1.381.559 2.63 1.464 3.536L2.05 11.95A6.98 6.98 0 0 1 0 7zm1.464 3.536A4.98 4.98 0 0 0 7 12v2a6.98 6.98 0 0 1-4.95-2.05zM7 12a5 5 0 0 0 4.6-3.036l1.839.786A7 7 0 0 1 7 14zm2.721-8.064 2.572-2.572 1.414 1.415-2.571 2.571z\" class=\"icon-dark\"/>"
|
|
252
252
|
}
|
|
253
253
|
}, ["16"], "action-refresh"))
|
|
254
254
|
|
|
@@ -266,7 +266,7 @@ export const IconActionStop: React.FC<
|
|
|
266
266
|
Omit<iconsRegistry.IconActionStopProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
267
267
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
268
268
|
"16": {
|
|
269
|
-
"body": "<path fill=\"currentColor\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 11.5v-7a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.
|
|
269
|
+
"body": "<path fill=\"currentColor\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 11.5v-7a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5\" class=\"icon-dark\"/>"
|
|
270
270
|
}
|
|
271
271
|
}, ["16"], "action-stop"))
|
|
272
272
|
|
|
@@ -275,7 +275,7 @@ export const IconActionTestReplay: React.FC<
|
|
|
275
275
|
Omit<iconsRegistry.IconActionTestReplayProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
276
276
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
277
277
|
"16": {
|
|
278
|
-
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M3.8 3.714A6 6 0 1 1 2.083 9h.918a1 1 0 0 0 0-2H1a1 1 0 0 0-1 1 8 8 0 1 0 2.401-5.714 1 1 0 1 0 1.4 1.
|
|
278
|
+
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M3.8 3.714A6 6 0 1 1 2.083 9h.918a1 1 0 0 0 0-2H1a1 1 0 0 0-1 1 8 8 0 1 0 2.401-5.714 1 1 0 1 0 1.4 1.428m3.366 7.509 3.898-2.599a.75.75 0 0 0 0-1.248L7.166 4.777A.75.75 0 0 0 6 5.401V10.6a.75.75 0 0 0 1.166.624\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
279
279
|
}
|
|
280
280
|
}, ["16"], "action-test-replay"))
|
|
281
281
|
|
|
@@ -329,7 +329,7 @@ export const IconArrowOutlineDown: React.FC<
|
|
|
329
329
|
Omit<iconsRegistry.IconArrowOutlineDownProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
330
330
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
331
331
|
"16": {
|
|
332
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M15 8A7 7 0 1 0 1 8a7 7 0 0 0 14
|
|
332
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M15 8A7 7 0 1 0 1 8a7 7 0 0 0 14 0\" class=\"icon-light\"/><path fill=\"currentColor\" d=\"M6.207 8.207a1 1 0 0 1-1.414-1.414zM8 5l-.707-.707a1 1 0 0 1 1.414 0zm3.207 1.793a1 1 0 0 1-1.414 1.414zM9 11a1 1 0 1 1-2 0zm5-3a6 6 0 0 0-6-6V0a8 8 0 0 1 8 8zM8 2a6 6 0 0 0-6 6H0a8 8 0 0 1 8-8zM2 8a6 6 0 0 0 6 6v2a8 8 0 0 1-8-8zm6 6a6 6 0 0 0 6-6h2a8 8 0 0 1-8 8zM4.793 6.793l2.5-2.5 1.414 1.414-2.5 2.5zm3.914-2.5 2.5 2.5-1.414 1.414-2.5-2.5zM9 5v6H7V5z\" class=\"icon-dark\"/>"
|
|
333
333
|
}
|
|
334
334
|
}, ["16"], "arrow-outline-down"))
|
|
335
335
|
|
|
@@ -383,8 +383,8 @@ export const IconBrowserChromeBeta: React.FC<
|
|
|
383
383
|
Omit<iconsRegistry.IconBrowserChromeBetaProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
384
384
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
385
385
|
"16": {
|
|
386
|
-
"body": "<mask id=\"browser-chrome-beta_x16_svg__a\" width=\"16\" height=\"16\" x=\"0\" y=\"0\" maskUnits=\"userSpaceOnUse\" style=\"mask-type:luminance\"><path fill=\"#fff\" d=\"M8.009 15.42a7.412 7.412 0 1 0 0-14.824 7.412 7.412 0 0 0 0 14.
|
|
387
|
-
"defs": "<defs><linearGradient id=\"browser-chrome-beta_x16_svg__b\" x1=\"2.386\" x2=\"6.816\" y1=\"6.262\" y2=\"3.663\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#A52714\" stop-opacity=\".6\"/><stop offset=\".7\" stop-color=\"#A52714\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"browser-chrome-beta_x16_svg__c\" x1=\"9.244\" x2=\"4.345\" y1=\"13.759\" y2=\"10.905\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#055524\" stop-opacity=\".4\"/><stop offset=\".3\" stop-color=\"#055524\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"browser-chrome-beta_x16_svg__e\" x1=\"10.181\" x2=\"11.416\" y1=\"4.132\" y2=\"9.542\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#EA6100\" stop-opacity=\".3\"/><stop offset=\".7\" stop-color=\"#EA6100\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"browser-chrome-beta_x16_svg__f\" x1=\"10.181\" x2=\"11.416\" y1=\"4.132\" y2=\"9.542\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#EA6100\" stop-opacity=\".3\"/><stop offset=\".7\" stop-color=\"#EA6100\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"browser-chrome-beta_x16_svg__h\" x1=\"2.386\" x2=\"6.816\" y1=\"6.262\" y2=\"3.663\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#A52714\" stop-opacity=\".6\"/><stop offset=\".7\" stop-color=\"#A52714\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"browser-chrome-beta_x16_svg__k\" x1=\"9.244\" x2=\"4.345\" y1=\"13.759\" y2=\"10.905\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#055524\" stop-opacity=\".4\"/><stop offset=\".3\" stop-color=\"#055524\" stop-opacity=\"0\"/></linearGradient><radialGradient id=\"browser-chrome-beta_x16_svg__i\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"translate(7.668 4.643)
|
|
386
|
+
"body": "<mask id=\"browser-chrome-beta_x16_svg__a\" width=\"16\" height=\"16\" x=\"0\" y=\"0\" maskUnits=\"userSpaceOnUse\" style=\"mask-type:luminance\"><path fill=\"#fff\" d=\"M8.009 15.42a7.412 7.412 0 1 0 0-14.824 7.412 7.412 0 0 0 0 14.825\"/></mask><g mask=\"url(#browser-chrome-beta_x16_svg__a)\"><path fill=\"#DB4437\" d=\"M1.774.596v9.098H5.09L8.01 4.64h7.412V.596z\"/><path fill=\"url(#browser-chrome-beta_x16_svg__b)\" d=\"M1.774.596v9.098H5.09L8.01 4.64h7.412V.596z\"/><path fill=\"#3E2723\" fill-opacity=\".1\" d=\"M5.171 9.663 1.816 3.911l-.049.083 3.331 5.712z\"/><path fill=\"#0F9D58\" d=\"M.596 15.42h7.056l3.275-3.274V9.694H5.091L.596 1.985z\"/><path fill=\"url(#browser-chrome-beta_x16_svg__c)\" d=\"M.596 15.42h7.056l3.275-3.274V9.694H5.091L.596 1.985z\"/><path fill=\"#263238\" fill-opacity=\".1\" d=\"m10.86 9.804-.07-.039-3.235 5.656h.097l3.209-5.613z\"/><mask id=\"browser-chrome-beta_x16_svg__d\" width=\"11\" height=\"15\" x=\"0\" y=\"1\" maskUnits=\"userSpaceOnUse\" style=\"mask-type:luminance\"><path fill=\"#fff\" d=\"M.596 15.42h7.056l3.275-3.274V9.694H5.091L.596 1.985z\"/></mask><g mask=\"url(#browser-chrome-beta_x16_svg__d)\"><path fill=\"#FFCD40\" d=\"m8.009 4.64 2.918 5.054-3.275 5.727h7.769V4.64z\"/><path fill=\"url(#browser-chrome-beta_x16_svg__e)\" d=\"m8.009 4.64 2.918 5.054-3.275 5.727h7.769V4.64z\"/></g><path fill=\"#FFCD40\" d=\"m8.009 4.64 2.918 5.054-3.275 5.727h7.769V4.64z\"/><path fill=\"url(#browser-chrome-beta_x16_svg__f)\" d=\"m8.009 4.64 2.918 5.054-3.275 5.727h7.769V4.64z\"/><mask id=\"browser-chrome-beta_x16_svg__g\" width=\"9\" height=\"12\" x=\"7\" y=\"4\" maskUnits=\"userSpaceOnUse\" style=\"mask-type:luminance\"><path fill=\"#fff\" d=\"m8.009 4.64 2.918 5.054-3.275 5.727h7.769V4.64z\"/></mask><g mask=\"url(#browser-chrome-beta_x16_svg__g)\"><path fill=\"#DB4437\" d=\"M1.774.596v9.098H5.09L8.01 4.64h7.412V.596z\"/><path fill=\"url(#browser-chrome-beta_x16_svg__h)\" d=\"M1.774.596v9.098H5.09L8.01 4.64h7.412V.596z\"/></g><path fill=\"url(#browser-chrome-beta_x16_svg__i)\" d=\"M8.009 4.64v1.763L14.61 4.64z\"/><mask id=\"browser-chrome-beta_x16_svg__j\" width=\"15\" height=\"10\" x=\"1\" y=\"0\" maskUnits=\"userSpaceOnUse\" style=\"mask-type:luminance\"><path fill=\"#fff\" d=\"M1.774.596v3.398l3.317 5.7L8.01 4.64h7.412V.596z\"/></mask><g mask=\"url(#browser-chrome-beta_x16_svg__j)\"><path fill=\"#0F9D58\" d=\"M.596 15.42h7.056l3.275-3.274V9.694H5.091L.596 1.985z\"/><path fill=\"url(#browser-chrome-beta_x16_svg__k)\" d=\"M.596 15.42h7.056l3.275-3.274V9.694H5.091L.596 1.985z\"/></g><path fill=\"url(#browser-chrome-beta_x16_svg__l)\" d=\"m1.774 4.004 4.82 4.82-1.503.87z\"/><path fill=\"url(#browser-chrome-beta_x16_svg__m)\" d=\"m7.658 15.412 1.765-6.587 1.504.869z\"/><path fill=\"#F1F1F1\" d=\"M8.009 11.377a3.369 3.369 0 1 0 0-6.737 3.369 3.369 0 0 0 0 6.737\"/><path fill=\"#4285F4\" d=\"M8.009 10.704a2.696 2.696 0 1 0 0-5.391 2.696 2.696 0 0 0 0 5.391\"/><path fill=\"#3E2723\" fill-opacity=\".2\" d=\"M8.009 4.555a3.37 3.37 0 0 0-3.37 3.37v.084a3.37 3.37 0 0 1 3.37-3.37h7.412v-.083z\"/><path fill=\"#fff\" fill-opacity=\".1\" d=\"M10.922 9.694a3.365 3.365 0 0 1-5.829 0L.596 1.985v.084l4.495 7.708a3.364 3.364 0 0 0 5.83 0v-.083z\"/><path fill=\"#3E2723\" d=\"M8.092 4.64h-.043a3.367 3.367 0 1 1 0 6.734h.043a3.37 3.37 0 1 0 0-6.74z\" opacity=\".1\"/><path fill=\"#fff\" fill-opacity=\".2\" d=\"M10.956 9.804a3.36 3.36 0 0 0 .29-2.699 3.33 3.33 0 0 1-.325 2.585l-3.269 5.73h.098l3.208-5.612zM8.01.682a7.41 7.41 0 0 1 7.412 7.37v-.043a7.412 7.412 0 0 0-14.825 0v.042A7.41 7.41 0 0 1 8.01.681\"/><path fill=\"#3E2723\" fill-opacity=\".1\" d=\"M8.009 15.336a7.41 7.41 0 0 0 7.412-7.37v.043a7.412 7.412 0 0 1-14.825 0v-.043a7.41 7.41 0 0 0 7.413 7.37\"/></g><mask id=\"browser-chrome-beta_x16_svg__n\" width=\"16\" height=\"16\" x=\"0\" y=\"0\" maskUnits=\"userSpaceOnUse\" style=\"mask-type:luminance\"><path fill=\"#fff\" d=\"M8.009 15.42a7.412 7.412 0 1 0 0-14.824 7.412 7.412 0 0 0 0 14.825\"/></mask><g mask=\"url(#browser-chrome-beta_x16_svg__n)\"><path fill=\"#424242\" d=\"M.348 9.239h15.536v6.504H.348z\"/></g><path fill=\"#fff\" d=\"M5.37 12.78v-2.045h.739a.6.6 0 0 1 .414.158.51.51 0 0 1 .17.397.45.45 0 0 1-.075.258.5.5 0 0 1-.201.17v.012c.098.03.185.09.249.17a.46.46 0 0 1 .097.292.54.54 0 0 1-.179.417.63.63 0 0 1-.434.17zm.263-1.166h.476a.3.3 0 0 0 .238-.099.305.305 0 0 0 0-.43.3.3 0 0 0-.23-.096h-.484zm0 .915h.527a.31.31 0 0 0 .245-.106.34.34 0 0 0 .094-.23.34.34 0 0 0-.351-.34h-.511zm2.018.29a.68.68 0 0 1-.511-.212.75.75 0 0 1-.198-.533.77.77 0 0 1 .192-.525.62.62 0 0 1 .491-.22.65.65 0 0 1 .498.203c.13.15.196.344.185.542v.05H7.201a.48.48 0 0 0 .141.34c.081.08.19.124.304.123a.38.38 0 0 0 .381-.24l.234.097a.63.63 0 0 1-.225.272.65.65 0 0 1-.385.103m.376-.912a.37.37 0 0 0-.247-.315.4.4 0 0 0-.162-.022.37.37 0 0 0-.252.092.47.47 0 0 0-.146.245zm1.08.888a.406.406 0 0 1-.45-.448v-.733h-.245v-.239h.244v-.427h.262v.428h.341v.24h-.34v.712q0 .228.187.228a.3.3 0 0 0 .12-.022l.091.225a.5.5 0 0 1-.21.036m.818.024a.55.55 0 0 1-.371-.128.42.42 0 0 1-.15-.34.42.42 0 0 1 .17-.359.7.7 0 0 1 .437-.13.75.75 0 0 1 .38.086v-.04a.31.31 0 0 0-.106-.246.38.38 0 0 0-.259-.092.4.4 0 0 0-.206.054.28.28 0 0 0-.128.149l-.24-.103a.54.54 0 0 1 .19-.231.6.6 0 0 1 .377-.108.65.65 0 0 1 .445.157.56.56 0 0 1 .17.441v.852h-.24v-.203h-.012a.51.51 0 0 1-.457.24m.043-.24c.11-.001.216-.045.295-.122a.37.37 0 0 0 .131-.286.5.5 0 0 0-.34-.092.43.43 0 0 0-.289.084.25.25 0 0 0-.097.194.19.19 0 0 0 .089.17.35.35 0 0 0 .211.052\"/>",
|
|
387
|
+
"defs": "<defs><linearGradient id=\"browser-chrome-beta_x16_svg__b\" x1=\"2.386\" x2=\"6.816\" y1=\"6.262\" y2=\"3.663\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#A52714\" stop-opacity=\".6\"/><stop offset=\".7\" stop-color=\"#A52714\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"browser-chrome-beta_x16_svg__c\" x1=\"9.244\" x2=\"4.345\" y1=\"13.759\" y2=\"10.905\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#055524\" stop-opacity=\".4\"/><stop offset=\".3\" stop-color=\"#055524\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"browser-chrome-beta_x16_svg__e\" x1=\"10.181\" x2=\"11.416\" y1=\"4.132\" y2=\"9.542\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#EA6100\" stop-opacity=\".3\"/><stop offset=\".7\" stop-color=\"#EA6100\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"browser-chrome-beta_x16_svg__f\" x1=\"10.181\" x2=\"11.416\" y1=\"4.132\" y2=\"9.542\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#EA6100\" stop-opacity=\".3\"/><stop offset=\".7\" stop-color=\"#EA6100\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"browser-chrome-beta_x16_svg__h\" x1=\"2.386\" x2=\"6.816\" y1=\"6.262\" y2=\"3.663\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#A52714\" stop-opacity=\".6\"/><stop offset=\".7\" stop-color=\"#A52714\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"browser-chrome-beta_x16_svg__k\" x1=\"9.244\" x2=\"4.345\" y1=\"13.759\" y2=\"10.905\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#055524\" stop-opacity=\".4\"/><stop offset=\".3\" stop-color=\"#055524\" stop-opacity=\"0\"/></linearGradient><radialGradient id=\"browser-chrome-beta_x16_svg__i\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"translate(7.668 4.643)scale(7.07135)\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#3E2723\" stop-opacity=\".2\"/><stop offset=\"1\" stop-color=\"#3E2723\" stop-opacity=\"0\"/></radialGradient><radialGradient id=\"browser-chrome-beta_x16_svg__l\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"translate(1.747 4.004)scale(6.56017)\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#3E2723\" stop-opacity=\".2\"/><stop offset=\"1\" stop-color=\"#3E2723\" stop-opacity=\"0\"/></radialGradient><radialGradient id=\"browser-chrome-beta_x16_svg__m\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"translate(8.009 8.009)scale(7.41214)\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#263238\" stop-opacity=\".2\"/><stop offset=\"1\" stop-color=\"#263238\" stop-opacity=\"0\"/></radialGradient></defs>"
|
|
388
388
|
}
|
|
389
389
|
}, ["16"], "browser-chrome-beta"))
|
|
390
390
|
|
|
@@ -393,7 +393,7 @@ export const IconBrowserChromeCanary: React.FC<
|
|
|
393
393
|
Omit<iconsRegistry.IconBrowserChromeCanaryProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
394
394
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
395
395
|
"16": {
|
|
396
|
-
"body": "<g clip-path=\"url(#browser-chrome-canary_x16_svg__a)\"><path fill=\"#F4B70A\" d=\"M0 8a8 8 0 0 0 8 8l3.465-
|
|
396
|
+
"body": "<g clip-path=\"url(#browser-chrome-canary_x16_svg__a)\"><path fill=\"#F4B70A\" d=\"M0 8a8 8 0 0 0 8 8l3.465-6A4 4 0 0 1 8 12a4 4 0 0 1-3.468-2.005L1.07 4l-.104.187A7.96 7.96 0 0 0 0 8\"/><path fill=\"#F7CC50\" d=\"M8 16a8 8 0 0 0 6.93-12H8a4 4 0 0 1 3.468 5.995l-.003.005z\"/><path fill=\"#F19A11\" fill-rule=\"evenodd\" d=\"M1.07 4A8 8 0 0 1 8 0a8 8 0 0 1 6.93 4H8a4 4 0 0 0-3.468 5.995z\" clip-rule=\"evenodd\"/><circle cx=\"8\" cy=\"8\" r=\"4\" fill=\"#fff\"/><circle cx=\"8\" cy=\"8\" r=\"3.2\" fill=\"#F6C231\"/></g>",
|
|
397
397
|
"defs": "<defs><clipPath id=\"browser-chrome-canary_x16_svg__a\"><path fill=\"#fff\" d=\"M0 0h16v16H0z\"/></clipPath></defs>"
|
|
398
398
|
}
|
|
399
399
|
}, ["16"], "browser-chrome-canary"))
|
|
@@ -403,7 +403,7 @@ export const IconBrowserChrome: React.FC<
|
|
|
403
403
|
Omit<iconsRegistry.IconBrowserChromeProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
404
404
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
405
405
|
"16": {
|
|
406
|
-
"body": "<g clip-path=\"url(#browser-chrome_x16_svg__a)\"><path fill=\"#0F9D58\" d=\"M0 8a8 8 0 0 0 8 8l3.465-
|
|
406
|
+
"body": "<g clip-path=\"url(#browser-chrome_x16_svg__a)\"><path fill=\"#0F9D58\" d=\"M0 8a8 8 0 0 0 8 8l3.465-6A4 4 0 0 1 8 12a4 4 0 0 1-3.468-2.005L1.07 4A7.97 7.97 0 0 0 0 8\"/><path fill=\"#FFCD40\" d=\"M8 16a8 8 0 0 0 6.93-12H8a4 4 0 0 1 3.468 5.995l-.003.005z\"/><path fill=\"#DB4437\" fill-rule=\"evenodd\" d=\"M1.07 4A8 8 0 0 1 8 0a8 8 0 0 1 6.93 4H8a4 4 0 0 0-3.468 5.995z\" clip-rule=\"evenodd\"/><circle cx=\"8\" cy=\"8\" r=\"4\" fill=\"#fff\"/><circle cx=\"8\" cy=\"8\" r=\"3.2\" fill=\"#4285F4\"/></g>",
|
|
407
407
|
"defs": "<defs><clipPath id=\"browser-chrome_x16_svg__a\"><path fill=\"#fff\" d=\"M0 0h16v16H0z\"/></clipPath></defs>"
|
|
408
408
|
}
|
|
409
409
|
}, ["16"], "browser-chrome"))
|
|
@@ -413,8 +413,8 @@ export const IconBrowserEdge: React.FC<
|
|
|
413
413
|
Omit<iconsRegistry.IconBrowserEdgeProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
414
414
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
415
415
|
"16": {
|
|
416
|
-
"body": "<g clip-path=\"url(#browser-edge_x16_svg__a)\"><path fill=\"url(#browser-edge_x16_svg__b)\" d=\"M14.44 11.
|
|
417
|
-
"defs": "<defs><radialGradient id=\"browser-edge_x16_svg__c\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"matrix(5.96125 0 0 5.66319 9.825 11.154)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".72\" stop-opacity=\"0\"/><stop offset=\".95\" stop-opacity=\".53\"/><stop offset=\"1\"/></radialGradient><radialGradient id=\"browser-edge_x16_svg__e\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"rotate(-81.384 9.438 3.654)
|
|
416
|
+
"body": "<g clip-path=\"url(#browser-edge_x16_svg__a)\"><path fill=\"url(#browser-edge_x16_svg__b)\" d=\"M14.44 11.909a6 6 0 0 1-.658.294 6.4 6.4 0 0 1-2.244.404c-2.957 0-5.534-2.034-5.534-4.645a1.97 1.97 0 0 1 1.027-1.707c-2.675.113-3.362 2.9-3.362 4.533 0 4.618 4.255 5.086 5.172 5.086.495 0 1.24-.144 1.688-.285l.082-.028a8.02 8.02 0 0 0 4.162-3.3.25.25 0 0 0-.332-.352\"/><path fill=\"url(#browser-edge_x16_svg__c)\" d=\"M14.44 11.909a6 6 0 0 1-.658.294 6.4 6.4 0 0 1-2.244.404c-2.957 0-5.534-2.034-5.534-4.645a1.97 1.97 0 0 1 1.027-1.707c-2.675.113-3.362 2.9-3.362 4.533 0 4.618 4.255 5.086 5.172 5.086.495 0 1.24-.144 1.688-.285l.082-.028a8.02 8.02 0 0 0 4.162-3.3.25.25 0 0 0-.332-.352\" opacity=\".35\"/><path fill=\"url(#browser-edge_x16_svg__d)\" d=\"M6.607 15.089a5 5 0 0 1-1.421-1.334 5.045 5.045 0 0 1 1.845-7.5c.195-.092.528-.258.971-.25a2.02 2.02 0 0 1 1.606.813c.253.337.392.745.398 1.166 0-.013 1.528-4.975-5-4.975-2.744 0-5 2.604-5 4.888a8.1 8.1 0 0 0 .756 3.5 8 8 0 0 0 9.774 4.194 4.72 4.72 0 0 1-3.923-.5z\"/><path fill=\"url(#browser-edge_x16_svg__e)\" d=\"M6.607 15.089a5 5 0 0 1-1.421-1.334 5.045 5.045 0 0 1 1.845-7.5c.195-.092.528-.258.971-.25a2.02 2.02 0 0 1 1.606.813c.253.337.392.745.398 1.166 0-.013 1.528-4.975-5-4.975-2.744 0-5 2.604-5 4.888a8.1 8.1 0 0 0 .756 3.5 8 8 0 0 0 9.774 4.194 4.72 4.72 0 0 1-3.923-.5z\" opacity=\".41\"/><path fill=\"url(#browser-edge_x16_svg__f)\" d=\"M9.52 9.304c-.051.065-.207.156-.207.354 0 .163.106.32.295.451.899.625 2.593.543 2.598.543a3.7 3.7 0 0 0 1.892-.522 3.84 3.84 0 0 0 1.901-3.305c.017-1.4-.5-2.332-.708-2.744C13.966 1.49 11.108 0 7.999 0a8 8 0 0 0-8 7.888c.03-2.284 2.3-4.129 5-4.129.219 0 1.466.022 2.625.63 1.021.536 1.556 1.183 1.928 1.825.386.667.455 1.51.455 1.845 0 .336-.171.834-.488 1.245\"/><path fill=\"url(#browser-edge_x16_svg__g)\" d=\"M9.52 9.304c-.051.065-.207.156-.207.354 0 .163.106.32.295.451.899.625 2.593.543 2.598.543a3.7 3.7 0 0 0 1.892-.522 3.84 3.84 0 0 0 1.901-3.305c.017-1.4-.5-2.332-.708-2.744C13.966 1.49 11.108 0 7.999 0a8 8 0 0 0-8 7.888c.03-2.284 2.3-4.129 5-4.129.219 0 1.466.022 2.625.63 1.021.536 1.556 1.183 1.928 1.825.386.667.455 1.51.455 1.845 0 .336-.171.834-.488 1.245\"/></g>",
|
|
417
|
+
"defs": "<defs><radialGradient id=\"browser-edge_x16_svg__c\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"matrix(5.96125 0 0 5.66319 9.825 11.154)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".72\" stop-opacity=\"0\"/><stop offset=\".95\" stop-opacity=\".53\"/><stop offset=\"1\"/></radialGradient><radialGradient id=\"browser-edge_x16_svg__e\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"rotate(-81.384 9.438 3.654)scale(8.96413 7.24212)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".76\" stop-opacity=\"0\"/><stop offset=\".95\" stop-opacity=\".5\"/><stop offset=\"1\"/></radialGradient><radialGradient id=\"browser-edge_x16_svg__f\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"matrix(-.50607 12.65188 -26.94585 -1.07783 1.615 2.961)\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#35C1F1\"/><stop offset=\".11\" stop-color=\"#34C1ED\"/><stop offset=\".23\" stop-color=\"#2FC2DF\"/><stop offset=\".31\" stop-color=\"#2BC3D2\"/><stop offset=\".67\" stop-color=\"#36C752\"/></radialGradient><radialGradient id=\"browser-edge_x16_svg__g\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"matrix(1.70345 5.8404 -4.74942 1.38525 15.003 4.838)\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#66EB6E\"/><stop offset=\"1\" stop-color=\"#66EB6E\" stop-opacity=\"0\"/></radialGradient><linearGradient id=\"browser-edge_x16_svg__b\" x1=\"3.669\" x2=\"14.815\" y1=\"11.066\" y2=\"11.066\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#0C59A4\"/><stop offset=\"1\" stop-color=\"#114A8B\"/></linearGradient><linearGradient id=\"browser-edge_x16_svg__d\" x1=\"9.545\" x2=\"2.583\" y1=\"6.231\" y2=\"13.814\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#1B9DE2\"/><stop offset=\".16\" stop-color=\"#1595DF\"/><stop offset=\".67\" stop-color=\"#0680D7\"/><stop offset=\"1\" stop-color=\"#0078D4\"/></linearGradient><clipPath id=\"browser-edge_x16_svg__a\"><path fill=\"#fff\" d=\"M0 0h16v16H0z\"/></clipPath></defs>"
|
|
418
418
|
}
|
|
419
419
|
}, ["16"], "browser-edge"))
|
|
420
420
|
|
|
@@ -423,7 +423,7 @@ export const IconBrowserElectronDark: React.FC<
|
|
|
423
423
|
Omit<iconsRegistry.IconBrowserElectronDarkProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
424
424
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
425
425
|
"16": {
|
|
426
|
-
"body": "<path fill=\"#2B2E3A\" d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0
|
|
426
|
+
"body": "<path fill=\"#2B2E3A\" d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16\"/><path fill=\"#9FEAF9\" d=\"M6.281 4.48c-1.625-.295-2.91.014-3.422.902-.382.662-.273 1.54.265 2.477a.167.167 0 1 0 .289-.165c-.485-.846-.579-1.603-.266-2.146.426-.737 1.572-1.013 3.075-.74a.167.167 0 0 0 .06-.327M3.97 9c.657.722 1.51 1.4 2.485 1.962 2.357 1.36 4.867 1.725 6.104.881a.167.167 0 1 0-.187-.275c-1.108.755-3.492.41-5.75-.895-.945-.545-1.772-1.201-2.406-1.898A.167.167 0 1 0 3.97 9\"/><path fill=\"#9FEAF9\" d=\"M12.164 8.797c1.064-1.257 1.436-2.522.924-3.407-.376-.651-1.17-.995-2.227-1.01a.167.167 0 0 0-.005.334c.95.013 1.636.309 1.944.843.424.735.093 1.863-.89 3.025a.167.167 0 0 0 .14.275.17.17 0 0 0 .114-.06m-2.735-4.26c-.963.205-1.987.608-2.97 1.176-2.434 1.406-4.022 3.478-3.802 4.98a.167.167 0 1 0 .33-.048c-.196-1.334 1.31-3.298 3.638-4.643.954-.55 1.946-.941 2.873-1.14a.167.167 0 1 0-.07-.326\"/><path fill=\"#9FEAF9\" d=\"M5.486 11.735c.556 1.553 1.466 2.51 2.49 2.51.747 0 1.437-.509 1.976-1.405a.166.166 0 0 0-.056-.23.167.167 0 0 0-.23.058c-.484.806-1.078 1.244-1.69 1.244-.85 0-1.662-.854-2.177-2.29a.167.167 0 0 0-.27-.07.165.165 0 0 0-.043.183m5.082-.304c.288-.92.443-1.983.443-3.09 0-2.76-.966-5.14-2.343-5.752a.167.167 0 0 0-.135.305c1.228.545 2.145 2.804 2.145 5.448 0 1.073-.15 2.102-.428 2.99a.165.165 0 0 0 .051.179.166.166 0 0 0 .267-.08m3.14-.164a.798.798 0 1 0-1.596 0 .798.798 0 0 0 1.595 0m-.334 0a.465.465 0 1 1-.93 0 .465.465 0 0 1 .93 0m-10.343.798a.798.798 0 1 0 0-1.595.798.798 0 0 0 0 1.595m0-.333a.464.464 0 1 1 0-.929.464.464 0 0 1 0 .929\"/><path fill=\"#9FEAF9\" d=\"M7.976 3.403a.798.798 0 1 0 0-1.596.798.798 0 0 0 0 1.596m0-.334a.464.464 0 1 1 0-.928.464.464 0 0 1 0 .928m.122 5.837a.577.577 0 1 1-.244-1.128.577.577 0 0 1 .244 1.128\"/>"
|
|
427
427
|
}
|
|
428
428
|
}, ["16"], "browser-electron-dark"))
|
|
429
429
|
|
|
@@ -432,7 +432,7 @@ export const IconBrowserElectronLight: React.FC<
|
|
|
432
432
|
Omit<iconsRegistry.IconBrowserElectronLightProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
433
433
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
434
434
|
"16": {
|
|
435
|
-
"body": "<path fill=\"#fff\" d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0
|
|
435
|
+
"body": "<path fill=\"#fff\" d=\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16\"/><path fill=\"#47848F\" fill-rule=\"evenodd\" d=\"M6.187 4.2c-1.742-.318-3.12.014-3.669.965-.41.71-.292 1.65.284 2.656a.18.18 0 0 0 .31-.178c-.52-.906-.62-1.718-.284-2.3.458-.79 1.685-1.086 3.296-.793a.18.18 0 0 0 .178-.277.18.18 0 0 0-.115-.074M3.708 9.041c.705.774 1.62 1.5 2.664 2.103 2.53 1.46 5.22 1.85 6.545.947a.179.179 0 0 0-.202-.296c-1.187.81-3.743.44-6.166-.959-1.013-.585-1.9-1.288-2.579-2.034a.18.18 0 0 0-.264.24zm8.787-.216c1.141-1.348 1.54-2.703.992-3.652-.403-.698-1.256-1.067-2.389-1.081a.18.18 0 0 0-.18.176.18.18 0 0 0 .176.18c1.02.014 1.753.332 2.083.904.455.788.1 1.997-.955 3.243a.18.18 0 0 0 .151.293.18.18 0 0 0 .122-.062M9.563 4.258c-1.03.221-2.13.653-3.184 1.262-2.609 1.506-4.31 3.73-4.075 5.338a.18.18 0 0 0 .32.08.18.18 0 0 0 .034-.132c-.21-1.43 1.403-3.535 3.9-4.979 1.02-.59 2.086-1.009 3.08-1.222a.18.18 0 0 0 .06-.324.18.18 0 0 0-.135-.025z\" clip-rule=\"evenodd\"/><path fill=\"#47848F\" fill-rule=\"evenodd\" d=\"M5.336 11.975c.597 1.666 1.573 2.692 2.67 2.692.8 0 1.541-.546 2.118-1.507a.179.179 0 0 0-.306-.184c-.52.863-1.156 1.333-1.812 1.333-.911 0-1.782-.917-2.333-2.454a.18.18 0 0 0-.33-.016.18.18 0 0 0-.007.136m5.449-.325c.309-.987.475-2.126.475-3.312 0-2.96-1.037-5.512-2.512-6.167a.18.18 0 0 0-.24.228.18.18 0 0 0 .095.099c1.316.584 2.3 3.006 2.3 5.84 0 1.151-.161 2.254-.46 3.205a.18.18 0 0 0 .254.212.18.18 0 0 0 .088-.105m3.365-.175a.855.855 0 1 0-1.706 0 .855.855 0 0 0 1.704 0zm-.357 0a.498.498 0 1 1-.997-.001.498.498 0 0 1 .997 0\" clip-rule=\"evenodd\"/><path fill=\"#47848F\" fill-rule=\"evenodd\" d=\"M2.705 12.33a.855.855 0 1 0 0-1.71.855.855 0 0 0 0 1.71m0-.358a.498.498 0 1 1 0-.995.498.498 0 0 1 0 .995m5.301-8.93a.855.855 0 1 0 0-1.71.855.855 0 0 0 0 1.71m0-.358a.498.498 0 1 1 0-.996.498.498 0 0 1 0 .996m.13 6.259a.619.619 0 1 1-.26-1.21.619.619 0 1 1 .26 1.21\" clip-rule=\"evenodd\"/>"
|
|
436
436
|
}
|
|
437
437
|
}, ["16"], "browser-electron-light"))
|
|
438
438
|
|
|
@@ -441,8 +441,8 @@ export const IconBrowserMozillaFirefox: React.FC<
|
|
|
441
441
|
Omit<iconsRegistry.IconBrowserMozillaFirefoxProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
442
442
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
443
443
|
"16": {
|
|
444
|
-
"body": "<g clip-path=\"url(#browser-mozilla-firefox_x16_svg__a)\"><path fill=\"url(#browser-mozilla-firefox_x16_svg__b)\" d=\"M14.93 5.368c-.337-.81-1.02-1.686-1.556-1.963.382.74.647 1.533.785 2.353l.002.013c-.877-2.185-2.363-3.067-3.578-4.986a9
|
|
445
|
-
"defs": "<defs><radialGradient id=\"browser-mozilla-firefox_x16_svg__c\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"translate(13.405 1.8)
|
|
444
|
+
"body": "<g clip-path=\"url(#browser-mozilla-firefox_x16_svg__a)\"><path fill=\"url(#browser-mozilla-firefox_x16_svg__b)\" d=\"M14.93 5.368c-.337-.81-1.02-1.686-1.556-1.963.382.74.647 1.533.785 2.353l.002.013c-.877-2.185-2.363-3.067-3.578-4.986a9 9 0 0 1-.182-.297 3 3 0 0 1-.086-.16 1.4 1.4 0 0 1-.12-.32.02.02 0 0 0-.013-.007.03.03 0 0 0-.015 0l-.003.002-.006.003.003-.005C8.213 1.141 7.552 3.252 7.492 4.31a3.9 3.9 0 0 0-2.135.822 2 2 0 0 0-.2-.151 3.6 3.6 0 0 1-.022-1.896A5.7 5.7 0 0 0 3.27 4.527h-.004c-.307-.39-.285-1.674-.268-1.942q-.136.054-.259.137-.407.29-.758.65a7 7 0 0 0-.725.869v.001-.001A6.55 6.55 0 0 0 .215 6.59l-.01.05c-.015.07-.068.41-.077.485l-.001.017A7.4 7.4 0 0 0 0 8.212v.04a7.755 7.755 0 0 0 15.396 1.31q.018-.15.035-.3a8 8 0 0 0-.503-3.895zm-8.938 6.07q.053.028.108.053l.005.004zm8.169-5.665v-.007l.001.008z\"/><path fill=\"url(#browser-mozilla-firefox_x16_svg__c)\" d=\"M14.93 5.368c-.337-.81-1.02-1.686-1.556-1.963.382.74.647 1.533.785 2.353v.008l.002.008a7.02 7.02 0 0 1-.242 5.234c-.888 1.907-3.039 3.861-6.406 3.765C3.876 14.67.67 11.97.073 8.435c-.11-.558 0-.84.054-1.294q-.112.529-.125 1.07v.04a7.755 7.755 0 0 0 15.396 1.312q.019-.15.035-.3a8 8 0 0 0-.503-3.896z\"/><path fill=\"url(#browser-mozilla-firefox_x16_svg__d)\" d=\"M14.93 5.368c-.337-.81-1.02-1.686-1.556-1.963.382.74.647 1.533.785 2.353v.008l.002.008a7.02 7.02 0 0 1-.242 5.234c-.888 1.907-3.039 3.861-6.406 3.765C3.876 14.67.67 11.97.073 8.435c-.11-.558 0-.84.054-1.294q-.112.529-.125 1.07v.04a7.755 7.755 0 0 0 15.396 1.312q.019-.15.035-.3a8 8 0 0 0-.503-3.896z\"/><path fill=\"url(#browser-mozilla-firefox_x16_svg__e)\" d=\"m11.16 6.278.048.036a4.2 4.2 0 0 0-.72-.94c-2.41-2.41-.631-5.226-.332-5.37L10.16 0C8.212 1.14 7.55 3.251 7.49 4.308q.134-.012.273-.014a3.91 3.91 0 0 1 3.397 1.984\"/><path fill=\"url(#browser-mozilla-firefox_x16_svg__f)\" d=\"M7.767 6.76c-.013.193-.694.859-.933.859-2.204 0-2.563 1.334-2.563 1.334.098 1.123.88 2.048 1.827 2.537q.065.032.13.062.115.051.228.093c.325.115.665.18 1.01.195 3.865.181 4.613-4.622 1.824-6.016a2.68 2.68 0 0 1 1.87.454 3.91 3.91 0 0 0-3.398-1.985c-.092 0-.182.008-.272.014a3.9 3.9 0 0 0-2.135.823c.118.1.252.233.533.51.526.519 1.876 1.056 1.879 1.119z\"/><path fill=\"url(#browser-mozilla-firefox_x16_svg__g)\" d=\"M7.767 6.76c-.013.193-.694.859-.933.859-2.204 0-2.563 1.334-2.563 1.334.098 1.123.88 2.048 1.827 2.537q.065.032.13.062.115.051.228.093c.325.115.665.18 1.01.195 3.865.181 4.613-4.622 1.824-6.016a2.68 2.68 0 0 1 1.87.454 3.91 3.91 0 0 0-3.398-1.985c-.092 0-.182.008-.272.014a3.9 3.9 0 0 0-2.135.823c.118.1.252.233.533.51.526.519 1.876 1.056 1.879 1.119z\"/><path fill=\"url(#browser-mozilla-firefox_x16_svg__h)\" d=\"M4.994 4.874q.094.06.16.106a3.6 3.6 0 0 1-.022-1.895 5.7 5.7 0 0 0-1.866 1.442c.037 0 1.162-.021 1.728.347\"/><path fill=\"url(#browser-mozilla-firefox_x16_svg__i)\" d=\"M.07 8.435c.6 3.536 3.804 6.237 7.442 6.339 3.367.095 5.518-1.86 6.406-3.766a7.02 7.02 0 0 0 .241-5.234V5.76l.002.013c.275 1.797-.639 3.536-2.067 4.714l-.004.01c-2.783 2.267-5.446 1.367-5.985 1l-.113-.056C4.37 10.665 3.7 9.188 3.844 7.92a1.99 1.99 0 0 1-1.837-1.156 2.93 2.93 0 0 1 2.85-.115 3.86 3.86 0 0 0 2.912.115c-.003-.063-1.353-.6-1.879-1.119-.28-.277-.414-.41-.533-.51a2 2 0 0 0-.2-.152l-.16-.106c-.565-.368-1.69-.348-1.727-.347h-.004c-.307-.39-.286-1.674-.268-1.942q-.137.054-.259.137-.407.291-.758.65-.4.403-.728.867v.001-.001A6.55 6.55 0 0 0 .213 6.59c-.004.016-.28 1.22-.144 1.845z\"/><path fill=\"url(#browser-mozilla-firefox_x16_svg__j)\" d=\"M10.488 5.374c.283.278.526.595.72.94q.065.049.117.096c1.758 1.62.836 3.911.768 4.073 1.428-1.177 2.34-2.917 2.066-4.714-.877-2.187-2.364-3.069-3.577-4.988A9 9 0 0 1 10.4.485a3 3 0 0 1-.085-.16 1.4 1.4 0 0 1-.12-.321.02.02 0 0 0-.013-.007.03.03 0 0 0-.015 0L10.162 0l-.005.003c-.3.142-2.079 2.959.332 5.368z\"/><path fill=\"url(#browser-mozilla-firefox_x16_svg__k)\" d=\"M11.324 6.41a2 2 0 0 0-.116-.095l-.048-.035a2.68 2.68 0 0 0-1.87-.454c2.79 1.394 2.04 6.196-1.824 6.016a3.5 3.5 0 0 1-1.01-.195 4 4 0 0 1-.227-.093q-.067-.03-.13-.062l.005.003c.539.368 3.2 1.267 5.984-1l.004-.01c.07-.162.99-2.453-.768-4.074\"/><path fill=\"url(#browser-mozilla-firefox_x16_svg__l)\" d=\"M4.272 8.951s.358-1.333 2.563-1.333c.238 0 .92-.666.932-.859a3.86 3.86 0 0 1-2.911-.114 2.93 2.93 0 0 0-2.851.114 1.99 1.99 0 0 0 1.837 1.156c-.144 1.268.526 2.745 2.149 3.521q.053.027.107.053c-.947-.49-1.729-1.414-1.826-2.537\"/><path fill=\"url(#browser-mozilla-firefox_x16_svg__m)\" d=\"M14.93 5.368c-.337-.81-1.02-1.686-1.556-1.963.382.74.647 1.533.785 2.353l.002.013c-.877-2.185-2.363-3.067-3.578-4.986a9 9 0 0 1-.182-.297 3 3 0 0 1-.086-.16 1.4 1.4 0 0 1-.12-.32.02.02 0 0 0-.013-.007.03.03 0 0 0-.015 0l-.003.002-.006.003.003-.005C8.213 1.141 7.552 3.252 7.492 4.31c.09-.006.18-.014.273-.014a3.91 3.91 0 0 1 3.397 1.984 2.68 2.68 0 0 0-1.87-.454c2.79 1.395 2.04 6.196-1.824 6.017a3.5 3.5 0 0 1-1.01-.195 4 4 0 0 1-.358-.156l.006.004-.113-.057q.053.028.107.053c-.947-.49-1.729-1.414-1.826-2.537 0 0 .358-1.334 2.563-1.334.238 0 .92-.665.932-.858-.003-.063-1.352-.6-1.879-1.118-.28-.277-.414-.41-.532-.511a2 2 0 0 0-.2-.152 3.6 3.6 0 0 1-.022-1.895 5.7 5.7 0 0 0-1.867 1.443h-.003c-.308-.39-.286-1.674-.268-1.943q-.137.056-.26.138-.406.29-.757.649a7 7 0 0 0-.725.87A6.55 6.55 0 0 0 .216 6.59l-.01.052c-.016.068-.08.414-.09.489q-.09.536-.115 1.08v.04a7.755 7.755 0 0 0 15.396 1.312q.019-.15.035-.3a8 8 0 0 0-.503-3.896m-.77.398.002.009z\"/></g>",
|
|
445
|
+
"defs": "<defs><radialGradient id=\"browser-mozilla-firefox_x16_svg__c\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"translate(13.405 1.8)scale(16.1661)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".129\" stop-color=\"#FFBD4F\"/><stop offset=\".186\" stop-color=\"#FFAC31\"/><stop offset=\".247\" stop-color=\"#FF9D17\"/><stop offset=\".283\" stop-color=\"#FF980E\"/><stop offset=\".403\" stop-color=\"#FF563B\"/><stop offset=\".467\" stop-color=\"#FF3750\"/><stop offset=\".71\" stop-color=\"#F5156C\"/><stop offset=\".782\" stop-color=\"#EB0878\"/><stop offset=\".86\" stop-color=\"#E50080\"/></radialGradient><radialGradient id=\"browser-mozilla-firefox_x16_svg__d\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"translate(7.403 8.403)scale(16.1661)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".3\" stop-color=\"#960E18\"/><stop offset=\".351\" stop-color=\"#B11927\" stop-opacity=\".74\"/><stop offset=\".435\" stop-color=\"#DB293D\" stop-opacity=\".343\"/><stop offset=\".497\" stop-color=\"#F5334B\" stop-opacity=\".094\"/><stop offset=\".53\" stop-color=\"#FF3750\" stop-opacity=\"0\"/></radialGradient><radialGradient id=\"browser-mozilla-firefox_x16_svg__e\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"translate(9.404 -1.8)scale(11.7104)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".132\" stop-color=\"#FFF44F\"/><stop offset=\".252\" stop-color=\"#FFDC3E\"/><stop offset=\".506\" stop-color=\"#FF9D12\"/><stop offset=\".526\" stop-color=\"#FF980E\"/></radialGradient><radialGradient id=\"browser-mozilla-firefox_x16_svg__f\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"translate(5.602 12.605)scale(7.69689)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".353\" stop-color=\"#3A8EE6\"/><stop offset=\".472\" stop-color=\"#5C79F0\"/><stop offset=\".669\" stop-color=\"#9059FF\"/><stop offset=\"1\" stop-color=\"#C139E6\"/></radialGradient><radialGradient id=\"browser-mozilla-firefox_x16_svg__g\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"matrix(3.96725 -.95916 1.12294 4.64466 8.185 7.015)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".206\" stop-color=\"#9059FF\" stop-opacity=\"0\"/><stop offset=\".278\" stop-color=\"#8C4FF3\" stop-opacity=\".064\"/><stop offset=\".747\" stop-color=\"#7716A8\" stop-opacity=\".45\"/><stop offset=\".975\" stop-color=\"#6E008B\" stop-opacity=\".6\"/></radialGradient><radialGradient id=\"browser-mozilla-firefox_x16_svg__h\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"translate(7.203 1.2)scale(5.53808)\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FFE226\"/><stop offset=\".121\" stop-color=\"#FFDB27\"/><stop offset=\".295\" stop-color=\"#FFC82A\"/><stop offset=\".502\" stop-color=\"#FFA930\"/><stop offset=\".732\" stop-color=\"#FF7E37\"/><stop offset=\".792\" stop-color=\"#FF7139\"/></radialGradient><radialGradient id=\"browser-mozilla-firefox_x16_svg__i\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"translate(11.604 -2.4)scale(23.6289)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".113\" stop-color=\"#FFF44F\"/><stop offset=\".456\" stop-color=\"#FF980E\"/><stop offset=\".622\" stop-color=\"#FF5634\"/><stop offset=\".716\" stop-color=\"#FF3647\"/><stop offset=\".904\" stop-color=\"#E31587\"/></radialGradient><radialGradient id=\"browser-mozilla-firefox_x16_svg__j\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"rotate(83.976 5.426 4.81)scale(17.3156 11.3641)\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FFF44F\"/><stop offset=\".06\" stop-color=\"#FFE847\"/><stop offset=\".168\" stop-color=\"#FFC830\"/><stop offset=\".304\" stop-color=\"#FF980E\"/><stop offset=\".356\" stop-color=\"#FF8B16\"/><stop offset=\".455\" stop-color=\"#FF672A\"/><stop offset=\".57\" stop-color=\"#FF3647\"/><stop offset=\".737\" stop-color=\"#E31587\"/></radialGradient><radialGradient id=\"browser-mozilla-firefox_x16_svg__k\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"translate(7.203 3.201)scale(14.7495)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".137\" stop-color=\"#FFF44F\"/><stop offset=\".48\" stop-color=\"#FF980E\"/><stop offset=\".592\" stop-color=\"#FF5634\"/><stop offset=\".655\" stop-color=\"#FF3647\"/><stop offset=\".904\" stop-color=\"#E31587\"/></radialGradient><radialGradient id=\"browser-mozilla-firefox_x16_svg__l\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"matrix(16.144 0 0 16.1441 11.004 4.002)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".094\" stop-color=\"#FFF44F\"/><stop offset=\".231\" stop-color=\"#FFE141\"/><stop offset=\".509\" stop-color=\"#FFAF1E\"/><stop offset=\".626\" stop-color=\"#FF980E\"/></radialGradient><linearGradient id=\"browser-mozilla-firefox_x16_svg__b\" x1=\"13.903\" x2=\"1.03\" y1=\"2.478\" y2=\"14.899\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".048\" stop-color=\"#FFF44F\"/><stop offset=\".111\" stop-color=\"#FFE847\"/><stop offset=\".225\" stop-color=\"#FFC830\"/><stop offset=\".368\" stop-color=\"#FF980E\"/><stop offset=\".401\" stop-color=\"#FF8B16\"/><stop offset=\".462\" stop-color=\"#FF672A\"/><stop offset=\".534\" stop-color=\"#FF3647\"/><stop offset=\".705\" stop-color=\"#E31587\"/></linearGradient><linearGradient id=\"browser-mozilla-firefox_x16_svg__m\" x1=\"13.747\" x2=\"2.795\" y1=\"2.412\" y2=\"13.366\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".167\" stop-color=\"#FFF44F\" stop-opacity=\".8\"/><stop offset=\".266\" stop-color=\"#FFF44F\" stop-opacity=\".634\"/><stop offset=\".489\" stop-color=\"#FFF44F\" stop-opacity=\".217\"/><stop offset=\".6\" stop-color=\"#FFF44F\" stop-opacity=\"0\"/></linearGradient><clipPath id=\"browser-mozilla-firefox_x16_svg__a\"><path fill=\"#fff\" d=\"M0 0h15.49v16H0z\"/></clipPath></defs>"
|
|
446
446
|
}
|
|
447
447
|
}, ["16"], "browser-mozilla-firefox"))
|
|
448
448
|
|
|
@@ -451,8 +451,8 @@ export const IconBrowserSafari: React.FC<
|
|
|
451
451
|
Omit<iconsRegistry.IconBrowserSafariProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
452
452
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
453
453
|
"16": {
|
|
454
|
-
"body": "<path fill=\"url(#browser-safari_x16_svg__a)\" d=\"M16 8A8 8 0 1 1-.001 8 8 8 0 0 1 16
|
|
455
|
-
"defs": "<defs><radialGradient id=\"browser-safari_x16_svg__a\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"translate(8.036 6.834)
|
|
454
|
+
"body": "<path fill=\"url(#browser-safari_x16_svg__a)\" d=\"M16 8A8 8 0 1 1-.001 8 8 8 0 0 1 16 8\"/><path fill=\"#F4F2F3\" d=\"M8 .417a.116.116 0 0 0-.117.117v1.345a.116.116 0 1 0 .234 0V.534A.116.116 0 0 0 8 .417m-.763.048h-.024a.116.116 0 0 0-.104.129l.06.563a.116.116 0 1 0 .231-.025L7.341.57a.116.116 0 0 0-.104-.104m1.531.001a.116.116 0 0 0-.104.104l-.06.563a.116.116 0 1 0 .233.024l.059-.563a.116.116 0 0 0-.128-.128M6.453.579q-.012 0-.023.003a.116.116 0 0 0-.09.138l.278 1.316a.116.116 0 1 0 .228-.048L6.568.672a.116.116 0 0 0-.115-.093m3.1.001a.116.116 0 0 0-.116.093l-.28 1.316a.116.116 0 1 0 .229.048l.28-1.316a.116.116 0 0 0-.114-.14M5.704.79a.116.116 0 0 0-.121.152l.175.539a.116.116 0 1 0 .222-.073L5.806.87a.12.12 0 0 0-.1-.08m4.59 0a.12.12 0 0 0-.1.08l-.175.539a.116.116 0 1 0 .222.072l.175-.538a.116.116 0 0 0-.121-.153m-5.33.27a.116.116 0 0 0-.104.164l.546 1.23a.116.116 0 1 0 .213-.095L5.075 1.13a.12.12 0 0 0-.109-.07m6.079.005a.12.12 0 0 0-.109.07l-.548 1.228a.116.116 0 0 0 .06.154c.058.026.127 0 .153-.06l.548-1.228a.116.116 0 0 0-.104-.164m-6.765.36a.116.116 0 0 0-.11.175l.284.489a.116.116 0 1 0 .202-.117l-.283-.49a.12.12 0 0 0-.093-.058m7.442-.001a.12.12 0 0 0-.093.058l-.283.49a.116.116 0 0 0 .043.16.116.116 0 0 0 .16-.043l.282-.49a.116.116 0 0 0-.109-.175m-8.109.416a.117.117 0 0 0-.09.185l.79 1.089a.116.116 0 1 0 .188-.137l-.79-1.089a.12.12 0 0 0-.098-.048m8.784.006a.12.12 0 0 0-.098.048l-.791 1.088a.116.116 0 1 0 .189.137l.79-1.088a.116.116 0 0 0-.09-.185m-9.38.494a.116.116 0 0 0-.093.195l.379.42a.116.116 0 1 0 .173-.156l-.378-.42a.12.12 0 0 0-.081-.04m9.969 0a.12.12 0 0 0-.08.04l-.38.42a.116.116 0 1 0 .173.156l.38-.42a.116.116 0 0 0-.093-.195m-10.54.548a.117.117 0 0 0-.072.204l1 .9a.116.116 0 1 0 .156-.174l-1-.9a.12.12 0 0 0-.084-.03m11.114.004a.12.12 0 0 0-.084.03l-1 .9a.116.116 0 1 0 .155.173l1-.9a.116.116 0 0 0-.071-.203M1.969 3.5a.116.116 0 0 0-.073.211l.459.333a.116.116 0 1 0 .137-.189l-.458-.333A.1.1 0 0 0 1.97 3.5m12.064.004a.1.1 0 0 0-.064.023l-.458.332a.116.116 0 1 0 .137.189l.458-.333a.116.116 0 0 0-.073-.21m-12.507.648a.116.116 0 0 0-.05.217l1.165.673a.116.116 0 1 0 .117-.202l-1.166-.673a.1.1 0 0 0-.066-.015m12.948 0a.1.1 0 0 0-.066.015l-1.166.673a.116.116 0 0 0-.042.16.116.116 0 0 0 .16.042l1.164-.673a.116.116 0 0 0-.05-.217M1.19 4.845a.116.116 0 0 0-.05.223l.517.23a.116.116 0 1 0 .095-.212l-.516-.23a.1.1 0 0 0-.046-.01m13.622.005a.1.1 0 0 0-.045.01l-.517.23a.116.116 0 1 0 .095.213l.516-.23a.116.116 0 0 0-.05-.223m-13.92.72a.116.116 0 0 0-.026.227l1.278.418a.116.116 0 1 0 .072-.222L.937 5.576a.1.1 0 0 0-.046-.005m14.219.006a.1.1 0 0 0-.047.005l-1.28.416a.116.116 0 1 0 .073.222l1.28-.416a.116.116 0 0 0-.027-.227M.704 6.333a.116.116 0 0 0-.025.23l.553.118a.116.116 0 1 0 .049-.228l-.554-.118zm14.59 0-.023.003-.554.118a.116.116 0 1 0 .049.228l.553-.117a.116.116 0 0 0-.025-.231M.564 7.1a.116.116 0 0 0 0 .232l1.337.142a.116.116 0 1 0 .024-.232L.587 7.099zm14.873.01h-.023l-1.338.14a.116.116 0 1 0 .024.232l1.338-.14a.116.116 0 0 0 0-.232M.541 7.884a.116.116 0 1 0 0 .233h.566a.116.116 0 1 0 0-.233zm14.352 0a.116.116 0 1 0 0 .233h.566a.116.116 0 1 0 0-.233zm-12.97.635H1.9l-1.338.14a.116.116 0 1 0 .024.232l1.338-.14a.116.116 0 0 0 0-.232m12.153.009a.116.116 0 0 0-.001.232l1.338.141a.116.116 0 1 0 .024-.232l-1.338-.141zm-12.82.788-.023.002-.553.118a.116.116 0 1 0 .048.228l.554-.118a.116.116 0 0 0-.025-.23m13.487 0a.116.116 0 0 0-.025.232l.554.117a.116.116 0 0 0 .138-.09.116.116 0 0 0-.09-.138l-.553-.118zm-12.554.46a.1.1 0 0 0-.046.006l-1.28.415a.116.116 0 1 0 .073.222l1.279-.416a.116.116 0 0 0-.026-.227m11.62.004a.116.116 0 0 0-.026.227l1.28.417a.116.116 0 1 0 .072-.221l-1.28-.417a.1.1 0 0 0-.045-.006m-12.108.907a.1.1 0 0 0-.046.01l-.517.23a.116.116 0 1 0 .095.213l.517-.23a.116.116 0 0 0-.05-.223m12.596.005a.12.12 0 0 0-.108.069.116.116 0 0 0 .059.154l.516.23c.06.027.128 0 .154-.059a.116.116 0 0 0-.059-.154l-.516-.23a.1.1 0 0 0-.046-.01m-11.59.252a.1.1 0 0 0-.066.016l-1.165.672a.116.116 0 1 0 .116.202l1.166-.672a.116.116 0 0 0-.05-.218m10.586 0a.116.116 0 0 0-.05.217l1.165.673a.116.116 0 1 0 .116-.202l-1.165-.672a.1.1 0 0 0-.066-.016m-10.876.987a.1.1 0 0 0-.065.023l-.458.332a.116.116 0 1 0 .137.189l.458-.332a.116.116 0 0 0-.072-.212m11.163.004a.116.116 0 0 0-.073.211l.459.333a.116.116 0 1 0 .137-.189l-.458-.332a.1.1 0 0 0-.065-.023m-10.126.04a.12.12 0 0 0-.084.03l-1 .9a.116.116 0 1 0 .155.173l1-.9a.116.116 0 0 0-.07-.202m9.089.004a.116.116 0 0 0-.072.203l1 .9a.116.116 0 1 0 .156-.173l-1-.9a.12.12 0 0 0-.084-.03m-8.14.854a.12.12 0 0 0-.098.048l-.792 1.088a.116.116 0 1 0 .19.138l.79-1.088a.116.116 0 0 0-.09-.186m7.187.005a.117.117 0 0 0-.09.185l.79 1.09a.116.116 0 1 0 .188-.138l-.79-1.089a.12.12 0 0 0-.098-.048m-8.208.168a.12.12 0 0 0-.08.039l-.38.42a.116.116 0 1 0 .174.156l.378-.42a.116.116 0 0 0-.092-.195m9.236 0a.116.116 0 0 0-.093.195l.378.421a.116.116 0 1 0 .174-.156l-.379-.42a.12.12 0 0 0-.08-.04m-7.11.467a.12.12 0 0 0-.108.07l-.548 1.228a.116.116 0 1 0 .213.095l.548-1.229a.116.116 0 0 0-.104-.164m4.976.004a.117.117 0 0 0-.104.164l.546 1.23a.116.116 0 1 0 .213-.096l-.546-1.229a.12.12 0 0 0-.109-.07m-5.939.376a.12.12 0 0 0-.092.058l-.283.49a.116.116 0 0 0 .042.16.116.116 0 0 0 .16-.043l.283-.49a.116.116 0 0 0-.11-.175m6.91 0a.116.116 0 0 0-.11.175l.283.49a.116.116 0 0 0 .16.043.116.116 0 0 0 .042-.16l-.283-.49a.12.12 0 0 0-.092-.058m-4.726.018a.116.116 0 0 0-.115.092l-.28 1.316a.116.116 0 0 0 .09.139.116.116 0 0 0 .139-.09l.28-1.316a.116.116 0 0 0-.114-.141m2.538 0q-.012 0-.023.003a.116.116 0 0 0-.09.138l.278 1.316a.116.116 0 1 0 .228-.048l-.278-1.316a.116.116 0 0 0-.115-.093M8 14.005a.116.116 0 0 0-.117.117v1.345a.116.116 0 1 0 .234 0v-1.345A.116.116 0 0 0 8 14.004m-2.141.435a.12.12 0 0 0-.101.08l-.175.538a.116.116 0 1 0 .222.073l.175-.539a.116.116 0 0 0-.121-.152m4.281 0a.116.116 0 0 0-.121.152l.175.539a.116.116 0 1 0 .222-.072l-.175-.538a.12.12 0 0 0-.1-.08m-2.872.3a.116.116 0 0 0-.105.104l-.059.563a.116.116 0 1 0 .232.024l.06-.563a.116.116 0 0 0-.128-.128m1.46 0h-.024a.117.117 0 0 0-.104.129l.059.563a.116.116 0 1 0 .232-.024l-.06-.563a.116.116 0 0 0-.104-.104\"/><g filter=\"url(#browser-safari_x16_svg__b)\" opacity=\".409\"><path fill=\"#000\" d=\"M13.467 3.334 7.085 7.042l-4.034 6.352 5.902-4.372z\"/></g><path fill=\"#FF5150\" d=\"m8.915 8.958-1.83-1.916 6.489-4.365z\"/><path fill=\"#F1F1F1\" d=\"m8.915 8.958-1.83-1.916-4.659 6.28z\"/><path fill=\"#000\" d=\"m2.426 13.323 6.489-4.365 4.659-6.28z\" opacity=\".243\"/>",
|
|
455
|
+
"defs": "<defs><radialGradient id=\"browser-safari_x16_svg__a\" cx=\"0\" cy=\"0\" r=\"1\" gradientTransform=\"translate(8.036 6.834)scale(8.68021)\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#06C2E7\"/><stop offset=\".25\" stop-color=\"#0DB8EC\"/><stop offset=\".5\" stop-color=\"#12AEF1\"/><stop offset=\".75\" stop-color=\"#1F86F9\"/><stop offset=\"1\" stop-color=\"#107DDD\"/></radialGradient><filter id=\"browser-safari_x16_svg__b\" width=\"11.763\" height=\"11.406\" x=\"2.377\" y=\"2.661\" color-interpolation-filters=\"sRGB\" filterUnits=\"userSpaceOnUse\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feBlend in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/><feGaussianBlur result=\"effect1_foregroundBlur_4665_8423\" stdDeviation=\".337\"/></filter></defs>"
|
|
456
456
|
}
|
|
457
457
|
}, ["16"], "browser-safari"))
|
|
458
458
|
|
|
@@ -461,7 +461,7 @@ export const IconBrowserWebkit: React.FC<
|
|
|
461
461
|
Omit<iconsRegistry.IconBrowserWebkitProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
462
462
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
463
463
|
"16": {
|
|
464
|
-
"body": "<path fill=\"#fff\" d=\"m6.34 12.735-4.352-3.42a1.
|
|
464
|
+
"body": "<path fill=\"#fff\" d=\"m6.34 12.735-4.352-3.42a1.65 1.65 0 0 1-.682-1.294c0-.484.243-.948.682-1.292L6.34 3.302A2.7 2.7 0 0 1 8 2.766c.628 0 1.212.194 1.66.539l4.352 3.42a1.65 1.65 0 0 1 .682 1.294c0 .49-.243.95-.682 1.293l-4.353 3.42A2.7 2.7 0 0 1 8 13.275c-.628 0-1.212-.189-1.66-.539\"/><path fill=\"#fff\" d=\"M6.34 10.58 1.989 7.16a1.65 1.65 0 0 1-.682-1.293c0-.485.243-.948.682-1.293L6.34 1.147A2.7 2.7 0 0 1 8 .611c.628 0 1.212.194 1.66.54l4.352 3.42a1.65 1.65 0 0 1 .682 1.293c0 .49-.243.95-.682 1.293l-4.353 3.42c-.477.361-1.061.552-1.659.542-.628 0-1.212-.188-1.66-.538\"/><path fill=\"#FF9D00\" d=\"M14.007 8.835a1.59 1.59 0 0 1 0 2.62L9.67 14.862a2.86 2.86 0 0 1-3.34 0l-4.337-3.4a1.59 1.59 0 0 1 .003-2.623l4.337-3.405c.92-.717 2.419-.717 3.34 0z\"/><path fill=\"#FC0\" d=\"m6.34 12.735-4.352-3.42a1.65 1.65 0 0 1-.682-1.294c0-.484.243-.948.682-1.292L6.34 3.302A2.7 2.7 0 0 1 8 2.766c.628 0 1.212.194 1.66.539l4.352 3.42a1.65 1.65 0 0 1 .682 1.294c0 .49-.243.95-.682 1.293l-4.353 3.42A2.7 2.7 0 0 1 8 13.275c-.628 0-1.212-.189-1.66-.539\"/><path fill=\"url(#browser-webkit_x16_svg__a)\" d=\"M6.34 10.58 1.989 7.16a1.65 1.65 0 0 1-.682-1.293c0-.485.243-.948.682-1.293L6.34 1.147A2.7 2.7 0 0 1 8 .611c.628 0 1.212.194 1.66.54l4.352 3.42a1.65 1.65 0 0 1 .682 1.293c0 .49-.243.95-.682 1.293l-4.353 3.42c-.477.361-1.061.552-1.659.542-.628 0-1.212-.188-1.66-.538\"/><path fill=\"#fff\" d=\"M8.016 9.145c2.222 0 4.024-1.474 4.024-3.292 0-1.813-1.804-3.294-4.024-3.294-2.225 0-4.03 1.481-4.03 3.294 0 1.818 1.805 3.292 4.027 3.292zm0 .34c-2.451 0-4.444-1.625-4.444-3.632 0-2.004 1.993-3.628 4.444-3.628s4.44 1.627 4.44 3.628c0 2.007-1.989 3.631-4.44 3.631\"/><path fill=\"#8CC8F6\" d=\"M8.312 7.251c.221-.027.44-.092.639-.188l1.266.522-.663-.997a1.16 1.16 0 0 0 0-1.47l.663-.997-1.193.493-.035.525a.89.89 0 0 1-.033 1.45 1.4 1.4 0 0 1-.43.228l-.216.431zm-.592-2.79a2.2 2.2 0 0 0-.647.188l-1.266-.523.663.997a1.16 1.16 0 0 0 0 1.468l-.663.997 1.223-.504.027-.493a.89.89 0 0 1 .008-1.47 1.6 1.6 0 0 1 .431-.23l.216-.43z\"/><path fill=\"#fff\" fill-rule=\"evenodd\" d=\"m7.407 5.745-.17 2.99 1.366-2.774.194-2.982zM7.39 8.162l1.093-2.22-.959-.175-.134 2.397z\" clip-rule=\"evenodd\"/>",
|
|
465
465
|
"defs": "<defs><linearGradient id=\"browser-webkit_x16_svg__a\" x1=\"8\" x2=\"8\" y1=\".611\" y2=\"11.12\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#34AADC\"/><stop offset=\"1\" stop-color=\"#007AFF\"/></linearGradient></defs>"
|
|
466
466
|
}
|
|
467
467
|
}, ["16"], "browser-webkit"))
|
|
@@ -489,10 +489,10 @@ export const IconCheckmarkSolid: React.FC<
|
|
|
489
489
|
Omit<iconsRegistry.IconCheckmarkSolidProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
490
490
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
491
491
|
"16": {
|
|
492
|
-
"body": "<path fill=\"#fff\" d=\"M13.657 13.657A8 8 0 1 1 2.343 2.343a8 8 0 0 1 11.314 11.
|
|
492
|
+
"body": "<path fill=\"#fff\" d=\"M13.657 13.657A8 8 0 1 1 2.343 2.343a8 8 0 0 1 11.314 11.314\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m5 8.5 2 2 4-5\" class=\"icon-dark\"/>"
|
|
493
493
|
},
|
|
494
494
|
"24": {
|
|
495
|
-
"body": "<path fill=\"#fff\" d=\"M20.485 20.485c-4.686 4.687-12.284 4.687-16.97 0-4.687-4.686-4.687-12.284 0-16.97 4.686-4.687 12.284-4.687 16.97 0 4.687 4.686 4.687 12.284 0 16.
|
|
495
|
+
"body": "<path fill=\"#fff\" d=\"M20.485 20.485c-4.686 4.687-12.284 4.687-16.97 0-4.687-4.686-4.687-12.284 0-16.97 4.686-4.687 12.284-4.687 16.97 0 4.687 4.686 4.687 12.284 0 16.97\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M15.999 9 11 15l-2.999-3\" class=\"icon-dark\"/>"
|
|
496
496
|
}
|
|
497
497
|
}, ["16","24"], "checkmark-solid"))
|
|
498
498
|
|
|
@@ -639,7 +639,7 @@ export const IconCurrencyEur: React.FC<
|
|
|
639
639
|
Omit<iconsRegistry.IconCurrencyEurProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
640
640
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
641
641
|
"16": {
|
|
642
|
-
"body": "<path fill=\"currentColor\" d=\"m6.524 13.214.565-.
|
|
642
|
+
"body": "<path fill=\"currentColor\" d=\"m6.524 13.214.565-.825zm6.145.33a1 1 0 1 0-1.338-1.486zm-1.338-9.602a1 1 0 1 0 1.338-1.485zM2.5 5.501a1 1 0 0 0 0 2zm7.695 2a1 1 0 1 0 0-2zM2.5 8.5a1 1 0 0 0 0 2zm6.054 2a1 1 0 1 0 0-2zM9 13a3.36 3.36 0 0 1-1.91-.611l-1.132 1.65A5.36 5.36 0 0 0 9 15zm-1.91-.611C5.884 11.564 5 9.943 5 8H3c0 2.522 1.147 4.797 2.958 6.039zM5 8c0-2.94 1.954-5 4-5V1C5.523 1 3 4.312 3 8zm6.33 4.058C10.657 12.665 9.85 13 9 13v2c1.401 0 2.672-.558 3.67-1.457zM9 3c.85 0 1.656.335 2.33.942l1.34-1.485C11.672 1.557 10.4 1 9 1zM2.5 7.5h7.695v-2H2.5zm0 3h6.054v-2H2.5z\" class=\"icon-dark\"/>"
|
|
643
643
|
}
|
|
644
644
|
}, ["16"], "currency-eur"))
|
|
645
645
|
|
|
@@ -648,7 +648,7 @@ export const IconCurrencyGbp: React.FC<
|
|
|
648
648
|
Omit<iconsRegistry.IconCurrencyGbpProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
649
649
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
650
650
|
"16": {
|
|
651
|
-
"body": "<path fill=\"currentColor\" d=\"M10 5a1 1 0 1 0 2
|
|
651
|
+
"body": "<path fill=\"currentColor\" d=\"M10 5a1 1 0 1 0 2 0zm-6 9-.79-.614a1 1 0 0 0 1.345 1.446zm8.555.832a1 1 0 0 0-1.11-1.664zM4 8a1 1 0 0 0 0 2zm5 2a1 1 0 0 0 0-2zM6 5a2 2 0 0 1 2-2V1a4 4 0 0 0-4 4zm2-2a2 2 0 0 1 2 2h2a4 4 0 0 0-4-4zM4 14c.555.832.554.832.554.833h-.001l-.002.002-.003.002-.005.003-.004.002.014-.008q.03-.018.12-.058c.117-.05.309-.12.568-.167.51-.093 1.319-.108 2.388.32l.742-1.857c-1.431-.573-2.622-.588-3.487-.43a4.6 4.6 0 0 0-1.01.3 3.4 3.4 0 0 0-.42.22l-.004.003-.003.002c-.001 0-.002 0 .553.833m3.629.928c1.431.573 2.622.588 3.487.43a4.6 4.6 0 0 0 1.01-.3 3.4 3.4 0 0 0 .408-.212l.011-.008.005-.003.003-.002c.001 0 .002 0-.553-.833-.555-.832-.554-.832-.554-.833h.001l.002-.002.003-.002.005-.003.004-.002-.014.008q-.03.018-.12.058c-.117.05-.309.12-.568.167-.51.093-1.319.108-2.388-.32zm-2.84-.314c1.77-2.276 2.2-4.085 2.048-5.707l-1.991.186c.095 1.022-.115 2.339-1.635 4.293zm2.048-5.707c-.08-.863-.325-1.632-.51-2.254C6.13 5.996 6 5.498 6 5H4c0 .827.22 1.584.41 2.223.2.674.377 1.242.436 1.87zM4 10h1.841V8H4zm1.841 0H9V8H5.841z\" class=\"icon-dark\"/>"
|
|
652
652
|
}
|
|
653
653
|
}, ["16"], "currency-gbp"))
|
|
654
654
|
|
|
@@ -666,7 +666,7 @@ export const IconCurrencyRub: React.FC<
|
|
|
666
666
|
Omit<iconsRegistry.IconCurrencyRubProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
667
667
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
668
668
|
"16": {
|
|
669
|
-
"body": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M5 8h5a3 3 0 1 0 0-
|
|
669
|
+
"body": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M5 8h5a3 3 0 1 0 0-6H5zm0 0v6m0-6H3m0 3h6\" class=\"icon-dark\"/>"
|
|
670
670
|
}
|
|
671
671
|
}, ["16"], "currency-rub"))
|
|
672
672
|
|
|
@@ -684,7 +684,7 @@ export const IconDeviceLaptop: React.FC<
|
|
|
684
684
|
Omit<iconsRegistry.IconDeviceLaptopProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
685
685
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
686
686
|
"24": {
|
|
687
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M3 17H2v.1A2.9 2.9 0 0 0 4.9 20h14.2a2.9 2.9 0 0 0 2.9-2.
|
|
687
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M3 17H2v.1A2.9 2.9 0 0 0 4.9 20h14.2a2.9 2.9 0 0 0 2.9-2.9V17H3\" class=\"icon-light\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M21 17H3m18 0h1v.1m-1-.1V6M3 17H2v.1m1-.1V6m2-2h14M5 4a2 2 0 0 0-2 2m2-2a2 2 0 0 0-2 2v0m16-2a2 2 0 0 1 2 2m-2-2a2 2 0 0 1 2 2v0m1 11.1a2.9 2.9 0 0 1-2.9 2.9m2.9-2.9a2.9 2.9 0 0 1-2.9 2.9v0m0 0H4.9m0 0A2.9 2.9 0 0 1 2 17.1M4.9 20A2.9 2.9 0 0 1 2 17.1v0\" class=\"icon-dark\"/><circle cx=\"12\" cy=\"7\" r=\"1\" fill=\"currentColor\" class=\"icon-dark\"/>"
|
|
688
688
|
}
|
|
689
689
|
}, ["24"], "device-laptop"))
|
|
690
690
|
|
|
@@ -705,10 +705,10 @@ export const IconDeviceTv: React.FC<
|
|
|
705
705
|
Omit<iconsRegistry.IconDeviceTvProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
706
706
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
707
707
|
"16": {
|
|
708
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M15 3a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h12a1 1 0 0 0 1-
|
|
708
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M15 3a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 11H2a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1zm0 0v2a1 1 0 0 0 1 1h3-8\" class=\"icon-dark\"/>"
|
|
709
709
|
},
|
|
710
710
|
"24": {
|
|
711
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M23 4a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h20a1 1 0 0 0 1-
|
|
711
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M23 4a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h20a1 1 0 0 0 1-1z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 17H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h20a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1zm0 0v4m0 0h6m-6 0H6\" class=\"icon-dark\"/>"
|
|
712
712
|
}
|
|
713
713
|
}, ["16","24"], "device-tv"))
|
|
714
714
|
|
|
@@ -717,10 +717,10 @@ export const IconDocumentAddedSquarePlus: React.FC<
|
|
|
717
717
|
Omit<iconsRegistry.IconDocumentAddedSquarePlusProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
718
718
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
719
719
|
"16": {
|
|
720
|
-
"body": "<path fill=\"#E4FBF2\" d=\"M2 12V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-
|
|
720
|
+
"body": "<path fill=\"#E4FBF2\" d=\"M2 12V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2\" class=\"icon-light\"/><path stroke=\"#1FA971\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 6v4m2-2H6m6-6H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2\" class=\"icon-dark\"/>"
|
|
721
721
|
},
|
|
722
722
|
"24": {
|
|
723
|
-
"body": "<path fill=\"#E4FBF2\" d=\"M3 18V6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H6a3 3 0 0 1-3-
|
|
723
|
+
"body": "<path fill=\"#E4FBF2\" d=\"M3 18V6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3\" class=\"icon-light\"/><path stroke=\"#1FA971\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 8v8m4-4H8m10-9H6a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3\" class=\"icon-dark\"/>"
|
|
724
724
|
}
|
|
725
725
|
}, ["16","24"], "document-added-square-plus"))
|
|
726
726
|
|
|
@@ -729,7 +729,7 @@ export const IconDocumentAdded: React.FC<
|
|
|
729
729
|
Omit<iconsRegistry.IconDocumentAddedProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
730
730
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
731
731
|
"16": {
|
|
732
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M2 13V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-
|
|
732
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M2 13V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m6 10 .5-1m3.5 1-.5-1m-3 0L8 6l1.5 3m-3 0h3M14 4.828V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828\" class=\"icon-dark\"/>"
|
|
733
733
|
}
|
|
734
734
|
}, ["16"], "document-added"))
|
|
735
735
|
|
|
@@ -738,13 +738,13 @@ export const IconDocumentBlank: React.FC<
|
|
|
738
738
|
Omit<iconsRegistry.IconDocumentBlankProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
739
739
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
740
740
|
"16": {
|
|
741
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M2 14V2a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3a1 1 0 0 1-1-
|
|
741
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M2 14V2a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M5 8h3M5 5h6m-6 6h5m3-10H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1\" class=\"icon-dark\"/>"
|
|
742
742
|
},
|
|
743
743
|
"24": {
|
|
744
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M4 20V4a2 2 0 0 1 2-2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-
|
|
744
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M4 20V4a2 2 0 0 1 2-2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8m-6-6 6 6m-6-6v6h6\" class=\"icon-dark\"/>"
|
|
745
745
|
},
|
|
746
746
|
"48": {
|
|
747
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M10 39V9a1 1 0 0 1 1-1h26a1 1 0 0 1 1 1v30a1 1 0 0 1-1 1H11a1 1 0 0 1-1-
|
|
747
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M10 39V9a1 1 0 0 1 1-1h26a1 1 0 0 1 1 1v30a1 1 0 0 1-1 1H11a1 1 0 0 1-1-1\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M17 24h7m-7-6.857h14M17 30.857h11.667M37 8H11a1 1 0 0 0-1 1v30a1 1 0 0 0 1 1h26a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1\" class=\"icon-dark\"/>"
|
|
748
748
|
}
|
|
749
749
|
}, ["16","24","48"], "document-blank"))
|
|
750
750
|
|
|
@@ -753,10 +753,10 @@ export const IconDocumentCode: React.FC<
|
|
|
753
753
|
Omit<iconsRegistry.IconDocumentCodeProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
754
754
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
755
755
|
"24": {
|
|
756
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M18 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-
|
|
756
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M18 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2\" class=\"icon-light\"/><path fill=\"currentColor\" d=\"M9 14a1 1 0 1 0 0 2zm6 2a1 1 0 1 0 0-2zm-6 3h1v-2H9zm-1-2a1 1 0 1 0 0 2zm5-6h-1v2h1zm3 2a1 1 0 1 0 0-2zm-6-2a1 1 0 1 0 0 2zm.01 2h1v-2h-1zM9 8a1 1 0 0 0 0 2zm3 2h1V8h-1zm3-2h-1v2h1zm.01 2a1 1 0 1 0 0-2zM14 7a1 1 0 1 0 0-2zm-2-2h-1v2h1zM8 5a1 1 0 0 0 0 2zm1 2h1V5H9zm3 10h-1v2h1zm1.01 2a1 1 0 1 0 0-2zM6 3h12V1H6zm12 18H6v2h12zm1-17v16h2V4zM5 20V4H3v16zm4-4h6v-2H9zm0 1H8v2h1zm4-4h3v-2h-3zm-3 0h.01v-2H10zm-1-3h3V8H9zm6 0h.01V8H15zm-1-5h-2v2h2zM8 7h1V5H8zm4 12h1.01v-2H12zm-6 2a1 1 0 0 1-1-1H3a3 3 0 0 0 3 3zm12 2a3 3 0 0 0 3-3h-2a1 1 0 0 1-1 1zm0-20a1 1 0 0 1 1 1h2a3 3 0 0 0-3-3zM6 1a3 3 0 0 0-3 3h2a1 1 0 0 1 1-1z\" class=\"icon-dark\"/>"
|
|
757
757
|
},
|
|
758
758
|
"48": {
|
|
759
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M32 5.18V13h7.82a2 2 0 0 0-.406-.586l-6.828-6.
|
|
759
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M32 5.18V13h7.82a2 2 0 0 0-.406-.586l-6.828-6.828A2 2 0 0 0 32 5.18\" class=\"icon-light\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m20 21-3 3 3 3m8-6 3 3-3 3m-5.5 2.5 3-11M32 5.18a2 2 0 0 0-.828-.18H9a1 1 0 0 0-1 1v36a1 1 0 0 0 1 1h30a1 1 0 0 0 1-1V13.828a2 2 0 0 0-.18-.828M32 5.18c.216.098.415.235.586.406l6.828 6.828a2 2 0 0 1 .406.586M32 5.18V13h7.82\" class=\"icon-dark\"/><path fill=\"#A3E7CB\" d=\"M43 40a6 6 0 1 1-12 0 6 6 0 0 1 12 0\" class=\"icon-light-secondary\"/><path stroke=\"#00814D\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M37 38v2m0 2v-2m0 0h2-4m8 0a6 6 0 1 1-12 0 6 6 0 0 1 12 0\" class=\"icon-dark-secondary\"/>"
|
|
760
760
|
}
|
|
761
761
|
}, ["24","48"], "document-code"))
|
|
762
762
|
|
|
@@ -765,7 +765,7 @@ export const IconDocumentDeleted: React.FC<
|
|
|
765
765
|
Omit<iconsRegistry.IconDocumentDeletedProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
766
766
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
767
767
|
"16": {
|
|
768
|
-
"body": "<path fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M2 13V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-
|
|
768
|
+
"body": "<path fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M2 13V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2\" class=\"icon-dark-stroke icon-light-fill\"/>"
|
|
769
769
|
}
|
|
770
770
|
}, ["16"], "document-deleted"))
|
|
771
771
|
|
|
@@ -774,10 +774,10 @@ export const IconDocumentDownload: React.FC<
|
|
|
774
774
|
Omit<iconsRegistry.IconDocumentDownloadProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
775
775
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
776
776
|
"16": {
|
|
777
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M2 13V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-
|
|
777
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M2 13V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 5v6m0 0 2-2m-2 2L6 9m8-4.172V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828\" class=\"icon-dark\"/>"
|
|
778
778
|
},
|
|
779
779
|
"24": {
|
|
780
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M4 20V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-
|
|
780
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M4 20V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 16V8m0 8 3-3m-3 3-3-3m11-3.757V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243\" class=\"icon-dark\"/>"
|
|
781
781
|
}
|
|
782
782
|
}, ["16","24"], "document-download"))
|
|
783
783
|
|
|
@@ -786,10 +786,10 @@ export const IconDocumentMinus: React.FC<
|
|
|
786
786
|
Omit<iconsRegistry.IconDocumentMinusProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
787
787
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
788
788
|
"16": {
|
|
789
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M4 15a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828V13a2 2 0 0 1-2
|
|
789
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M4 15a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828V13a2 2 0 0 1-2 2z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6 8h4m4-3.172V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828\" class=\"icon-dark\"/>"
|
|
790
790
|
},
|
|
791
791
|
"24": {
|
|
792
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M4 20V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-
|
|
792
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M4 20V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M15 12H9m11-2.757V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243\" class=\"icon-dark\"/>"
|
|
793
793
|
}
|
|
794
794
|
}, ["16","24"], "document-minus"))
|
|
795
795
|
|
|
@@ -798,10 +798,10 @@ export const IconDocumentModifiedSquareDot: React.FC<
|
|
|
798
798
|
Omit<iconsRegistry.IconDocumentModifiedSquareDotProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
799
799
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
800
800
|
"16": {
|
|
801
|
-
"body": "<path fill=\"#F5F4D7\" d=\"M9 8a1 1 0 1 1-2 0 1 1 0 0 1 2
|
|
801
|
+
"body": "<path fill=\"#F5F4D7\" d=\"M9 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" class=\"icon-light\"/><path fill=\"#F5F4D7\" fill-rule=\"evenodd\" d=\"M4 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm4 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" class=\"icon-light\" clip-rule=\"evenodd\"/><path stroke=\"#DB7903\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" class=\"icon-dark\"/><path stroke=\"#DB7903\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm4 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
802
802
|
},
|
|
803
803
|
"24": {
|
|
804
|
-
"body": "<path fill=\"#DB7903\" d=\"M14 12a2 2 0 1 1-4 0 2 2 0 0 1 4
|
|
804
|
+
"body": "<path fill=\"#DB7903\" d=\"M14 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0\" class=\"icon-dark\"/><path fill=\"#F5F4D7\" fill-rule=\"evenodd\" d=\"M6 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3zm6 11a2 2 0 1 0 0-4 2 2 0 0 0 0 4\" class=\"icon-light\" clip-rule=\"evenodd\"/><path stroke=\"#DB7903\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M14 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0\" class=\"icon-dark\"/><path stroke=\"#DB7903\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3zm6 11a2 2 0 1 0 0-4 2 2 0 0 0 0 4\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
805
805
|
}
|
|
806
806
|
}, ["16","24"], "document-modified-square-dot"))
|
|
807
807
|
|
|
@@ -810,7 +810,7 @@ export const IconDocumentModified: React.FC<
|
|
|
810
810
|
Omit<iconsRegistry.IconDocumentModifiedProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
811
811
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
812
812
|
"16": {
|
|
813
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M2 13V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-
|
|
813
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M2 13V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m5 10 1-4 2 3 2-3 1 4m3-5.172V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828\" class=\"icon-dark\"/>"
|
|
814
814
|
}
|
|
815
815
|
}, ["16"], "document-modified"))
|
|
816
816
|
|
|
@@ -819,10 +819,10 @@ export const IconDocumentPlusMinus: React.FC<
|
|
|
819
819
|
Omit<iconsRegistry.IconDocumentPlusMinusProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
820
820
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
821
821
|
"16": {
|
|
822
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M3 15a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v12a1 1 0 0 1-1
|
|
822
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M3 15a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6 6.5h4m-2 2v-4m-2 7h4M13 1H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1\" class=\"icon-dark\"/>"
|
|
823
823
|
},
|
|
824
824
|
"24": {
|
|
825
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M4 20V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-
|
|
825
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M4 20V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 13v-3m0-3v3m0 0h3m-3 0H9m0 7h6m5-7.757V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243\" class=\"icon-dark\"/>"
|
|
826
826
|
}
|
|
827
827
|
}, ["16","24"], "document-plus-minus"))
|
|
828
828
|
|
|
@@ -831,10 +831,10 @@ export const IconDocumentPlus: React.FC<
|
|
|
831
831
|
Omit<iconsRegistry.IconDocumentPlusProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
832
832
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
833
833
|
"16": {
|
|
834
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M3 15a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v12a1 1 0 0 1-1
|
|
834
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M3 15a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6 8h4m-2 2V6m5-5H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1\" class=\"icon-dark\"/>"
|
|
835
835
|
},
|
|
836
836
|
"24": {
|
|
837
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M4 20V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-
|
|
837
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M4 20V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 15v-3m0-3v3m0 0h3m-3 0H9m11-2.757V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243\" class=\"icon-dark\"/>"
|
|
838
838
|
}
|
|
839
839
|
}, ["16","24"], "document-plus"))
|
|
840
840
|
|
|
@@ -843,7 +843,7 @@ export const IconDocumentScript: React.FC<
|
|
|
843
843
|
Omit<iconsRegistry.IconDocumentScriptProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
844
844
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
845
845
|
"24": {
|
|
846
|
-
"body": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 1h13a3 3 0 0 1 3 3v15M4 1H3a2 2 0 0 0-2 2v0a2 2 0 0 0 2 2h1m0-4v4m7 1h5m-5 4h5m-5 4h5M4 5v15a3 3 0 0 0 3 3v0m13-4h1a2 2 0 0 1 2 2v0a2 2 0 0 1-2 2H7m13-4H7v0a2.
|
|
846
|
+
"body": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 1h13a3 3 0 0 1 3 3v15M4 1H3a2 2 0 0 0-2 2v0a2 2 0 0 0 2 2h1m0-4v4m7 1h5m-5 4h5m-5 4h5M4 5v15a3 3 0 0 0 3 3v0m13-4h1a2 2 0 0 1 2 2v0a2 2 0 0 1-2 2H7m13-4H7v0a2.83 2.83 0 0 1 0 4v0\" class=\"icon-dark\"/><path fill=\"currentColor\" d=\"M9 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0M9 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0M9 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" class=\"icon-dark\"/>"
|
|
847
847
|
}
|
|
848
848
|
}, ["24"], "document-script"))
|
|
849
849
|
|
|
@@ -852,7 +852,7 @@ export const IconDocumentSheet: React.FC<
|
|
|
852
852
|
Omit<iconsRegistry.IconDocumentSheetProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
853
853
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
854
854
|
"24": {
|
|
855
|
-
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M10 1a1 1 0 0 0-.707.293l-6 6A1 1 0 0 0 3 8v12a3 3 0 0 0 3 3h1a1 1 0 0 0 0-2H6a1 1 0 0 1-1-1V9h5a1 1 0 0 0 1-1V3h7a1 1 0 0 1 1 1v5a1 1 0 0 0 2 0V4a3 3 0 0 0-3-
|
|
855
|
+
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M10 1a1 1 0 0 0-.707.293l-6 6A1 1 0 0 0 3 8v12a3 3 0 0 0 3 3h1a1 1 0 0 0 0-2H6a1 1 0 0 1-1-1V9h5a1 1 0 0 0 1-1V3h7a1 1 0 0 1 1 1v5a1 1 0 0 0 2 0V4a3 3 0 0 0-3-3zM9 7H6.414L9 4.414zm2 5a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-8a1 1 0 0 0-1-1zm1 4v-2h2v2zm4 0v-2h4v2zm0 4v-2h4v2zm-2-2v2h-2v-2z\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
856
856
|
}
|
|
857
857
|
}, ["24"], "document-sheet"))
|
|
858
858
|
|
|
@@ -861,10 +861,10 @@ export const IconDocumentStar: React.FC<
|
|
|
861
861
|
Omit<iconsRegistry.IconDocumentStarProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
862
862
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
863
863
|
"16": {
|
|
864
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M3 15a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v12a1 1 0 0 1-1
|
|
864
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M3 15a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m8 5.75.001 2.248m0 0 2.139-.693M8 7.998 9.323 9.82M8 7.998 6.677 9.82m1.324-1.822-2.14-.693M13 1H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1\" class=\"icon-dark\"/>"
|
|
865
865
|
},
|
|
866
866
|
"24": {
|
|
867
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243V20a2 2 0 0 1-2
|
|
867
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243V20a2 2 0 0 1-2 2z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 8.844v3.16m0 0 3.002-.98m-3.002.98 1.855 2.55M12 12.003l-1.855 2.55M12 12.003l-3.002-.98M20 9.244V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243\" class=\"icon-dark\"/>"
|
|
868
868
|
}
|
|
869
869
|
}, ["16","24"], "document-star"))
|
|
870
870
|
|
|
@@ -873,7 +873,7 @@ export const IconDocumentText: React.FC<
|
|
|
873
873
|
Omit<iconsRegistry.IconDocumentTextProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
874
874
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
875
875
|
"16": {
|
|
876
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M2 14V2a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3a1 1 0 0 1-1-
|
|
876
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M2 14V2a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M5 8h3M5 5h6m-6 6h5m3-10H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1\" class=\"icon-dark\"/>"
|
|
877
877
|
}
|
|
878
878
|
}, ["16"], "document-text"))
|
|
879
879
|
|
|
@@ -900,7 +900,7 @@ export const IconFileChangesAdded: React.FC<
|
|
|
900
900
|
Omit<iconsRegistry.IconFileChangesAddedProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
901
901
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
902
902
|
"24": {
|
|
903
|
-
"body": "<path fill=\"#C2F1DE\" d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0
|
|
903
|
+
"body": "<path fill=\"#C2F1DE\" d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12\"/><path stroke=\"#00814D\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M15.999 9 11 15l-2.999-3\"/>"
|
|
904
904
|
}
|
|
905
905
|
}, ["24"], "file-changes-added"))
|
|
906
906
|
|
|
@@ -909,7 +909,7 @@ export const IconFileChangesError: React.FC<
|
|
|
909
909
|
Omit<iconsRegistry.IconFileChangesErrorProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
910
910
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
911
911
|
"24": {
|
|
912
|
-
"body": "<path fill=\"#FAD9DF\" d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0
|
|
912
|
+
"body": "<path fill=\"#FAD9DF\" d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12\"/><path stroke=\"#C62B49\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m15 9-3 3M9 9l3 3m0 0-3 3m3-3 3 3\"/>"
|
|
913
913
|
}
|
|
914
914
|
}, ["24"], "file-changes-error"))
|
|
915
915
|
|
|
@@ -918,7 +918,7 @@ export const IconFileChangesSkipped: React.FC<
|
|
|
918
918
|
Omit<iconsRegistry.IconFileChangesSkippedProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
919
919
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
920
920
|
"24": {
|
|
921
|
-
"body": "<path fill=\"#E1E3ED\" d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0
|
|
921
|
+
"body": "<path fill=\"#E1E3ED\" d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12\"/><path stroke=\"#9095AD\" stroke-width=\"2\" d=\"M8.464 15.536a5 5 0 1 0 7.072-7.072m-7.072 7.072a5 5 0 1 1 7.072-7.072m-7.072 7.072 7.072-7.072\"/>"
|
|
922
922
|
}
|
|
923
923
|
}, ["24"], "file-changes-skipped"))
|
|
924
924
|
|
|
@@ -927,7 +927,7 @@ export const IconFileChangesWarning: React.FC<
|
|
|
927
927
|
Omit<iconsRegistry.IconFileChangesWarningProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
928
928
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
929
929
|
"24": {
|
|
930
|
-
"body": "<path fill=\"#F3ECB3\" d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0
|
|
930
|
+
"body": "<path fill=\"#F3ECB3\" d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12\"/><path stroke=\"#BD5800\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 7v7m0 2.99V17\"/>"
|
|
931
931
|
}
|
|
932
932
|
}, ["24"], "file-changes-warning"))
|
|
933
933
|
|
|
@@ -946,15 +946,18 @@ export const IconGeneralChatBubble: React.FC<
|
|
|
946
946
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
947
947
|
"16": {
|
|
948
948
|
"body": "<path fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M13 3H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2v3l5-3h3a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1Z\" class=\"icon-dark-stroke icon-light-fill\"/>"
|
|
949
|
+
},
|
|
950
|
+
"24": {
|
|
951
|
+
"body": "<path fill=\"#F3F4FA\" d=\"M19 18a3 3 0 0 0 3-3v-4a3 3 0 0 0-3-3h-6a3 3 0 0 0-3 3v4a3 3 0 0 0 3 3h1l3.915 1.957a.75.75 0 0 0 1.085-.67z\" class=\"icon-light-secondary\"/><path stroke=\"#1B1E2E\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M20 18a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2h-8a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2l5 2.5V18z\" class=\"icon-dark\"/><path fill=\"#BFC2D4\" d=\"M17 7a3 3 0 0 0-3-3H5a3 3 0 0 0-3 3v4a3 3 0 0 0 3 3v1.287a.75.75 0 0 0 1.085.67L10 14h4a3 3 0 0 0 3-3z\" class=\"icon-light\"/><path stroke=\"#1B1E2E\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M17 6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h1v2.5l5-2.5h5a2 2 0 0 0 2-2z\" class=\"icon-dark\"/><path fill=\"#1B1E2E\" d=\"M7 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0M10.5 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0M14 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" class=\"icon-dark\"/>"
|
|
949
952
|
}
|
|
950
|
-
}, ["16"], "general-chat-bubble"))
|
|
953
|
+
}, ["16","24"], "general-chat-bubble"))
|
|
951
954
|
|
|
952
955
|
|
|
953
956
|
export const IconGeneralClipboard: React.FC<
|
|
954
957
|
Omit<iconsRegistry.IconGeneralClipboardProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
955
958
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
956
959
|
"16": {
|
|
957
|
-
"body": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M3.5 2.585A1.5 1.5 0 0 0 2.5 4v9.5A1.5 1.5 0 0 0 4 15h8a1.5 1.5 0 0 0 1.5-1.5V4a1.5 1.5 0 0 0-1-1.415M7 4h2a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v1a1 1 0 0 0 1
|
|
960
|
+
"body": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M3.5 2.585A1.5 1.5 0 0 0 2.5 4v9.5A1.5 1.5 0 0 0 4 15h8a1.5 1.5 0 0 0 1.5-1.5V4a1.5 1.5 0 0 0-1-1.415M7 4h2a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1\" class=\"icon-dark\"/>"
|
|
958
961
|
}
|
|
959
962
|
}, ["16"], "general-clipboard"))
|
|
960
963
|
|
|
@@ -963,7 +966,7 @@ export const IconGeneralCommandKey: React.FC<
|
|
|
963
966
|
Omit<iconsRegistry.IconGeneralCommandKeyProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
964
967
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
965
968
|
"16": {
|
|
966
|
-
"body": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M5 5v6m0-6h6M5 5V3a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v0a2 2 0 0 0 2
|
|
969
|
+
"body": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M5 5v6m0-6h6M5 5V3a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v0a2 2 0 0 0 2 2zm0 6h6m-6 0v2a2 2 0 0 1-2 2v0a2 2 0 0 1-2-2v0a2 2 0 0 1 2-2zm6 0V5m0 6h2a2 2 0 0 1 2 2v0a2 2 0 0 1-2 2v0a2 2 0 0 1-2-2zm0-6V3a2 2 0 0 1 2-2v0a2 2 0 0 1 2 2v0a2 2 0 0 1-2 2z\" class=\"icon-dark\"/>"
|
|
967
970
|
}
|
|
968
971
|
}, ["16"], "general-command-key"))
|
|
969
972
|
|
|
@@ -972,7 +975,7 @@ export const IconGeneralCrosshairs: React.FC<
|
|
|
972
975
|
Omit<iconsRegistry.IconGeneralCrosshairsProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
973
976
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
974
977
|
"16": {
|
|
975
|
-
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M8 0a1 1 0 0 1 1 1v.07A7
|
|
978
|
+
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M8 0a1 1 0 0 1 1 1v.07A7 7 0 0 1 14.93 7H15a1 1 0 1 1 0 2h-.07A7 7 0 0 1 9 14.93V15a1 1 0 1 1-2 0v-.07A7 7 0 0 1 1.07 9H1a1 1 0 0 1 0-2h.07A7.005 7.005 0 0 1 7 1.07V1a1 1 0 0 1 1-1M7 3.1A5.01 5.01 0 0 0 3.1 7H4a1 1 0 0 1 0 2h-.9A5.01 5.01 0 0 0 7 12.9V12a1 1 0 1 1 2 0v.9A5.01 5.01 0 0 0 12.9 9H12a1 1 0 1 1 0-2h.9A5.01 5.01 0 0 0 9 3.1V4a1 1 0 0 1-2 0z\" class=\"icon-dark\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" d=\"M9 8a1 1 0 1 0-2 0 1 1 0 0 0 2 0\" class=\"icon-dark\"/>"
|
|
976
979
|
}
|
|
977
980
|
}, ["16"], "general-crosshairs"))
|
|
978
981
|
|
|
@@ -981,7 +984,7 @@ export const IconGeneralEarth: React.FC<
|
|
|
981
984
|
Omit<iconsRegistry.IconGeneralEarthProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
982
985
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
983
986
|
"16": {
|
|
984
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M6.825 6.844c.384.53-.018.801-.527 1.144-.464.312-1.018.685-1.145 1.371-.145.785.128 1.563 1.175 2.079.238.117.181 1.293.13 2.358-.018.372-.035.73-.039 1.025l.186.04c2.044-.856 3.464-2.082 4.192-3.72.422-1.157-.406-2.5-1.313-2.
|
|
987
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M6.825 6.844c.384.53-.018.801-.527 1.144-.464.312-1.018.685-1.145 1.371-.145.785.128 1.563 1.175 2.079.238.117.181 1.293.13 2.358-.018.372-.035.73-.039 1.025l.186.04c2.044-.856 3.464-2.082 4.192-3.72.422-1.157-.406-2.5-1.313-2.953-.453-1.938 1.625-1.485 2.188-1.344.167 0 .122-.193.054-.488-.11-.477-.28-1.222.29-1.84.424-.461.998-.993 1.204-1.18A6.98 6.98 0 0 0 8 1c-.816 0-1.6.14-2.327.396-1.27 3.39-.613 3.948.902 5.235z\" class=\"icon-light\"/><path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"m6.605 14.861-.186-.04c.004-.295.021-.653.04-1.025.05-1.065.107-2.241-.13-2.358-1.048-.516-1.32-1.294-1.176-2.079.127-.686.68-1.059 1.145-1.371.51-.343.91-.613.527-1.144l-.25-.213C5.06 5.344 4.402 4.786 5.673 1.396A7 7 0 0 1 8 1c2.074 0 3.938.902 5.22 2.336-.206.188-.78.719-1.204 1.18-.57.618-.4 1.363-.29 1.84.068.295.113.488-.054.488-.563-.14-2.64-.594-2.188 1.343.907.454 1.735 1.797 1.313 2.954-.728 1.638-2.148 2.864-4.192 3.72\" class=\"icon-light\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M5.673 1.396a7.003 7.003 0 0 0 .746 13.425M5.673 1.396A7 7 0 0 1 8 1c2.074 0 3.938.902 5.22 2.336m-7.547-1.94c-1.27 3.39-.613 3.948.902 5.235l.25.213c.384.53-.018.801-.527 1.144-.464.312-1.018.685-1.145 1.371-.145.785.128 1.563 1.175 2.079.238.117.181 1.293.13 2.358-.018.372-.035.73-.039 1.025m6.8-11.485c-.205.188-.779.719-1.203 1.18-.57.618-.4 1.363-.29 1.84.068.295.113.488-.054.488-.563-.14-2.64-.594-2.188 1.343.907.454 1.735 1.797 1.313 2.954-.728 1.638-2.148 2.864-4.192 3.72M13.22 3.336A7 7 0 0 1 6.606 14.86m0 0-.187-.04\" class=\"icon-dark\"/>"
|
|
985
988
|
}
|
|
986
989
|
}, ["16"], "general-earth"))
|
|
987
990
|
|
|
@@ -990,7 +993,7 @@ export const IconGeneralEyeClosed: React.FC<
|
|
|
990
993
|
Omit<iconsRegistry.IconGeneralEyeClosedProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
991
994
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
992
995
|
"16": {
|
|
993
|
-
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M10.704 2.468A7.
|
|
996
|
+
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M10.704 2.468A7.8 7.8 0 0 0 8 2C5.128 2 3.128 3.447 1.882 4.831a10.9 10.9 0 0 0-1.69 2.528 7 7 0 0 0-.11.242l-.006.018-.003.006v.002H.071a1 1 0 0 0 0 .744v.002l.001.002.003.006.007.018a4 4 0 0 0 .108.242 10.869 10.869 0 0 0 1.748 2.591l1.416-1.416A9 9 0 0 1 2.105 8q.065-.128.156-.288c.239-.423.605-.985 1.107-1.543C4.372 5.053 5.872 4 8 4q.568.001 1.077.094zM8.166 5.005a3 3 0 0 0-3.162 3.162zm-.334 5.99 3.162-3.162Q11 7.916 11 8a3 3 0 0 1-3.167 2.995m-.91.91Q7.433 12 8 12c2.128 0 3.628-1.053 4.632-2.169A8.9 8.9 0 0 0 13.895 8a8.872 8.872 0 0 0-1.25-1.816l1.416-1.416q.03.03.057.063a10.9 10.9 0 0 1 1.69 2.528 7 7 0 0 1 .11.242l.006.018.003.006.001.003L15 8l.928.372-.001.003-.003.006-.007.018a4 4 0 0 1-.108.242 10.87 10.87 0 0 1-1.69 2.528C12.871 12.554 10.871 14 8 14a7.8 7.8 0 0 1-2.703-.468zm9.005-3.533L15 8l.928-.372c.095.238.095.506 0 .744m-15.857 0L1 8zM1 8l-.928-.372z\" class=\"icon-dark\" clip-rule=\"evenodd\"/><path stroke=\"currentcolor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m2.5 13.5 11-11\"/>"
|
|
994
997
|
}
|
|
995
998
|
}, ["16"], "general-eye-closed"))
|
|
996
999
|
|
|
@@ -999,7 +1002,7 @@ export const IconGeneralEyeOpen: React.FC<
|
|
|
999
1002
|
Omit<iconsRegistry.IconGeneralEyeOpenProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1000
1003
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1001
1004
|
"16": {
|
|
1002
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M10 8a2 2 0 1 1-4 0 2 2 0 0 1 4
|
|
1005
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0\" class=\"icon-light\"/><path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0\" class=\"icon-light\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" d=\"m1 8-.928-.371a1 1 0 0 0 0 .742zm14 0 .928.371a1 1 0 0 0 0-.742zM1 8l.928.372v.002l.013-.033.06-.13a8.868 8.868 0 0 1 1.368-2.043C4.371 5.054 5.871 4.001 8 4.001V2C5.128 2 3.128 3.447 1.882 4.831a10.9 10.9 0 0 0-1.69 2.528 7 7 0 0 0-.119.266v.002H.071c0 .001 0 .002.928.373m7-4c2.128 0 3.628 1.053 4.632 2.169A8.9 8.9 0 0 1 14 8.212l.059.13.012.028.002.004v-.001h-.001c0-.001 0-.002.928-.373l.928-.372v-.001l-.001-.002-.002-.006-.031-.073-.085-.187a10.868 10.868 0 0 0-1.69-2.528C12.871 3.447 10.871 2 8 2zm7 4-.928-.372v-.002l-.001.004-.012.029-.06.13a8.871 8.871 0 0 1-1.368 2.043c-1.003 1.114-2.503 2.168-4.631 2.168v2c2.872 0 4.872-1.447 6.118-2.831a10.9 10.9 0 0 0 1.69-2.528 7 7 0 0 0 .117-.26l.002-.006v-.002h.001c0-.001 0-.002-.928-.373m-7 4c-2.128 0-3.628-1.053-4.632-2.169A8.9 8.9 0 0 1 2 7.788l-.073-.162v.001h.001c0 .001 0 .002-.928.373l-.928.372v.001l.001.002.033.079q.03.07.085.187a10.868 10.868 0 0 0 1.69 2.528C3.129 12.554 5.129 14 8 14zm1-4a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3zM8 9a1 1 0 0 1-1-1H5a3 3 0 0 0 3 3zM7 8a1 1 0 0 1 1-1V5a3 3 0 0 0-3 3zm1-1a1 1 0 0 1 1 1h2a3 3 0 0 0-3-3z\" class=\"icon-dark\"/>"
|
|
1003
1006
|
}
|
|
1004
1007
|
}, ["16"], "general-eye-open"))
|
|
1005
1008
|
|
|
@@ -1008,10 +1011,10 @@ export const IconGeneralGlobe: React.FC<
|
|
|
1008
1011
|
Omit<iconsRegistry.IconGeneralGlobeProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1009
1012
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1010
1013
|
"16": {
|
|
1011
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M10.5 8c0-1.833-.252-3.502-.664-4.75C9.38 1.866 8.726 1 8 1s-1.38.866-1.836 2.25C5.752 4.498 5.5 6.167 5.5
|
|
1014
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M10.5 8c0-1.833-.252-3.502-.664-4.75C9.38 1.866 8.726 1 8 1s-1.38.866-1.836 2.25C5.752 4.498 5.5 6.167 5.5 8q0 .45.02.885C6.317 8.96 7.147 9 8 9s1.683-.04 2.48-.115q.02-.435.02-.885\" class=\"icon-light\"/><path fill=\"#D0D2E0\" d=\"M8 1a6.98 6.98 0 0 0-5.142 2.25A6.98 6.98 0 0 0 1 7.971c1.292.437 2.832.755 4.52.914Q5.5 8.45 5.5 8c0-1.833.252-3.502.664-4.75C6.62 1.866 7.274 1 8 1\" class=\"icon-light\"/><path fill=\"#D0D2E0\" d=\"M1 8c0 1.833.705 3.502 1.858 4.75A6.98 6.98 0 0 0 8 15c-.726 0-1.38-.866-1.836-2.25-.345-1.044-.577-2.382-.644-3.865-1.688-.16-3.228-.477-4.52-.914z\" class=\"icon-light\"/><path fill=\"#D0D2E0\" d=\"M6.164 12.75C6.62 14.134 7.274 15 8 15s1.38-.866 1.836-2.25c.345-1.044.577-2.382.644-3.865C9.683 8.96 8.853 9 8 9s-1.683-.04-2.48-.115c.067 1.483.3 2.821.644 3.865\" class=\"icon-light\"/><path fill=\"#D0D2E0\" d=\"M8 15a6.98 6.98 0 0 0 5.142-2.25A6.98 6.98 0 0 0 15 8v-.029c-1.292.437-2.832.755-4.52.914-.067 1.483-.3 2.821-.644 3.865C9.38 14.134 8.726 15 8 15\" class=\"icon-light\"/><path fill=\"#D0D2E0\" d=\"M13.142 3.25A6.98 6.98 0 0 0 8 1c.726 0 1.38.866 1.836 2.25.412 1.248.664 2.917.664 4.75q0 .45-.02.885c1.688-.159 3.228-.477 4.52-.914a6.97 6.97 0 0 0-1.858-4.721\" class=\"icon-light\"/><path fill=\"currentColor\" d=\"m13.142 3.25-.735.679zm-10.284 0 .735.679zm0 9.5.735-.679zm10.284 0-.735-.679zm-3.306-9.5-.95.313zm-3.672 0 .95.313zm0 9.5-.95.313zm3.672 0 .95.313zM15 7.971l1-.004zm-14 0-1-.004zM8 2c1.742 0 3.31.741 4.407 1.929l1.47-1.358A7.98 7.98 0 0 0 8 0zM3.593 3.929A5.98 5.98 0 0 1 8 2V0a7.98 7.98 0 0 0-5.876 2.571zM0 8c0 2.095.806 4.003 2.124 5.429l1.469-1.358A5.98 5.98 0 0 1 2 8zm8 6a5.98 5.98 0 0 1-4.407-1.929l-1.47 1.358A7.98 7.98 0 0 0 8 16zm0 2a7.98 7.98 0 0 0 5.876-2.571l-1.469-1.358A5.98 5.98 0 0 1 8 14zm6-8c0 1.572-.603 3-1.593 4.071l1.47 1.358A7.98 7.98 0 0 0 16 8zm-2.5 0c0-1.915-.262-3.693-.714-5.063l-1.9.626C9.259 4.69 9.5 6.248 9.5 8zM8 2c-.067 0 .02-.041.238.23.21.263.44.704.649 1.333l1.899-.626c-.249-.754-.573-1.439-.986-1.955C9.395.475 8.793 0 8 0zm-2.786.937C4.762 4.307 4.5 6.085 4.5 8h2c0-1.752.242-3.311.613-4.437zm1.9.626c.207-.63.438-1.07.648-1.333C7.98 1.96 8.067 2 8 2V0c-.793 0-1.395.475-1.8.982-.413.516-.737 1.2-.986 1.955zM8 14c.067 0-.02.041-.238-.23-.21-.263-.44-.704-.649-1.333l-1.899.626c.249.754.573 1.439.986 1.955.405.507 1.007.982 1.8.982zm0 2c.793 0 1.395-.475 1.8-.982.413-.516.737-1.2.986-1.955l-1.9-.626c-.207.63-.438 1.07-.648 1.333-.217.271-.305.23-.238.23zm8-8v-.033l-2 .008V8zm0-.033a7.98 7.98 0 0 0-2.124-5.396L12.407 3.93A5.98 5.98 0 0 1 14 7.975zM2.124 2.571A7.98 7.98 0 0 0 0 7.967l2 .008A5.98 5.98 0 0 1 3.593 3.93zM0 7.967V8h2v-.025zM4.5 8q0 .472.02.93l1.999-.09A19 19 0 0 1 6.5 8zm.926 1.88C6.255 9.96 7.116 10 8 10V8q-1.235-.001-2.386-.11zM8 10c.884 0 1.745-.041 2.574-.12l-.188-1.99C9.621 7.962 8.822 8 8 8zm3.48-1.07q.02-.457.02-.93h-2q0 .428-.019.84zm-.906.95c1.752-.165 3.37-.496 4.746-.961l-.64-1.895c-1.207.408-2.67.712-4.294.866zM9.481 8.84c-.063 1.413-.284 2.658-.594 3.597l1.899.626c.38-1.149.623-2.58.693-4.133zm-3.867-.95c-1.625-.154-3.087-.458-4.294-.866L.68 8.919c1.377.465 2.994.797 4.746.962zM4.52 8.93c.07 1.553.314 2.985.693 4.133l1.9-.626c-.31-.94-.532-2.184-.595-3.597zM0 7.97 0 7.997l2 .004v-.029zM16 7.997v-.029l-2 .004v.029z\" class=\"icon-dark\"/>"
|
|
1012
1015
|
},
|
|
1013
1016
|
"48": {
|
|
1014
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M31 24h12c0-4.976-1.913-9.506-5.044-12.893-2.187 1.12-4.967 1.978-8.105 2.458C30.577 16.56 31 20.146 31
|
|
1017
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M31 24h12c0-4.976-1.913-9.506-5.044-12.893-2.187 1.12-4.967 1.978-8.105 2.458C30.577 16.56 31 20.146 31 24\" class=\"icon-light\"/><path fill=\"#D0D2E0\" d=\"M29.85 13.565c3.139-.48 5.92-1.337 8.106-2.458A18.95 18.95 0 0 0 24 5c2.446 0 4.6 3.406 5.85 8.565\" class=\"icon-light\"/><path fill=\"#D0D2E0\" d=\"M24 5c-2.446 0-4.6 3.406-5.85 8.565 1.842.283 3.809.435 5.85.435s4.008-.152 5.85-.435C28.6 8.405 26.447 5 24 5\" class=\"icon-light\"/><path fill=\"#D0D2E0\" d=\"M17 24h14c0-3.854-.423-7.44-1.15-10.435-1.842.283-3.809.435-5.85.435s-4.008-.152-5.85-.435C17.422 16.56 17 20.146 17 24\" class=\"icon-light\"/><path fill=\"#D0D2E0\" d=\"M5 24h12c0-3.854.423-7.44 1.15-10.435-3.139-.48-5.92-1.337-8.106-2.458A18.93 18.93 0 0 0 5 24\" class=\"icon-light\"/><path fill=\"#D0D2E0\" d=\"M18.15 13.565C19.4 8.405 21.553 5 24 5a18.95 18.95 0 0 0-13.956 6.107c2.186 1.12 4.967 1.978 8.105 2.458M18.15 34.435c-3.139.48-5.92 1.337-8.106 2.458A18.95 18.95 0 0 0 24 43c-2.446 0-4.6-3.406-5.85-8.565\" class=\"icon-light\"/><path fill=\"#D0D2E0\" d=\"M17 24H5c0 4.976 1.913 9.506 5.044 12.893 2.186-1.12 4.967-1.978 8.105-2.458C17.423 31.44 17 27.854 17 24\" class=\"icon-light\"/><path fill=\"#D0D2E0\" d=\"M31 24H17c0 3.854.423 7.44 1.15 10.435A39 39 0 0 1 24 34c2.041 0 4.008.153 5.85.435C30.578 31.44 31 27.854 31 24\" class=\"icon-light\"/><path fill=\"#D0D2E0\" d=\"M18.15 34.435C19.4 39.595 21.553 43 24 43s4.6-3.406 5.85-8.565A39 39 0 0 0 24 34c-2.041 0-4.008.153-5.85.435\" class=\"icon-light\"/><path fill=\"#D0D2E0\" d=\"M24 43a18.95 18.95 0 0 0 13.956-6.107c-2.187-1.12-4.967-1.978-8.105-2.458C28.599 39.595 26.446 43 24 43\" class=\"icon-light\"/><path fill=\"#D0D2E0\" d=\"M43 24H31c0 3.854-.423 7.44-1.15 10.435 3.139.48 5.92 1.337 8.106 2.458A18.93 18.93 0 0 0 43 24\" class=\"icon-light\"/><path fill=\"currentColor\" d=\"M24 14v1zm0 20v-1zm19-11H5v2h38zm-12 2h12v-2H31zm13-1a19.93 19.93 0 0 0-5.31-13.572l-1.468 1.358A17.93 17.93 0 0 1 42 24zm-6.5-13.783c-2.071 1.062-4.745 1.892-7.8 2.36l.302 1.977c3.22-.494 6.108-1.377 8.41-2.557zm-8.621 3.584C29.584 16.709 30 20.215 30 24h2c0-3.923-.43-7.59-1.177-10.67zM24 6c.723 0 1.61.51 2.542 1.904.912 1.363 1.727 3.381 2.337 5.897l1.944-.472c-.642-2.643-1.529-4.908-2.618-6.537C27.135 5.192 25.723 4 24 4zm5.7 6.577A38 38 0 0 1 24 13v2c2.09 0 4.108-.156 6.002-.446zM24 6a17.95 17.95 0 0 1 13.222 5.786l1.469-1.358A19.95 19.95 0 0 0 24 4zm0-2c-1.723 0-3.136 1.193-4.205 2.792-1.089 1.63-1.976 3.894-2.618 6.538l1.944.47c.61-2.515 1.425-4.533 2.337-5.896C22.39 6.51 23.278 6 24 6zm-6.002 10.554c1.894.29 3.911.446 6.002.446v-2c-1.992 0-3.908-.149-5.7-.423zM18 24c0-3.785.416-7.29 1.121-10.2l-1.944-.47C16.43 16.41 16 20.077 16 24zm-1 1h14v-2H17zM5 25h12v-2H5zm13.3-12.423c-3.055-.468-5.729-1.298-7.8-2.36l-.912 1.78c2.302 1.18 5.19 2.063 8.41 2.557zm-8.99-2.149A19.93 19.93 0 0 0 4 24h2c0-4.715 1.811-9.004 4.778-12.214zm1.468 1.358A17.95 17.95 0 0 1 24 6V4a19.95 19.95 0 0 0-14.69 6.428zM4 24a19.93 19.93 0 0 0 5.31 13.572l1.468-1.358A17.93 17.93 0 0 1 6 24zm6.5 13.783c2.071-1.062 4.745-1.892 7.8-2.36l-.302-1.977c-3.22.494-6.108 1.377-8.41 2.557zm8.621-3.584C18.416 31.291 18 27.785 18 24h-2c0 3.923.43 7.59 1.177 10.67zM24 42c-.723 0-1.61-.51-2.542-1.904-.912-1.363-1.727-3.381-2.337-5.897l-1.944.471c.642 2.644 1.529 4.909 2.618 6.538C20.865 42.808 22.277 44 24 44zm-5.7-6.577A38 38 0 0 1 24 35v-2c-2.09 0-4.108.156-6.002.446zM24 42a17.95 17.95 0 0 1-13.222-5.786L9.31 37.572A19.95 19.95 0 0 0 24 44zm0-7c1.992 0 3.908.149 5.7.423l.302-1.977A40 40 0 0 0 24 33zm6.823-.33C31.57 31.59 32 27.923 32 24h-2c0 3.785-.416 7.29-1.121 10.2zm-1.944-.47c-.61 2.515-1.425 4.533-2.337 5.896C25.61 41.49 24.722 42 24 42v2c1.723 0 3.136-1.193 4.205-2.792 1.089-1.63 1.976-3.894 2.618-6.538zM24 44a19.95 19.95 0 0 0 14.69-6.428l-1.468-1.358A17.95 17.95 0 0 1 24 42zm14.412-7.997c-2.302-1.18-5.19-2.063-8.41-2.557l-.303 1.977c3.056.468 5.73 1.298 7.801 2.36zM42 24c0 4.715-1.811 9.004-4.778 12.214l1.469 1.358A19.93 19.93 0 0 0 44 24z\" class=\"icon-dark\"/>"
|
|
1015
1018
|
}
|
|
1016
1019
|
}, ["16","48"], "general-globe"))
|
|
1017
1020
|
|
|
@@ -1020,7 +1023,7 @@ export const IconGeneralGrid2X2Medium: React.FC<
|
|
|
1020
1023
|
Omit<iconsRegistry.IconGeneralGrid2X2MediumProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1021
1024
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1022
1025
|
"16": {
|
|
1023
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M3
|
|
1026
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M3 3h3v3H3zM3 10h3v3H3zM10 3h3v3h-3zM10 10h3v3h-3z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M3 3h3v3H3zM3 10h3v3H3zM10 3h3v3h-3zM10 10h3v3h-3z\" class=\"icon-dark\"/>"
|
|
1024
1027
|
}
|
|
1025
1028
|
}, ["16"], "general-grid-2x2-medium"))
|
|
1026
1029
|
|
|
@@ -1029,7 +1032,7 @@ export const IconGeneralGrid2X2Small: React.FC<
|
|
|
1029
1032
|
Omit<iconsRegistry.IconGeneralGrid2X2SmallProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1030
1033
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1031
1034
|
"16": {
|
|
1032
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M3.5 3.5h3v3h-
|
|
1035
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M3.5 3.5h3v3h-3zM3.5 9.5h3v3h-3zM9.5 3.5h3v3h-3zM9.5 9.5h3v3h-3z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M3.5 3.5h3v3h-3zM3.5 9.5h3v3h-3zM9.5 3.5h3v3h-3zM9.5 9.5h3v3h-3z\" class=\"icon-dark\"/>"
|
|
1033
1036
|
}
|
|
1034
1037
|
}, ["16"], "general-grid-2x2-small"))
|
|
1035
1038
|
|
|
@@ -1038,10 +1041,10 @@ export const IconGeneralGrid2X2: React.FC<
|
|
|
1038
1041
|
Omit<iconsRegistry.IconGeneralGrid2X2Props, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1039
1042
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1040
1043
|
"16": {
|
|
1041
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M2
|
|
1044
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M2 2h4v4H2zM2 10h4v4H2zM10 2h4v4h-4zM10 10h4v4h-4z\" class=\"icon-light\" style=\"opacity:.35\"/><path stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M2 2h4v4H2zM2 10h4v4H2zM10 2h4v4h-4zM10 10h4v4h-4z\" class=\"icon-dark\"/>"
|
|
1042
1045
|
},
|
|
1043
1046
|
"24": {
|
|
1044
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M3
|
|
1047
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M3 3h7v7H3zM3 14h7v7H3zM14 3h7v7h-7zM14 14h7v7h-7z\" class=\"icon-light\" style=\"opacity:.35\"/><path stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M3 3h7v7H3zM3 14h7v7H3zM14 3h7v7h-7zM14 14h7v7h-7z\" class=\"icon-dark\"/>"
|
|
1045
1048
|
}
|
|
1046
1049
|
}, ["16","24"], "general-grid-2x2"))
|
|
1047
1050
|
|
|
@@ -1050,7 +1053,7 @@ export const IconGeneralHandleVertical: React.FC<
|
|
|
1050
1053
|
Omit<iconsRegistry.IconGeneralHandleVerticalProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1051
1054
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1052
1055
|
"16": {
|
|
1053
|
-
"body": "<path fill=\"currentColor\" d=\"M7 6a1 1 0 1 1-2 0 1 1 0 0 1 2
|
|
1056
|
+
"body": "<path fill=\"currentColor\" d=\"M7 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0M7 2a1 1 0 1 1-2 0 1 1 0 0 1 2 0M11 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0M11 2a1 1 0 1 1-2 0 1 1 0 0 1 2 0M11 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0M7 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0M7 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0M11 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" class=\"icon-dark\"/>"
|
|
1054
1057
|
}
|
|
1055
1058
|
}, ["16"], "general-handle-vertical"))
|
|
1056
1059
|
|
|
@@ -1059,7 +1062,7 @@ export const IconGeneralLifeRing: React.FC<
|
|
|
1059
1062
|
Omit<iconsRegistry.IconGeneralLifeRingProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1060
1063
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1061
1064
|
"16": {
|
|
1062
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M8 1a7 7 0 0 1 7 7h-4a3 3 0 0 0-3-
|
|
1065
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M8 1a7 7 0 0 1 7 7h-4a3 3 0 0 0-3-3zM5 8H1a7 7 0 0 0 7 7v-4a3 3 0 0 1-3-3\" class=\"icon-light\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M15 8a7 7 0 0 1-7 7m7-7a7 7 0 0 0-7-7m7 7h-4m-3 7a7 7 0 0 1-7-7m7 7v-4M1 8a7 7 0 0 1 7-7M1 8h4m3-7v4m3 3a3 3 0 0 1-3 3m3-3a3 3 0 0 0-3-3m0 6a3 3 0 0 1-3-3m0 0a3 3 0 0 1 3-3\" class=\"icon-dark\"/>"
|
|
1063
1066
|
}
|
|
1064
1067
|
}, ["16"], "general-life-ring"))
|
|
1065
1068
|
|
|
@@ -1068,7 +1071,7 @@ export const IconGeneralOfficeBuilding: React.FC<
|
|
|
1068
1071
|
Omit<iconsRegistry.IconGeneralOfficeBuildingProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1069
1072
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1070
1073
|
"16": {
|
|
1071
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M10 4v10h4a1 1 0 0 0 1-1V5a1 1 0 0 0-1-
|
|
1074
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M10 4v10h4a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M10 14H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v2m0 10V4m0 10h4a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1h-4\" class=\"icon-dark\"/><path fill=\"currentColor\" d=\"M3 3.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM12 6.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0zM12 9.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0zM3 6.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM3 9.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM6 3.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM6 6.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM6 9.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5z\" class=\"icon-dark\"/>"
|
|
1072
1075
|
}
|
|
1073
1076
|
}, ["16"], "general-office-building"))
|
|
1074
1077
|
|
|
@@ -1077,16 +1080,16 @@ export const IconGeneralPlaceholder: React.FC<
|
|
|
1077
1080
|
Omit<iconsRegistry.IconGeneralPlaceholderProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1078
1081
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1079
1082
|
"12": {
|
|
1080
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M9.55 2.45c1.933 1.934 1.933 5.166 0 7.
|
|
1083
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M9.55 2.45c1.933 1.934 1.933 5.166 0 7.1s-5.166 1.933-7.1 0-1.933-5.166 0-7.1 5.166-1.933 7.1 0\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"m6 6 3.55-3.55M6 6 2.45 2.45M6 6l3.55 3.55M6 6 2.45 9.55m7.1-7.1c1.933 1.934 1.933 5.166 0 7.1m0-7.1C7.616.517 4.384.517 2.45 2.45m0 0c-1.933 1.934-1.933 5.166 0 7.1m7.1 0c-1.934 1.933-5.166 1.933-7.1 0\" class=\"icon-dark\"/>"
|
|
1081
1084
|
},
|
|
1082
1085
|
"16": {
|
|
1083
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M12.97 3.03c2.707 2.708 2.707 7.232 0 9.94-2.708 2.707-7.232 2.707-9.94 0-2.707-2.708-2.707-7.232 0-9.94 2.708-2.707 7.232-2.707 9.94
|
|
1086
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M12.97 3.03c2.707 2.708 2.707 7.232 0 9.94-2.708 2.707-7.232 2.707-9.94 0-2.707-2.708-2.707-7.232 0-9.94 2.708-2.707 7.232-2.707 9.94 0\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"m8 8 4.97-4.97M8 8 3.03 3.03M8 8l4.97 4.97M8 8l-4.97 4.97m9.94-9.94c2.707 2.708 2.707 7.232 0 9.94m0-9.94C10.261.324 5.737.324 3.03 3.03m0 0c-2.707 2.708-2.707 7.232 0 9.94m9.94 0c-2.708 2.707-7.232 2.707-9.94 0\" class=\"icon-dark\"/>"
|
|
1084
1087
|
},
|
|
1085
1088
|
"24": {
|
|
1086
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M19.1 4.9c3.867 3.869 3.867 10.332 0 14.2-3.869 3.867-10.331 3.867-14.2 0-3.867-3.869-3.867-10.331 0-14.2 3.869-3.867 10.332-3.867 14.2
|
|
1089
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M19.1 4.9c3.867 3.869 3.867 10.332 0 14.2-3.869 3.867-10.331 3.867-14.2 0-3.867-3.869-3.867-10.331 0-14.2 3.869-3.867 10.332-3.867 14.2 0\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"m12 12 7.1-7.1M12 12 4.9 4.9M12 12l7.1 7.1M12 12l-7.1 7.1M19.1 4.9c3.867 3.869 3.867 10.332 0 14.2m0-14.2C15.23 1.034 8.768 1.034 4.9 4.9m0 0c-3.867 3.869-3.867 10.332 0 14.2m14.2 0c-3.869 3.867-10.331 3.867-14.2 0\" class=\"icon-dark\"/>"
|
|
1087
1090
|
},
|
|
1088
1091
|
"48": {
|
|
1089
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M38.198 9.802c7.736 7.735 7.736 20.66 0 28.
|
|
1092
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M38.198 9.802c7.736 7.735 7.736 20.66 0 28.396s-20.66 7.736-28.396 0-7.736-20.66 0-28.396 20.66-7.736 28.396 0\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M24 24 38.198 9.802M24 24 9.802 9.802M24 24l14.198 14.198M24 24 9.802 38.198M38.198 9.802c7.736 7.735 7.736 20.66 0 28.396m0-28.396c-7.735-7.736-20.66-7.736-28.396 0m0 0c-7.736 7.735-7.736 20.66 0 28.396m28.396 0c-7.735 7.736-20.66 7.736-28.396 0\" class=\"icon-dark\"/>"
|
|
1090
1093
|
}
|
|
1091
1094
|
}, ["12","16","24","48"], "general-placeholder"))
|
|
1092
1095
|
|
|
@@ -1095,10 +1098,10 @@ export const IconGeneralRocket: React.FC<
|
|
|
1095
1098
|
Omit<iconsRegistry.IconGeneralRocketProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1096
1099
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1097
1100
|
"16": {
|
|
1098
|
-
"body": "<path d=\"M3.5 9.5 1 11l4 4 1.5-2.
|
|
1101
|
+
"body": "<path d=\"M3.5 9.5 1 11l4 4 1.5-2.5z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m7.5 13.5-1-1m1 1 1 1 3-3v-2m-4 4 4-4m-9-1 1 1m-1-1-1-1 3-3h2m-4 4 4-4m-3 5L1 11l4 4 1.5-2.5m-3-3 3 3m5-3 1.621-1.621A3 3 0 0 0 14 5.757V2h-3.757a3 3 0 0 0-2.122.879L6.5 4.5\" class=\"icon-dark\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M9 11.5 4.5 7\" class=\"icon-dark\"/><circle cx=\"10.5\" cy=\"5.5\" r=\"1\" fill=\"currentColor\" class=\"icon-dark\"/>"
|
|
1099
1102
|
},
|
|
1100
1103
|
"24": {
|
|
1101
|
-
"body": "<path d=\"m6 13.5-3 2L8.5 21l2-
|
|
1104
|
+
"body": "<path d=\"m6 13.5-3 2L8.5 21l2-3zM3.635 11.135 5 12.5l5.23-5.23H7.5zM11.5 19l1.365 1.365 3.866-3.865v-2.73z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M16.73 13.77v2.73l-3.865 3.865L11.5 19m5.23-5.23L11.5 19m5.23-5.23 3.098-3.098A4 4 0 0 0 21 7.843V3h-4.843a4 4 0 0 0-2.829 1.172l-3.097 3.097m0 0H7.5l-3.865 3.866L5 12.5m5.23-5.23L5 12.5m0 0 6.5 6.5M6 13.5l-3 2L8.5 21l2-3z\" class=\"icon-dark\"/><path fill=\"#1B1E2E\" d=\"M.146 19.646a.5.5 0 0 0 .708.708zm0 3.5a.5.5 0 0 0 .708.708zm3.5 0a.5.5 0 0 0 .708.708zm-1.5-5.5-2 2 .708.708 2-2zm1.75 1.75-3.75 3.75.708.708 3.75-3.75zm1.75 1.75-2 2 .708.708 2-2z\" opacity=\".4\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"m13.5 16.5-6-6\" class=\"icon-dark\"/><circle cx=\"16.5\" cy=\"7.5\" r=\"1.5\" stroke=\"currentColor\" class=\"icon-dark-stroke icon-light-fill\"/>"
|
|
1102
1105
|
}
|
|
1103
1106
|
}, ["16","24"], "general-rocket"))
|
|
1104
1107
|
|
|
@@ -1116,7 +1119,7 @@ export const IconMenuDotsVertical: React.FC<
|
|
|
1116
1119
|
Omit<iconsRegistry.IconMenuDotsVerticalProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1117
1120
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1118
1121
|
"16": {
|
|
1119
|
-
"body": "<path fill=\"currentColor\" d=\"M10 2a2 2 0 1 1-4 0 2 2 0 0 1 4
|
|
1122
|
+
"body": "<path fill=\"currentColor\" d=\"M10 2a2 2 0 1 1-4 0 2 2 0 0 1 4 0M10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0M10 14a2 2 0 1 1-4 0 2 2 0 0 1 4 0\" class=\"icon-dark\"/>"
|
|
1120
1123
|
}
|
|
1121
1124
|
}, ["16"], "menu-dots-vertical"))
|
|
1122
1125
|
|
|
@@ -1206,7 +1209,7 @@ export const IconObjectBookCode: React.FC<
|
|
|
1206
1209
|
Omit<iconsRegistry.IconObjectBookCodeProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1207
1210
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1208
1211
|
"48": {
|
|
1209
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M40 5H10a2 2 0 0 0-2
|
|
1212
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M40 5H10a2 2 0 0 0-2 2v28h32z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M40 43h-1M8 35v6a2 2 0 0 0 2 2v0m-2-8V7a2 2 0 0 1 2-2v0M8 35h2m0-30h30v30h-1M10 5v30m0 0v8m0-8h29m-29 8h29m0-8s-1 4 0 8M21 17l-3 3 3 3m8-6 3 3-3 3m-5.5 2.5 3-11\" class=\"icon-dark\"/><path fill=\"#69D3A7\" d=\"M14 39h8v8l-4-1.714L14 47z\" class=\"icon-light-secondary\"/><path fill=\"#00814D\" d=\"M14 39v-1h-1v1zm8 0h1v-1h-1zm0 8-.394.92A1 1 0 0 0 23 47zm-8 0h-1a1 1 0 0 0 1.394.92zm4-1.714.394-.92a1 1 0 0 0-.788 0zM14 40h8v-2h-8zm7-1v8h2v-8zm-6 8v-8h-2v8zm7.394-.92-4-1.713-.788 1.838 4 1.714zm-4.788-1.713-4 1.714.788 1.838 4-1.714z\" class=\"icon-dark-secondary\"/>"
|
|
1210
1213
|
}
|
|
1211
1214
|
}, ["48"], "object-book-code"))
|
|
1212
1215
|
|
|
@@ -1215,13 +1218,13 @@ export const IconObjectBook: React.FC<
|
|
|
1215
1218
|
Omit<iconsRegistry.IconObjectBookProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1216
1219
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1217
1220
|
"16": {
|
|
1218
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M13 2H4a1 1 0 0 0-1
|
|
1221
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M13 2H4a1 1 0 0 0-1 1v8h10z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M13 11V2H4m9 9H4m9 0v3H4m-1-3v2a1 1 0 0 0 1 1v0m-1-3V3a1 1 0 0 1 1-1v0m-1 9h1m0-9v9m0 0v3m6-9H7\" class=\"icon-dark\"/>"
|
|
1219
1222
|
},
|
|
1220
1223
|
"24": {
|
|
1221
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M20 3H5a1 1 0 0 0-1
|
|
1224
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M20 3H5a1 1 0 0 0-1 1v13h16z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M20 17V3H5m15 14H5m15 0v4H5m-1-4v3a1 1 0 0 0 1 1v0m-1-4V4a1 1 0 0 1 1-1v0M4 17h1M5 3v14m0 0v4M16 7H9m0 3h6\" class=\"icon-dark\"/>"
|
|
1222
1225
|
},
|
|
1223
1226
|
"48": {
|
|
1224
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M40 5H10a2 2 0 0 0-2
|
|
1227
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M40 5H10a2 2 0 0 0-2 2v28h32z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M40 43h-1M8 35v6a2 2 0 0 0 2 2v0m-2-8V7a2 2 0 0 1 2-2v0M8 35h2m0-30h30v30h-1M10 5v30m0 0v8m0-8h29m-29 8h29M16 17h13m10 18s-1 4 0 8m-5-32H16v2h18z\" class=\"icon-dark\"/><path fill=\"#69D3A7\" d=\"M14 39h8v8l-4-1.714L14 47z\" class=\"icon-light-secondary\"/><path fill=\"#00814D\" d=\"M14 39v-1h-1v1zm8 0h1v-1h-1zm0 8-.394.92A1 1 0 0 0 23 47zm-8 0h-1a1 1 0 0 0 1.394.92zm4-1.714.394-.92a1 1 0 0 0-.788 0zM14 40h8v-2h-8zm7-1v8h2v-8zm-6 8v-8h-2v8zm7.394-.92-4-1.713-.788 1.838 4 1.714zm-4.788-1.713-4 1.714.788 1.838 4-1.714z\" class=\"icon-dark-secondary\"/>"
|
|
1225
1228
|
}
|
|
1226
1229
|
}, ["16","24","48"], "object-book"))
|
|
1227
1230
|
|
|
@@ -1230,10 +1233,10 @@ export const IconObjectBookmark: React.FC<
|
|
|
1230
1233
|
Omit<iconsRegistry.IconObjectBookmarkProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1231
1234
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1232
1235
|
"16": {
|
|
1233
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M11 2a2 2 0 0 1 2 2v10l-5-2-5 2V4a2 2 0 0 1 2-
|
|
1236
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M11 2a2 2 0 0 1 2 2v10l-5-2-5 2V4a2 2 0 0 1 2-2zM8.388 6.515 8 5.049l-.388 1.466-1.514-.084 1.274.822-.548 1.414L8 7.709l1.176.958-.548-1.414 1.274-.822z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" d=\"m13 14-.371.928A1 1 0 0 0 14 14zm-5-2 .371-.928a1 1 0 0 0-.742 0zm-5 2H2a1 1 0 0 0 1.371.928zm5-8.951.967-.256a1 1 0 0 0-1.934 0zm.388 1.466-.967.255a1 1 0 0 0 1.022.743zm1.514-.084.542.84a1 1 0 0 0-.597-1.839zm-1.274.822-.542-.84a1 1 0 0 0-.39 1.2zm.548 1.414-.632.775a1 1 0 0 0 1.564-1.137zM8 7.709l.632-.776a1 1 0 0 0-1.264 0zm-1.176.958-.932-.362a1 1 0 0 0 1.564 1.137zm.548-1.414.933.36a1 1 0 0 0-.39-1.2zM6.098 6.43l.055-.999a1 1 0 0 0-.597 1.839zm1.514.084-.055.998a1 1 0 0 0 1.022-.743zM12 4v10h2V4zm1.371 9.072-5-2-.742 1.857 5 2zm-5.742-2-5 2 .742 1.857 5-2zM5 3h6V1H5zM4 14V4H2v10zm3.033-8.696.388 1.466 1.934-.511-.388-1.466zm1.41 2.21 1.515-.085-.111-1.997-1.515.084zM9.36 5.59l-1.274.822L9.17 8.093l1.274-.822zM7.695 7.614l.548 1.414 1.865-.723-.548-1.414zm2.112.277-1.175-.958-1.264 1.55 1.176.959zm-2.439-.958-1.175.958 1.263 1.55 1.176-.957zm.389 2.095.548-1.414L6.44 6.89l-.548 1.414zm.157-2.616L6.64 5.59 5.556 7.271l1.274.822zM6.042 7.43l1.515.084.11-1.997-1.514-.084zM8.58 6.77l.388-1.466-1.934-.511-.388 1.466zM5 1a3 3 0 0 0-3 3h2a1 1 0 0 1 1-1zm9 3a3 3 0 0 0-3-3v2a1 1 0 0 1 1 1z\" class=\"icon-dark\"/>"
|
|
1234
1237
|
},
|
|
1235
1238
|
"24": {
|
|
1236
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M17 3a3 3 0 0 1 3 3v15l-8-3-8 3V6a3 3 0 0 1 3-
|
|
1239
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M17 3a3 3 0 0 1 3 3v15l-8-3-8 3V6a3 3 0 0 1 3-3zm-4.418 6.772L12 7.572l-.582 2.2-2.271-.126 1.912 1.233L10.237 13 12 11.563 13.763 13l-.822-2.121 1.912-1.233z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" d=\"m20 21-.351.936A1 1 0 0 0 21 21zm-8-3 .351-.936a1 1 0 0 0-.702 0zm-8 3H3a1 1 0 0 0 1.351.936zm8-13.427.967-.256a1 1 0 0 0-1.934 0zm.582 2.199-.967.256a1 1 0 0 0 1.022.742zm2.271-.126.542.84a1 1 0 0 0-.597-1.839zm-1.912 1.233-.542-.84a1 1 0 0 0-.39 1.201zM13.763 13l-.631.775a1 1 0 0 0 1.564-1.136zM12 11.563l.632-.775a1 1 0 0 0-1.264 0zM10.237 13l-.933-.361a1 1 0 0 0 1.564 1.136zm.822-2.121.932.361a1 1 0 0 0-.39-1.201zM9.147 9.646l.055-.999a1 1 0 0 0-.597 1.84zm2.271.126-.055.999a1 1 0 0 0 1.022-.743zM19 6v15h2V6zm1.351 14.064-8-3-.702 1.872 8 3zm-8.702-3-8 3 .702 1.872 8-3zM7 4h10V2H7zM5 21V6H3v15zm6.033-13.171.582 2.199 1.934-.512-.582-2.199zm1.604 2.942 2.272-.127-.111-1.997-2.271.127zm1.674-1.965L12.4 10.039l1.085 1.68 1.911-1.233zM12.01 11.24l.822 2.121 1.865-.722-.822-2.121zm2.386.985-1.763-1.437-1.264 1.55 1.764 1.437zm-3.027-1.437-1.763 1.437 1.263 1.55 1.764-1.437zm-.199 2.573.822-2.12-1.865-.723-.822 2.12zm.431-3.322L9.69 8.806l-1.084 1.68 1.911 1.233zm-2.509.605 2.272.127.11-1.997-2.27-.127zm3.294-.616.582-2.2-1.934-.51-.582 2.198zM7 2a4 4 0 0 0-4 4h2a2 2 0 0 1 2-2zm14 4a4 4 0 0 0-4-4v2a2 2 0 0 1 2 2z\" class=\"icon-dark\"/>"
|
|
1237
1240
|
}
|
|
1238
1241
|
}, ["16","24"], "object-bookmark"))
|
|
1239
1242
|
|
|
@@ -1242,7 +1245,7 @@ export const IconObjectBoxOpen: React.FC<
|
|
|
1242
1245
|
Omit<iconsRegistry.IconObjectBoxOpenProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1243
1246
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1244
1247
|
"48": {
|
|
1245
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M43 25.162 28.5 33 24 28.487V47l19-9.
|
|
1248
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M43 25.162 28.5 33 24 28.487V47l19-9.744z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path fill=\"#D0D2E0\" d=\"M24 9 5 18.744l19 9.743 19-9.743z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M24 47 5 37.256V25.162M24 47l19-9.744V25.162M24 47V28.487M24 9 5 18.744M24 9l19 9.744M24 9l4-4 19 9.5-4 4.244M24 9l-4-4-19 9.5 4 4.244m0 0 19 9.743M5 18.744 1 23l4 2.162m38-6.418-19 9.743m19-9.743L47 23l-4 2.162m-19 3.325L19.5 33 5 25.162m19 3.325L28.5 33 43 25.162\" class=\"icon-dark\"/><path fill=\"#1FA971\" stroke=\"#00814D\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m18 7 1.131 2.869L22 11l-2.869 1.131L18 15l-1.131-2.869L14 11l2.869-1.131zM27 1l.849 2.151L30 4l-2.151.849L27 7l-.849-2.151L24 4l2.151-.849zM28 12l1.414 3.586L33 17l-3.586 1.414L28 22l-1.414-3.586L23 17l3.586-1.414z\" class=\"icon-dark-secondary-stroke icon-light-secondary-fill\"/>"
|
|
1246
1249
|
}
|
|
1247
1250
|
}, ["48"], "object-box-open"))
|
|
1248
1251
|
|
|
@@ -1251,10 +1254,10 @@ export const IconObjectBox: React.FC<
|
|
|
1251
1254
|
Omit<iconsRegistry.IconObjectBoxProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1252
1255
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1253
1256
|
"16": {
|
|
1254
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M14.5 11.133V4.866a.
|
|
1257
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M14.5 11.133V4.866a.7.7 0 0 0-.101-.362L8 8v7c.12 0 .242-.03.35-.09l5.779-3.156a.71.71 0 0 0 .371-.621\" class=\"icon-light\"/><path fill=\"#D0D2E0\" d=\"M1.871 11.754 7.65 14.91c.11.06.23.09.351.09V8L1.601 4.504a.7.7 0 0 0-.101.362v6.267c0 .258.142.495.371.62\" class=\"icon-light\"/><path fill=\"#D0D2E0\" d=\"M7.65 1.089 1.87 4.246a.7.7 0 0 0-.27.258L8 8l6.399-3.496a.7.7 0 0 0-.27-.258L8.35 1.089a.73.73 0 0 0-.702 0\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m8 8 6.399-3.496M8 8v7m0-7L1.601 4.504m12.798 0a.7.7 0 0 1 .101.362v6.267a.71.71 0 0 1-.371.62L8.35 14.91c-.11.06-.23.09-.351.09m6.399-10.496a.7.7 0 0 0-.27-.258L8.35 1.089a.73.73 0 0 0-.702 0L1.871 4.246a.7.7 0 0 0-.27.258M8 15a.73.73 0 0 1-.35-.09L1.87 11.754a.71.71 0 0 1-.371-.621V4.866a.7.7 0 0 1 .101-.362\" class=\"icon-dark\"/>"
|
|
1255
1258
|
},
|
|
1256
1259
|
"24": {
|
|
1257
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M21 16.412V7.588a1 1 0 0 0-.14-.51L12 12v9.856a1 1 0 0 0 .486-.126l8-4.444a1 1 0 0 0 .514-.
|
|
1260
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M21 16.412V7.588a1 1 0 0 0-.14-.51L12 12v9.856a1 1 0 0 0 .486-.126l8-4.444a1 1 0 0 0 .514-.874M3.514 17.286l8 4.444a1 1 0 0 0 .486.126V12L3.14 7.078a1 1 0 0 0-.14.51v8.824a1 1 0 0 0 .514.874\" class=\"icon-light\"/><path fill=\"#D0D2E0\" d=\"m11.514 2.27-8 4.444a1 1 0 0 0-.374.364L12 12l8.86-4.922a1 1 0 0 0-.374-.364l-8-4.444a1 1 0 0 0-.972 0\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m12 12 8.86-4.922M12 12v9.856M12 12 3.14 7.078m17.72 0a1 1 0 0 1 .14.51v8.824a1 1 0 0 1-.514.874l-8 4.444a1 1 0 0 1-.486.126m8.86-14.778a1 1 0 0 0-.374-.364l-8-4.444a1 1 0 0 0-.972 0l-8 4.444a1 1 0 0 0-.374.364M12 21.856a1 1 0 0 1-.486-.126l-8-4.444A1 1 0 0 1 3 16.412V7.588a1 1 0 0 1 .14-.51\" class=\"icon-dark\"/>"
|
|
1258
1261
|
}
|
|
1259
1262
|
}, ["16","24"], "object-box"))
|
|
1260
1263
|
|
|
@@ -1263,7 +1266,7 @@ export const IconObjectBriefcase: React.FC<
|
|
|
1263
1266
|
Omit<iconsRegistry.IconObjectBriefcaseProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1264
1267
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1265
1268
|
"16": {
|
|
1266
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M2.5 14A1.5 1.5 0 0 1 1 12.5V7l7 3 7-3v5.5a1.5 1.5 0 0 1-1.5 1.
|
|
1269
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M2.5 14A1.5 1.5 0 0 1 1 12.5V7l7 3 7-3v5.5a1.5 1.5 0 0 1-1.5 1.5z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path fill=\"#D0D2E0\" d=\"M9 9.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M11 4H5m6 0V2.5A1.5 1.5 0 0 0 9.5 1h-3A1.5 1.5 0 0 0 5 2.5V4m6 0h2.5A1.5 1.5 0 0 1 15 5.5V7M5 4H2.5A1.5 1.5 0 0 0 1 5.5V7m0 0v5.5A1.5 1.5 0 0 0 2.5 14h11a1.5 1.5 0 0 0 1.5-1.5V7M1 7l7 3 7-3M9 9.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" class=\"icon-dark\"/>"
|
|
1267
1270
|
}
|
|
1268
1271
|
}, ["16"], "object-briefcase"))
|
|
1269
1272
|
|
|
@@ -1272,7 +1275,7 @@ export const IconObjectBugLarge: React.FC<
|
|
|
1272
1275
|
Omit<iconsRegistry.IconObjectBugLargeProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1273
1276
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1274
1277
|
"16": {
|
|
1275
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M6 6a2 2 0 0 0-2 2v4s1 3 4 3 4-3 4-3V8a2 2 0 0 0-2-
|
|
1278
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M6 6a2 2 0 0 0-2 2v4s1 3 4 3 4-3 4-3V8a2 2 0 0 0-2-2z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path fill=\"#D0D2E0\" d=\"M6 6h4q.26 0 .5.063V3.5a2.5 2.5 0 0 0-5 0v2.563Q5.74 6.001 6 6\" class=\"icon-light\"/><path stroke=\"#1B1E2E\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 12s-1 3-4 3-4-3-4-3m8 0v-2m0 2a3 3 0 0 1 3 3M4 12v-2m0 2a3 3 0 0 0-3 3m11-5h3m-3 0V8m-8 2H1m3 0V8m8 0a2 2 0 0 0-2-2m2 2a3 3 0 0 0 3-3M4 8a3 3 0 0 1-3-3m3 3a2 2 0 0 1 2-2m4 0H6m4 0q.26 0 .5.063V3.5a2.5 2.5 0 0 0-5 0v2.563Q5.74 6.001 6 6\" class=\"icon-dark\"/>"
|
|
1276
1279
|
}
|
|
1277
1280
|
}, ["16"], "object-bug-large"))
|
|
1278
1281
|
|
|
@@ -1281,16 +1284,19 @@ export const IconObjectBugSmall: React.FC<
|
|
|
1281
1284
|
Omit<iconsRegistry.IconObjectBugSmallProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1282
1285
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1283
1286
|
"16": {
|
|
1284
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M6 7H5v4s1 2 3 2 3-2 3-
|
|
1287
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M6 7H5v4s1 2 3 2 3-2 3-2V7H6\" class=\"icon-light\" clip-rule=\"evenodd\"/><path fill=\"#D0D2E0\" d=\"M6 5v2h4V5a2 2 0 1 0-4 0\" class=\"icon-light\"/><path fill=\"currentColor\" d=\"M13 10a1 1 0 1 0 0-2zM3 8a1 1 0 0 0 0 2zm11-3a1 1 0 1 0-2 0zM4 5a1 1 0 0 0-2 0zm8 8a1 1 0 1 0 2 0zM2 13a1 1 0 1 0 2 0zm3-5h1V6H5zm2-1V5H5v2zM6 8h4V6H6zm4 0h1V6h-1zM9 5v2h2V5zm1 2v2h2V7zm1 3h2V8h-2zM6 9V7H4v2zM5 8H3v2h2zm5 1v2h2V9zm1 2-.894-.448v-.002l.002-.001v-.002l-.002.005a2 2 0 0 1-.126.206 3.6 3.6 0 0 1-.437.535C9.152 11.683 8.64 12 8 12v2c1.359 0 2.348-.684 2.957-1.293a5.6 5.6 0 0 0 .914-1.214l.015-.029.005-.01.002-.004v-.001l.001-.001zm-5 0V9H4v2zm2 1c-.641 0-1.152-.316-1.543-.707a3.6 3.6 0 0 1-.563-.741l-.002-.005v.002l.001.001v.002h.001L5 11l-.894.448.001.002.002.004.005.01a2 2 0 0 0 .065.118 5.555 5.555 0 0 0 .864 1.125C5.652 13.317 6.64 14 8 14zm0-8a1 1 0 0 1 1 1h2a3 3 0 0 0-3-3zM7 5a1 1 0 0 1 1-1V2a3 3 0 0 0-3 3zm5 0a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3zM5 6a1 1 0 0 1-1-1H2a3 3 0 0 0 3 3zm6 6a1 1 0 0 1 1 1h2a3 3 0 0 0-3-3zm-7 1a1 1 0 0 1 1-1v-2a3 3 0 0 0-3 3z\" class=\"icon-dark\"/>"
|
|
1288
|
+
},
|
|
1289
|
+
"24": {
|
|
1290
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M15 10V7a3 3 0 1 0-6 0v3zM15 10H9a3.16 3.16 0 0 0-2 2v4a4.564 4.564 0 0 0 4.014 3.89l.685.076q.301.034.602 0l.685-.076A4.564 4.564 0 0 0 17 16v-4a3.16 3.16 0 0 0-2-2\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M17 12v2m0-2 .265-.088A4 4 0 0 0 20 8.117V7m-3 5v0a3.16 3.16 0 0 0-2-2v0m0 0V7a3 3 0 0 0-3-3v0a3 3 0 0 0-3 3v3m6 0H9m0 0v0a3.16 3.16 0 0 0-2 2v0m0 0v2m0-2-.265-.088A4 4 0 0 1 4 8.117V7m13 7h3m-3 0v2M7 14H4m3 0v2m10 0v0a4.564 4.564 0 0 1-4.014 3.89l-.685.076q-.301.034-.602 0l-.685-.076A4.564 4.564 0 0 1 7 16v0m10 0 .265.088A4 4 0 0 1 20 19.883V21M7 16l-.265.088A4 4 0 0 0 4 19.883V21\" class=\"icon-dark\"/>"
|
|
1285
1291
|
}
|
|
1286
|
-
}, ["16"], "object-bug-small"))
|
|
1292
|
+
}, ["16","24"], "object-bug-small"))
|
|
1287
1293
|
|
|
1288
1294
|
|
|
1289
1295
|
export const IconObjectBug: React.FC<
|
|
1290
1296
|
Omit<iconsRegistry.IconObjectBugProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1291
1297
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1292
1298
|
"24": {
|
|
1293
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M15 10V7a3 3 0 1 0-6
|
|
1299
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M15 10V7a3 3 0 1 0-6 0v3zM15 10H9a3.16 3.16 0 0 0-2 2v4a4.564 4.564 0 0 0 4.014 3.89l.685.076q.301.034.602 0l.685-.076A4.564 4.564 0 0 0 17 16v-4a3.16 3.16 0 0 0-2-2\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M17 12v2m0-2 .265-.088A4 4 0 0 0 20 8.117V7m-3 5v0a3.16 3.16 0 0 0-2-2v0m0 0V7a3 3 0 0 0-3-3v0a3 3 0 0 0-3 3v3m6 0H9m0 0v0a3.16 3.16 0 0 0-2 2v0m0 0v2m0-2-.265-.088A4 4 0 0 1 4 8.117V7m13 7h3m-3 0v2M7 14H4m3 0v2m10 0v0a4.564 4.564 0 0 1-4.014 3.89l-.685.076q-.301.034-.602 0l-.685-.076A4.564 4.564 0 0 1 7 16v0m10 0 .265.088A4 4 0 0 1 20 19.883V21M7 16l-.265.088A4 4 0 0 0 4 19.883V21\" class=\"icon-dark\"/>"
|
|
1294
1300
|
}
|
|
1295
1301
|
}, ["24"], "object-bug"))
|
|
1296
1302
|
|
|
@@ -1299,7 +1305,7 @@ export const IconObjectChainLink: React.FC<
|
|
|
1299
1305
|
Omit<iconsRegistry.IconObjectChainLinkProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1300
1306
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1301
1307
|
"16": {
|
|
1302
|
-
"body": "<path fill=\"currentColor\" d=\"M10 3a1 1 0 1 0 0
|
|
1308
|
+
"body": "<path fill=\"currentColor\" d=\"M10 3a1 1 0 1 0 0 2zm0 8a1 1 0 1 0 0 2zM6 5a1 1 0 0 0 0-2zm0 8a1 1 0 1 0 0-2zM5 7a1 1 0 0 0 0 2zm6 2a1 1 0 1 0 0-2zm-1-4h1V3h-1zm1 6h-1v2h1zM5 5h1V3H5zm1 6H5v2h1zM5 9h6V7H5zM2 8a3 3 0 0 1 3-3V3a5 5 0 0 0-5 5zM0 8a5 5 0 0 0 5 5v-2a3 3 0 0 1-3-3zm14 0a3 3 0 0 1-3 3v2a5 5 0 0 0 5-5zm2 0a5 5 0 0 0-5-5v2a3 3 0 0 1 3 3z\" class=\"icon-dark\"/>"
|
|
1303
1309
|
}
|
|
1304
1310
|
}, ["16"], "object-chain-link"))
|
|
1305
1311
|
|
|
@@ -1308,7 +1314,7 @@ export const IconObjectFolderDarkSmall: React.FC<
|
|
|
1308
1314
|
Omit<iconsRegistry.IconObjectFolderDarkSmallProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1309
1315
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1310
1316
|
"16": {
|
|
1311
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M12.5 12a.5.5 0 0 0 .5-.5v-6a.5.5 0 0 0-.5-.5h-4L7.146 6.354a.5.5 0 0 1-.353.146H3v5a.5.5 0 0 0 .5.
|
|
1317
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M12.5 12a.5.5 0 0 0 .5-.5v-6a.5.5 0 0 0-.5-.5h-4L7.146 6.354a.5.5 0 0 1-.353.146H3v5a.5.5 0 0 0 .5.5z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8.5 5 7.146 3.646a.5.5 0 0 0-.353-.146H3.5A.5.5 0 0 0 3 4v2.5M8.5 5h4a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5v-5M8.5 5 7.146 6.354a.5.5 0 0 1-.353.146H3\" class=\"icon-dark\"/>"
|
|
1312
1318
|
}
|
|
1313
1319
|
}, ["16"], "object-folder-dark-small"))
|
|
1314
1320
|
|
|
@@ -1317,7 +1323,7 @@ export const IconObjectFolderDark: React.FC<
|
|
|
1317
1323
|
Omit<iconsRegistry.IconObjectFolderDarkProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1318
1324
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1319
1325
|
"16": {
|
|
1320
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M14 13a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H9L7.293 4.707A1 1 0 0 1 6.586 5H1v7a1 1 0 0 0 1
|
|
1326
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M14 13a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H9L7.293 4.707A1 1 0 0 1 6.586 5H1v7a1 1 0 0 0 1 1z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9 3 7.293 1.293A1 1 0 0 0 6.586 1H2a1 1 0 0 0-1 1v3m8-2h5a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V5m8-2L7.293 4.707A1 1 0 0 1 6.586 5H1\" class=\"icon-dark\"/>"
|
|
1321
1327
|
}
|
|
1322
1328
|
}, ["16"], "object-folder-dark"))
|
|
1323
1329
|
|
|
@@ -1326,10 +1332,10 @@ export const IconObjectFolderLight: React.FC<
|
|
|
1326
1332
|
Omit<iconsRegistry.IconObjectFolderLightProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1327
1333
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1328
1334
|
"16": {
|
|
1329
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M7.293 2.293A1 1 0 0 0 6.586 2H2a1 1 0 0 0-1 1v3h5.586a1 1 0 0 0 .707-.293L9
|
|
1335
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M7.293 2.293A1 1 0 0 0 6.586 2H2a1 1 0 0 0-1 1v3h5.586a1 1 0 0 0 .707-.293L9 4z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9 4 7.293 2.293A1 1 0 0 0 6.586 2H2a1 1 0 0 0-1 1v3m8-2h5a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V6m8-2L7.293 5.707A1 1 0 0 1 6.586 6H1\" class=\"icon-dark\"/>"
|
|
1330
1336
|
},
|
|
1331
1337
|
"24": {
|
|
1332
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M10.293 4.293A1 1 0 0 0 9.586 4H4a1 1 0 0 0-1 1v3h6.586a1 1 0 0 0 .707-.293L12
|
|
1338
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M10.293 4.293A1 1 0 0 0 9.586 4H4a1 1 0 0 0-1 1v3h6.586a1 1 0 0 0 .707-.293L12 6z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m12 6-1.707-1.707A1 1 0 0 0 9.586 4H4a1 1 0 0 0-1 1v3m9-2h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V8m9-2-1.707 1.707A1 1 0 0 1 9.586 8H3\" class=\"icon-dark\"/>"
|
|
1333
1339
|
}
|
|
1334
1340
|
}, ["16","24"], "object-folder-light"))
|
|
1335
1341
|
|
|
@@ -1338,10 +1344,10 @@ export const IconObjectGear: React.FC<
|
|
|
1338
1344
|
Omit<iconsRegistry.IconObjectGearProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1339
1345
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1340
1346
|
"16": {
|
|
1341
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M6.5 1h3a.5.5 0 0 1 .5.5v1.375a5.
|
|
1347
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M6.5 1h3a.5.5 0 0 1 .5.5v1.375a5.5 5.5 0 0 1 1.437.831l1.192-.688a.5.5 0 0 1 .683.183l1.5 2.598a.5.5 0 0 1-.183.683l-1.191.688a5.5 5.5 0 0 1 0 1.66l1.191.688a.5.5 0 0 1 .183.683l-1.5 2.598a.5.5 0 0 1-.683.183l-1.192-.688c-.43.345-.914.627-1.437.831V14.5a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1.375a5.5 5.5 0 0 1-1.437-.831l-1.192.688a.5.5 0 0 1-.683-.183l-1.5-2.598a.5.5 0 0 1 .183-.683l1.191-.688a5.5 5.5 0 0 1 0-1.66l-1.191-.688a.5.5 0 0 1-.183-.683l1.5-2.598a.5.5 0 0 1 .683-.183l1.192.688c.43-.345.914-.627 1.437-.831V1.5a.5.5 0 0 1 .5-.5M8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4\" class=\"icon-light\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" d=\"m13.312 3.201-.866.5zm1.5 2.598.866-.5zm-12.124 7-.866.5zm-1.5-2.598.866-.5zm0-4.402.866.5zm1.5-2.598.866.5zm12.124 7 .866.5zm-1.5 2.598-.866-.5zM6 2.875l.364.931A1 1 0 0 0 7 2.875zm-1.437.831-.5.866a1 1 0 0 0 1.125-.086zM3.37 3.018l-.5.866zM2.562 7.17l.989.15a1 1 0 0 0-.489-1.016zm-1.191-.688.5-.866zM2.562 8.83l.5.866a1 1 0 0 0 .489-1.016zm-1.191.688.5.866zm3.192 2.776.625-.78a1 1 0 0 0-1.125-.086zm-1.192.688.5.866zM6 13.125h1a1 1 0 0 0-.636-.931zm4 0-.364-.931a1 1 0 0 0-.636.931zm1.437-.831.5-.866a1 1 0 0 0-1.125.086zm1.192.688-.5.866zm.809-4.152-.989-.15a1 1 0 0 0 .489 1.016zm1.191.688.5-.866zm0-3.036-.5-.866zm-1.191.688-.5-.866a1 1 0 0 0-.489 1.016zm-2-3.464-.626.78a1 1 0 0 0 1.125.086zm1.191-.688-.5-.866zM10 2.875H9a1 1 0 0 0 .636.931zM6.5 2h3V0h-3zm3 12h-3v2h3zm2.946-10.299 1.5 2.598 1.732-1-1.5-2.598zm-8.892 8.598-1.5-2.598-1.732 1 1.5 2.598zm-1.5-6 1.5-2.598-1.732-1-1.5 2.598zm11.892 3.402-1.5 2.598 1.732 1 1.5-2.598zM7 2.875V1.5H5v1.375zM5.188 4.486a4.5 4.5 0 0 1 1.176-.68l-.728-1.863a6.5 6.5 0 0 0-1.699.983zm-2.317-.602 1.192.688 1-1.732-1.192-.688zM3.5 8q0-.349.051-.68l-1.978-.3Q1.5 7.501 1.5 8zm-.438-1.696-1.191-.688-1 1.732 1.191.688zm.489 2.376A4.5 4.5 0 0 1 3.5 8h-2q0 .499.073.98zm-1.68 1.704 1.191-.688-1-1.732-1.191.688zm2.192 1.044-1.192.688 1 1.732 1.192-.688zm2.3.766a4.5 4.5 0 0 1-1.175-.68l-1.25 1.56c.508.408 1.08.741 1.698.982zM7 14.5v-1.375H5V14.5zm2-1.375V14.5h2v-1.375zm1.812-1.611a4.5 4.5 0 0 1-1.176.68l.728 1.862a6.5 6.5 0 0 0 1.699-.982zm2.317.602-1.192-.688-1 1.732 1.192.688zM12.5 8q0 .349-.051.68l1.978.3q.073-.481.073-.98zm.438 1.696 1.191.688 1-1.732-1.191-.688zm1.191-4.08-1.191.688 1 1.732 1.191-.688zM12.45 7.32q.051.331.051.68h2q0-.499-.073-.98zm-.512-2.748 1.192-.688-1-1.732-1.192.688zm-2.3-.766c.426.167.822.398 1.175.68l1.25-1.56a6.5 6.5 0 0 0-1.698-.983zM9 1.5v1.375h2V1.5zm3.446 10.799a.5.5 0 0 1 .683-.183l-1 1.732a1.5 1.5 0 0 0 2.05-.549zm3.232-1.598a1.5 1.5 0 0 0-.549-2.05l-1 1.733a.5.5 0 0 1-.183-.683zm-12.124-7a.5.5 0 0 1-.683.183l1-1.732a1.5 1.5 0 0 0-2.05.549zM.322 5.299a1.5 1.5 0 0 0 .549 2.05l1-1.733a.5.5 0 0 1 .183.683zm1.732 4.402a.5.5 0 0 1-.183.683l-1-1.732A1.5 1.5 0 0 0 .32 10.7zm-.232 3.598a1.5 1.5 0 0 0 2.049.55l-1-1.733a.5.5 0 0 1 .683.183zm12.124-7a.5.5 0 0 1 .183-.683l1 1.732a1.5 1.5 0 0 0 .55-2.049zm.232-3.598a1.5 1.5 0 0 0-2.049-.55l1 1.733a.5.5 0 0 1-.683-.183zM6.5 14a.5.5 0 0 1 .5.5H5A1.5 1.5 0 0 0 6.5 16zm3 2a1.5 1.5 0 0 0 1.5-1.5H9a.5.5 0 0 1 .5-.5zm0-14a.5.5 0 0 1-.5-.5h2A1.5 1.5 0 0 0 9.5 0zm-3-2A1.5 1.5 0 0 0 5 1.5h2a.5.5 0 0 1-.5.5zM9 8a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3zM8 9a1 1 0 0 1-1-1H5a3 3 0 0 0 3 3zM7 8a1 1 0 0 1 1-1V5a3 3 0 0 0-3 3zm1-1a1 1 0 0 1 1 1h2a3 3 0 0 0-3-3z\" class=\"icon-dark\"/>"
|
|
1342
1348
|
},
|
|
1343
1349
|
"24": {
|
|
1344
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M9.794 3.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v1.417c0 .221.146.414.355.489.804.287 1.54.717 2.177 1.259a.
|
|
1350
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M9.794 3.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v1.417c0 .221.146.414.355.489.804.287 1.54.717 2.177 1.259a.52.52 0 0 0 .6.062l1.23-.71a.5.5 0 0 1 .683.184l1.5 2.598a.5.5 0 0 1-.184.683l-1.227.709a.52.52 0 0 0-.247.55 7 7 0 0 1 0 2.518c-.04.217.055.44.247.55l1.227.709a.5.5 0 0 1 .183.683l-1.5 2.598a.5.5 0 0 1-.683.183l-1.229-.71a.52.52 0 0 0-.6.063 7 7 0 0 1-2.177 1.26.525.525 0 0 0-.355.488V20.5a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1.417a.525.525 0 0 0-.354-.489 7 7 0 0 1-2.178-1.259.52.52 0 0 0-.6-.062l-1.229.71a.5.5 0 0 1-.683-.184l-1.5-2.598a.5.5 0 0 1 .183-.683l1.228-.709a.52.52 0 0 0 .246-.55 7 7 0 0 1 0-2.517.52.52 0 0 0-.246-.551l-1.228-.709a.5.5 0 0 1-.183-.683l1.5-2.598a.5.5 0 0 1 .683-.183l1.229.71c.191.11.432.08.6-.063a7 7 0 0 1 2.178-1.26.525.525 0 0 0 .354-.488zm2 11.5a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z\" class=\"icon-dark-stroke icon-light-fill\" clip-rule=\"evenodd\"/>"
|
|
1345
1351
|
}
|
|
1346
1352
|
}, ["16","24"], "object-gear"))
|
|
1347
1353
|
|
|
@@ -1350,7 +1356,7 @@ export const IconObjectGraduationCap: React.FC<
|
|
|
1350
1356
|
Omit<iconsRegistry.IconObjectGraduationCapProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1351
1357
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1352
1358
|
"16": {
|
|
1353
|
-
"body": "<path fill=\"#D0D2E0\" d=\"m8 3 7 3-2 .857V8.97a3 3 0 0 1-1.886 2.785l-2.371.949a2 2 0 0 1-1.486 0l-2.371-.949A3 3 0 0 1 3 8.97V6.857L1
|
|
1359
|
+
"body": "<path fill=\"#D0D2E0\" d=\"m8 3 7 3-2 .857V8.97a3 3 0 0 1-1.886 2.785l-2.371.949a2 2 0 0 1-1.486 0l-2.371-.949A3 3 0 0 1 3 8.97V6.857L1 6z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M13 6.857 15 6 8 3 1 6l2 .857m10 0V8.97a3 3 0 0 1-1.886 2.785l-2.371.949a2 2 0 0 1-1.486 0l-2.371-.949A3 3 0 0 1 3 8.97V6.857m10 0L8 9 3 6.857\" class=\"icon-dark\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M15.5 6v3\" class=\"icon-dark\"/>"
|
|
1354
1360
|
}
|
|
1355
1361
|
}, ["16"], "object-graduation-cap"))
|
|
1356
1362
|
|
|
@@ -1359,7 +1365,7 @@ export const IconObjectLetter: React.FC<
|
|
|
1359
1365
|
Omit<iconsRegistry.IconObjectLetterProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1360
1366
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1361
1367
|
"16": {
|
|
1362
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M14.5 3h-13a.
|
|
1368
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M14.5 3h-13a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M14.842 3.135 8 9 1.158 3.135m13.684 0A.5.5 0 0 0 14.5 3h-13a.5.5 0 0 0-.342.135m13.684 0c.097.092.158.221.158.365v9a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5v-9c0-.144.06-.273.158-.365\" class=\"icon-dark\"/>"
|
|
1363
1369
|
}
|
|
1364
1370
|
}, ["16"], "object-letter"))
|
|
1365
1371
|
|
|
@@ -1368,7 +1374,7 @@ export const IconObjectMagicWandDarkMode: React.FC<
|
|
|
1368
1374
|
Omit<iconsRegistry.IconObjectMagicWandDarkModeProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1369
1375
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1370
1376
|
"16": {
|
|
1371
|
-
"body": "<path fill=\"#D0D2E0\" d=\"m5.5 3.5-2 2L6 8l2-
|
|
1377
|
+
"body": "<path fill=\"#D0D2E0\" d=\"m5.5 3.5-2 2L6 8l2-2z\" class=\"icon-light\"/><path fill=\"currentColor\" d=\"m5.5 3.5.707-.707a1 1 0 0 0-1.414 0zm8 8 .707.707a1 1 0 0 0 0-1.414zm-2 2-.707.707a1 1 0 0 0 1.414 0zm-8-8-.707-.707a1 1 0 0 0 0 1.414zm9.293 5.293-2 2 1.414 1.414 2-2zM4.207 6.207l2-2-1.414-1.414-2 2zm8 6.586-5.5-5.5-1.414 1.414 5.5 5.5zm-5.5-5.5-2.5-2.5-1.414 1.414 2.5 2.5zM4.793 4.207l2.5 2.5 1.414-1.414-2.5-2.5zm2.5 2.5 5.5 5.5 1.414-1.414-5.5-5.5zm-.586 2 2-2-1.414-1.414-2 2z\" class=\"icon-dark\"/><path stroke=\"#D0D2E0\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M5.5 1.5v-1m-5 5h1m1.172-2.828-.708-.708m0 7.072.708-.708m5.656-5.656.708-.708\" class=\"icon-light\"/>"
|
|
1372
1378
|
}
|
|
1373
1379
|
}, ["16"], "object-magic-wand-dark-mode"))
|
|
1374
1380
|
|
|
@@ -1377,7 +1383,7 @@ export const IconObjectMagnifyingGlass: React.FC<
|
|
|
1377
1383
|
Omit<iconsRegistry.IconObjectMagnifyingGlassProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1378
1384
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1379
1385
|
"16": {
|
|
1380
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M12 7c0 1.38-.56 2.63-1.464 3.536A5 5 0 1 1 12
|
|
1386
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M12 7c0 1.38-.56 2.63-1.464 3.536A5 5 0 1 1 12 7\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M10.536 10.536a5 5 0 1 0-7.071-7.071 5 5 0 0 0 7.07 7.07m0 0L14 14\" class=\"icon-dark\"/>"
|
|
1381
1387
|
}
|
|
1382
1388
|
}, ["16"], "object-magnifying-glass"))
|
|
1383
1389
|
|
|
@@ -1386,7 +1392,7 @@ export const IconObjectOdometer: React.FC<
|
|
|
1386
1392
|
Omit<iconsRegistry.IconObjectOdometerProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1387
1393
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1388
1394
|
"24": {
|
|
1389
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M2 13C2 7.477 6.477 3 12 3s10 4.477 10 10a9.
|
|
1395
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M2 13C2 7.477 6.477 3 12 3s10 4.477 10 10a9.99 9.99 0 0 1-4 8H6a9.99 9.99 0 0 1-4-8m10 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" class=\"icon-light\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" d=\"m6 21-.6.8a1 1 0 0 0 .6.2zm12 0v1a1 1 0 0 0 .6-.2zm-6.707-8.707a1 1 0 0 0 1.414 1.414zm6.414-3.586a1 1 0 0 0-1.414-1.414zM3 13a9 9 0 0 1 9-9V2C5.925 2 1 6.925 1 13zm9-9a9 9 0 0 1 9 9h2c0-6.075-4.925-11-11-11zM6.6 20.2A8.99 8.99 0 0 1 3 13H1c0 3.6 1.73 6.795 4.4 8.8zM21 13a8.99 8.99 0 0 1-3.6 7.2l1.2 1.6c2.67-2.005 4.4-5.2 4.4-8.8zm-9 0v2a2 2 0 0 0 2-2zm0 0h-2a2 2 0 0 0 2 2zm0 0v-2a2 2 0 0 0-2 2zm-6 9h12v-2H6zm8-9c0-.552-.225-1.054-.586-1.415L12 13zm-.586-1.415A2 2 0 0 0 12 11v2zm-.707 2.122.707-.707L12 11.585l-.707.707zm.707-.707 4.293-4.293-1.414-1.414L12 11.585z\" class=\"icon-dark\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M5.68 8.094A8 8 0 0 1 7.094 6.68l.663.663a1 1 0 0 1-1.414 1.414zM4.062 14a8 8 0 0 1 0-2H5a1 1 0 1 1 0 2zm15.876-2a8 8 0 0 1 0 2H19a1 1 0 1 1 0-2zM13 5.062V6a1 1 0 1 1-2 0v-.938a8 8 0 0 1 2 0\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
1390
1396
|
}
|
|
1391
1397
|
}, ["24"], "object-odometer"))
|
|
1392
1398
|
|
|
@@ -1395,7 +1401,7 @@ export const IconObjectPaperAirplane: React.FC<
|
|
|
1395
1401
|
Omit<iconsRegistry.IconObjectPaperAirplaneProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1396
1402
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1397
1403
|
"16": {
|
|
1398
|
-
"body": "<path fill=\"transparent\" d=\"M15 8 1 1l2 7-2
|
|
1404
|
+
"body": "<path fill=\"transparent\" d=\"M15 8 1 1l2 7-2 7z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m3 8-2 7 14-7L1 1zm0 0h3\" class=\"icon-dark\"/>"
|
|
1399
1405
|
}
|
|
1400
1406
|
}, ["16"], "object-paper-airplane"))
|
|
1401
1407
|
|
|
@@ -1404,7 +1410,7 @@ export const IconObjectPinModern: React.FC<
|
|
|
1404
1410
|
Omit<iconsRegistry.IconObjectPinModernProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1405
1411
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1406
1412
|
"16": {
|
|
1407
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M12 6a4 4 0 1 1-8 0 4 4 0 0 1 8
|
|
1413
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M12 6a4 4 0 1 1-8 0 4 4 0 0 1 8 0\" class=\"icon-light\"/><path fill=\"currentColor\" d=\"M7 14a1 1 0 1 0 2 0zm0-4v4h2v-4zm4-4a3 3 0 0 1-3 3v2a5 5 0 0 0 5-5zM8 9a3 3 0 0 1-3-3H3a5 5 0 0 0 5 5zM5 6a3 3 0 0 1 3-3V1a5 5 0 0 0-5 5zm3-3a3 3 0 0 1 3 3h2a5 5 0 0 0-5-5z\" class=\"icon-dark\"/>"
|
|
1408
1414
|
}
|
|
1409
1415
|
}, ["16"], "object-pin-modern"))
|
|
1410
1416
|
|
|
@@ -1413,7 +1419,7 @@ export const IconObjectRuler: React.FC<
|
|
|
1413
1419
|
Omit<iconsRegistry.IconObjectRulerProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1414
1420
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1415
1421
|
"16": {
|
|
1416
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M5 11a.5.5 0 0 0-1
|
|
1422
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M5 11a.5.5 0 0 0-1 0zm-1 1a.5.5 0 0 0 1 0zm4-1a.5.5 0 0 0-1 0zm-1 1a.5.5 0 0 0 1 0zm3 0a.5.5 0 0 0 1 0zm2-1a.5.5 0 0 0 0-1zm-1-4a.5.5 0 0 0 0 1zm1 1a.5.5 0 0 0 0-1zm-1-4a.5.5 0 0 0 0 1zm1 1a.5.5 0 0 0 0-1zm-1 5a.5.5 0 0 0 0 1zm0 1a.5.5 0 0 0-1 0zm-7 0v1h1v-1zm3 0v1h1v-1zm4-3h1V7h-1zm0-3h1V4h-1zm0 6h1v-1h-1zm-1 0v1h1v-1z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M15 15V1h-5v9H1v5zm0 0v-4\" class=\"icon-dark\"/>"
|
|
1417
1423
|
}
|
|
1418
1424
|
}, ["16"], "object-ruler"))
|
|
1419
1425
|
|
|
@@ -1422,7 +1428,7 @@ export const IconObjectSlidersRound: React.FC<
|
|
|
1422
1428
|
Omit<iconsRegistry.IconObjectSlidersRoundProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1423
1429
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1424
1430
|
"16": {
|
|
1425
|
-
"body": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M2 12h5m7 0h-2M2 4h2m10 0H9m3
|
|
1431
|
+
"body": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M2 12h5m7 0h-2M2 4h2m10 0H9m3 8a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v0a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2M9 4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v0m5 0a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v0m-1406-193.999h100v100h-100z\" class=\"icon-dark\"/>"
|
|
1426
1432
|
}
|
|
1427
1433
|
}, ["16"], "object-sliders-round"))
|
|
1428
1434
|
|
|
@@ -1431,7 +1437,7 @@ export const IconObjectTag: React.FC<
|
|
|
1431
1437
|
Omit<iconsRegistry.IconObjectTagProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1432
1438
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1433
1439
|
"16": {
|
|
1434
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M7.586 2a1 1 0 0 1 .707.294l5.5 5.5a1 1 0 0 1 0 1.414l-4.586 4.586a1 1 0 0 1-1.414 0l-5.5-5.5A1 1 0 0 1 2 7.587V3a1 1 0 0 1 1-
|
|
1440
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M7.586 2a1 1 0 0 1 .707.294l5.5 5.5a1 1 0 0 1 0 1.414l-4.586 4.586a1 1 0 0 1-1.414 0l-5.5-5.5A1 1 0 0 1 2 7.587V3a1 1 0 0 1 1-1z\" class=\"icon-dark-stroke icon-light-fill\" clip-rule=\"evenodd\"/><circle cx=\"5.5\" cy=\"5.501\" r=\"1\" fill=\"currentColor\" class=\"icon-dark\"/>"
|
|
1435
1441
|
}
|
|
1436
1442
|
}, ["16"], "object-tag"))
|
|
1437
1443
|
|
|
@@ -1440,7 +1446,7 @@ export const IconObjectTassel: React.FC<
|
|
|
1440
1446
|
Omit<iconsRegistry.IconObjectTasselProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1441
1447
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1442
1448
|
"16": {
|
|
1443
|
-
"body": "<path fill=\"#D0D2E0\" d=\"m8 3 7 3-2 .857V8.97a3 3 0 0 1-1.886 2.785l-2.371.949a2 2 0 0 1-1.486 0l-2.371-.949A3 3 0 0 1 3 8.97V6.857L1
|
|
1449
|
+
"body": "<path fill=\"#D0D2E0\" d=\"m8 3 7 3-2 .857V8.97a3 3 0 0 1-1.886 2.785l-2.371.949a2 2 0 0 1-1.486 0l-2.371-.949A3 3 0 0 1 3 8.97V6.857L1 6z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M13 6.857 15 6 8 3 1 6l2 .857m10 0V8.97a3 3 0 0 1-1.886 2.785l-2.371.949a2 2 0 0 1-1.486 0l-2.371-.949A3 3 0 0 1 3 8.97V6.857m10 0L8 9 3 6.857\" class=\"icon-dark\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M15.5 6v3\" class=\"icon-dark-secondary\"/>"
|
|
1444
1450
|
}
|
|
1445
1451
|
}, ["16"], "object-tassel"))
|
|
1446
1452
|
|
|
@@ -1449,7 +1455,7 @@ export const IconOsApple: React.FC<
|
|
|
1449
1455
|
Omit<iconsRegistry.IconOsAppleProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1450
1456
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1451
1457
|
"16": {
|
|
1452
|
-
"body": "<g clip-path=\"url(#os-apple_x16_svg__a)\"><path fill=\"currentColor\" d=\"M13.61 5.454c-.093.072-1.732.996-1.732 3.048 0 2.375 2.085 3.215 2.148 3.236-.01.05-.332 1.15-1.1 2.27-.684.986-1.4 1.97-2.488 1.97s-1.368-.632-2.624-.632c-1.224 0-1.659.652-2.654.
|
|
1458
|
+
"body": "<g clip-path=\"url(#os-apple_x16_svg__a)\"><path fill=\"currentColor\" d=\"M13.61 5.454c-.093.072-1.732.996-1.732 3.048 0 2.375 2.085 3.215 2.148 3.236-.01.05-.332 1.15-1.1 2.27-.684.986-1.4 1.97-2.488 1.97s-1.368-.632-2.624-.632c-1.224 0-1.659.652-2.654.652s-1.69-.912-2.488-2.032C1.747 12.651 1 10.608 1 8.67c0-3.11 2.022-4.76 4.013-4.76 1.057 0 1.939.694 2.603.694.632 0 1.618-.736 2.82-.736.457 0 2.095.042 3.174 1.587M9.866 2.55c.497-.59.85-1.41.85-2.228 0-.114-.01-.23-.031-.322-.81.03-1.773.54-2.354 1.213-.456.518-.881 1.337-.881 2.168 0 .125.02.25.03.29.051.009.134.02.218.02.726 0 1.64-.486 2.168-1.14\"/></g>",
|
|
1453
1459
|
"defs": "<defs><clipPath id=\"os-apple_x16_svg__a\"><path fill=\"currentColor\" d=\"M0 0h16v16H0z\"/></clipPath></defs>"
|
|
1454
1460
|
}
|
|
1455
1461
|
}, ["16"], "os-apple"))
|
|
@@ -1459,7 +1465,7 @@ export const IconOsGeneric: React.FC<
|
|
|
1459
1465
|
Omit<iconsRegistry.IconOsGenericProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1460
1466
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1461
1467
|
"16": {
|
|
1462
|
-
"body": "<g clip-path=\"url(#os-generic_x16_svg__a)\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M2 8a6 6 0 1 1 12 0A6 6 0 0 1 2
|
|
1468
|
+
"body": "<g clip-path=\"url(#os-generic_x16_svg__a)\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M2 8a6 6 0 1 1 12 0A6 6 0 0 1 2 8m6-8a8 8 0 1 0 0 16A8 8 0 0 0 8 0m-.026 8.004c0 1.618-.967 2.527-2.554 2.527-1.59 0-2.548-.914-2.548-2.527v-.008c0-1.582.993-2.527 2.548-2.527 1.56 0 2.554.931 2.554 2.527zm-3.274 0c0 .77.268 1.191.725 1.191.448 0 .72-.426.72-1.19v-.01c0-.75-.285-1.19-.725-1.19-.443 0-.72.44-.72 1.19zm8.428.831c0 1.046-.94 1.696-2.346 1.696-1.53 0-2.33-.655-2.44-1.621l-.004-.04h1.74l.01.035c.07.282.29.449.694.449.347 0 .562-.12.562-.312v-.005c0-.176-.145-.277-.545-.351l-.879-.163c-.962-.176-1.472-.69-1.472-1.441v-.005c0-1.006.857-1.608 2.268-1.608 1.503 0 2.267.747 2.267 1.63v.03H11.35l-.005-.039c-.026-.228-.242-.444-.628-.444-.33 0-.545.124-.545.33v.004c0 .172.123.269.562.352l.88.163c1.045.193 1.515.602 1.515 1.336z\" class=\"icon-light\" clip-rule=\"evenodd\"/></g>",
|
|
1463
1469
|
"defs": "<defs><clipPath id=\"os-generic_x16_svg__a\"><path fill=\"currentColor\" d=\"M0 0h16v16H0z\" class=\"icon-light\"/></clipPath></defs>"
|
|
1464
1470
|
}
|
|
1465
1471
|
}, ["16"], "os-generic"))
|
|
@@ -1469,7 +1475,7 @@ export const IconOsLinux: React.FC<
|
|
|
1469
1475
|
Omit<iconsRegistry.IconOsLinuxProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1470
1476
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1471
1477
|
"16": {
|
|
1472
|
-
"body": "<g clip-path=\"url(#os-linux_x16_svg__a)\"><path fill=\"currentColor\" d=\"M7.758 4.389c0 .053-.053.053-.053.053h-.053c-.053 0-.053-.053-.106-.106 0 0-.053-.053-.053-.106s0-.053.053-.053l.106.053c.053.053.106.106.106.
|
|
1478
|
+
"body": "<g clip-path=\"url(#os-linux_x16_svg__a)\"><path fill=\"currentColor\" d=\"M7.758 4.389c0 .053-.053.053-.053.053h-.053c-.053 0-.053-.053-.106-.106 0 0-.053-.053-.053-.106s0-.053.053-.053l.106.053c.053.053.106.106.106.159m-.954-.53c0-.265-.106-.424-.265-.424 0 0 0 .053-.053.053v.106h.16c0 .106.052.16.052.265zm1.854-.265c.106 0 .16.106.212.265h.106c-.053-.053-.053-.106-.053-.159s0-.106-.053-.159-.106-.106-.159-.106c0 0-.053.053-.106.053 0 .053.053.053.053.106m-1.589.848c-.053 0-.053 0-.053-.053s0-.106.053-.16c.106 0 .16-.052.16-.052.052 0 .052.053.052.053 0 .053-.053.106-.159.212zm-.583-.053c-.211-.106-.264-.265-.264-.53 0-.159 0-.265.106-.37a.29.29 0 0 1 .264-.16c.106 0 .16.053.265.16.053.158.106.317.106.476v.106h.053v-.053c.053 0 .053-.106.053-.318 0-.159 0-.318-.106-.477s-.212-.265-.424-.265a.4.4 0 0 0-.37.265c-.106.212-.127.371-.127.636 0 .212.074.424.286.636.053-.053.106-.053.158-.106m6.622 7.47c.053 0 .053-.022.053-.07 0-.116-.053-.254-.212-.407-.159-.16-.423-.26-.741-.303-.053-.005-.106-.005-.106-.005-.053-.01-.053-.01-.106-.01a3 3 0 0 1-.212-.027c.159-.493.212-.927.212-1.308 0-.53-.106-.9-.318-1.219-.212-.318-.424-.477-.689-.53-.053.053-.053.053-.053.106.265.106.53.318.69.636.158.371.211.689.211 1.06 0 .296-.053.736-.265 1.297-.212.085-.424.281-.583.588 0 .048 0 .075.053.075 0 0 .053-.048.106-.138.106-.09.16-.18.265-.27.16-.09.265-.138.424-.138.265 0 .53.037.689.111.212.07.318.143.37.228q.08.12.16.223c0 .069.052.1.052.1M8.235 4.176c-.053-.053-.053-.159-.053-.265 0-.212 0-.318.106-.477q.16-.159.317-.159c.16 0 .265.106.371.212.053.16.106.265.106.424q0 .397-.318.477s.053.053.106.053c.106 0 .16.053.265.106.053-.318.106-.53.106-.795 0-.318-.053-.53-.159-.689a.68.68 0 0 0-.53-.211.85.85 0 0 0-.476.158c-.106.16-.16.265-.16.424 0 .265.054.477.16.689.053 0 .106.053.159.053m.635.847c-.688.477-1.218.69-1.642.69-.37 0-.742-.16-1.06-.425.054.106.107.212.16.265l.317.318c.212.212.477.318.742.318.37 0 .795-.212 1.324-.583l.477-.318c.106-.106.212-.212.212-.37 0-.053 0-.106-.053-.106-.053-.106-.318-.265-.847-.424-.477-.212-.848-.318-1.06-.318q-.239 0-.795.318c-.317.212-.53.424-.53.635 0 0 .054.053.107.16.317.264.635.423.953.423.424 0 .954-.212 1.642-.741v.106c.053 0 .053.052.053.052m1.219 10.701c.212.399.582.599 1.006.599q.159 0 .318-.048a.7.7 0 0 0 .265-.1q.08-.054.159-.117c.106-.037.106-.063.159-.09l.9-.779c.212-.169.424-.316.69-.445.211-.127.423-.211.529-.26a.95.95 0 0 0 .37-.19.55.55 0 0 0 .107-.307c0-.154-.106-.27-.212-.355a1.1 1.1 0 0 0-.318-.18c-.106-.037-.212-.122-.37-.265a1.4 1.4 0 0 1-.266-.578l-.053-.307c-.053-.143-.053-.249-.106-.307 0-.016 0-.021-.053-.021a.29.29 0 0 0-.212.138q-.16.136-.317.296c-.053.106-.212.201-.318.291a.95.95 0 0 1-.424.138c-.424 0-.636-.116-.795-.344-.106-.17-.159-.366-.212-.588-.106-.09-.159-.138-.264-.138-.265 0-.371.276-.371.832v1.648c0 .047-.053.153-.053.317-.053.165-.053.351-.053.562l-.106.588v.01m-7.682-.281q.74.108 1.7.461c.642.233 1.034.355 1.177.355.37 0 .678-.164.932-.482.053-.102.053-.223.053-.362q0-.75-.906-1.902l-.36-.482a5 5 0 0 1-.28-.46 5 5 0 0 0-.292-.477 1.4 1.4 0 0 0-.323-.366 1.1 1.1 0 0 0-.472-.244c-.222.043-.376.117-.45.218a.65.65 0 0 0-.127.328q-.023.167-.1.222a1 1 0 0 1-.266.085q-.04-.002-.143.006h-.143c-.28 0-.471.031-.572.084a.78.78 0 0 0-.201.514q0 .127.064.43c.042.195.063.354.063.465q.002.327-.196.652c-.132.228-.201.397-.201.518q.08.308 1.043.435zm1.764-4.817c0-.366.096-.769.292-1.245.19-.477.381-.795.567-1.007-.01-.053-.037-.053-.08-.053l-.053-.053c-.153.16-.339.53-.561 1.06-.223.476-.34.916-.34 1.24 0 .238.059.444.165.624.116.175.397.43.842.753l.562.365c.598.52.916.88.916 1.092 0 .11-.053.222-.212.344a.5.5 0 0 1-.37.19q-.016-.001-.016.038-.001.007.164.317c.222.302.7.45 1.335.45 1.165 0 2.066-.476 2.755-1.43 0-.264 0-.429-.053-.498v-.196q0-.518.158-.773c.106-.17.212-.249.371-.249q.159-.002.318.117c.053-.408.053-.763.053-1.081 0-.482 0-.88-.106-1.25a2.8 2.8 0 0 0-.265-.795l-.318-.477c-.106-.159-.159-.318-.264-.476-.053-.212-.106-.371-.106-.636-.16-.265-.265-.53-.424-.795-.106-.265-.212-.53-.318-.741l-.477.37c-.53.371-.953.53-1.324.53-.318 0-.583-.053-.742-.265l-.318-.265c0 .16-.053.371-.159.583l-.333.636c-.149.37-.228.582-.244.741-.021.106-.037.212-.048.212l-.397.795c-.43.795-.646 1.53-.646 2.14q0 .185.031.376a.79.79 0 0 1-.355-.688m3.793 5.011q-1.032 0-1.589.278V15.9c-.265.318-.561.482-.974.482q-.391 0-1.219-.302a14 14 0 0 0-1.478-.433 3 3 0 0 0-.291-.055 11 11 0 0 1-.408-.072 3 3 0 0 1-.376-.109.9.9 0 0 1-.318-.162.3.3 0 0 1-.11-.227q0-.127.055-.271.051-.09.108-.17.057-.086.09-.164a.8.8 0 0 0 .074-.148.818.818 0 0 0 .074-.312 6 6 0 0 0-.063-.494 5 5 0 0 1-.064-.524c0-.233.053-.419.17-.551.116-.132.227-.201.344-.201h.61c.047 0 .121-.027.232-.09.037-.085.07-.154.09-.218.027-.063.037-.11.048-.132q.015-.05.032-.09a.7.7 0 0 1 .085-.122.32.32 0 0 1-.064-.207c0-.058 0-.11.01-.143 0-.19.09-.46.281-.815l.186-.334c.153-.286.27-.498.355-.71q.133-.318.291-.953.127-.557.604-1.113l.397-.477c.276-.318.456-.582.556-.794s.154-.477.154-.689q.002-.159-.085-.954c-.053-.53-.08-1.06-.08-1.536 0-.37.033-.636.102-.9.068-.265.19-.53.37-.742.16-.212.371-.424.689-.53A3.5 3.5 0 0 1 7.964.48c.16 0 .318 0 .477.053q.24 0 .636.16c.212.105.424.211.583.37.212.159.37.424.53.689.105.317.211.635.264 1.06.053.264.053.529.106.9 0 .318.053.53.053.688.053.16.053.371.106.636.053.212.106.424.212.583.106.212.212.424.37.636.16.264.372.53.584.847.476.53.847 1.113 1.06 1.695.264.53.423 1.219.423 1.955a3.6 3.6 0 0 1-.159 1.065c.106 0 .159.042.212.116q.08.11.159.482l.053.393a.62.62 0 0 0 .265.323c.106.095.212.175.37.238.106.053.265.127.371.223a.47.47 0 0 1 .16.333c0 .18-.054.313-.16.408a.83.83 0 0 1-.37.228c-.106.053-.318.159-.636.308a6 6 0 0 0-.795.572l-.53.451a3 3 0 0 1-.582.445c-.16.096-.371.143-.583.143l-.37-.042c-.425-.111-.69-.323-.848-.646-.848-.103-1.537-.154-1.96-.154\"/></g>",
|
|
1473
1479
|
"defs": "<defs><clipPath id=\"os-linux_x16_svg__a\"><path fill=\"currentColor\" d=\"M0 0h16v16H0z\"/></clipPath></defs>"
|
|
1474
1480
|
}
|
|
1475
1481
|
}, ["16"], "os-linux"))
|
|
@@ -1479,7 +1485,7 @@ export const IconOsWindows: React.FC<
|
|
|
1479
1485
|
Omit<iconsRegistry.IconOsWindowsProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1480
1486
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1481
1487
|
"16": {
|
|
1482
|
-
"body": "<path fill=\"#00A4EF\" d=\"M7.6 0H0v7.6h7.
|
|
1488
|
+
"body": "<path fill=\"#00A4EF\" d=\"M7.6 0H0v7.6h7.6zM16 0H8.4v7.6H16zM7.6 8.4H0V16h7.6zM16 8.4H8.4V16H16z\"/>"
|
|
1483
1489
|
}
|
|
1484
1490
|
}, ["16"], "os-windows"))
|
|
1485
1491
|
|
|
@@ -1488,10 +1494,10 @@ export const IconSecurityKey: React.FC<
|
|
|
1488
1494
|
Omit<iconsRegistry.IconSecurityKeyProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1489
1495
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1490
1496
|
"16": {
|
|
1491
|
-
"body": "<path fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M1.861 7.354a2 2 0 0 1 .273-2.488l2.732-2.732a2 2 0 0 1 2.488-.273l2.502 1.593a2 2 0 0 1 .642 2.716L10 7l5 5v3h-3l-1-2.5H9L8 10H7l-.83.498a2 2 0 0 1-2.716-.
|
|
1497
|
+
"body": "<path fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M1.861 7.354a2 2 0 0 1 .273-2.488l2.732-2.732a2 2 0 0 1 2.488-.273l2.502 1.593a2 2 0 0 1 .642 2.716L10 7l5 5v3h-3l-1-2.5H9L8 10H7l-.83.498a2 2 0 0 1-2.716-.642z\" class=\"icon-light-fill icon-dark-stroke\"/><circle cx=\"5.752\" cy=\"5.752\" r=\"1.002\" fill=\"currentColor\" class=\"icon-dark\"/>"
|
|
1492
1498
|
},
|
|
1493
1499
|
"24": {
|
|
1494
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M10.038 2.475a3 3 0 0 0-3.757.394L2.87 6.28a3 3 0 0 0-.394 3.757L5.25 14.31a3 3 0 0 0 4.316.765L11 14l1.5 3.5 1.5-1 1.5 3.5 1.5-1s1 1.7 1.5 2c2.5 1.5 3.5-2 3.5-2l-8-8 1.075-1.433a3 3 0 0 0-.765-4.
|
|
1500
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M10.038 2.475a3 3 0 0 0-3.757.394L2.87 6.28a3 3 0 0 0-.394 3.757L5.25 14.31a3 3 0 0 0 4.316.765L11 14l1.5 3.5 1.5-1 1.5 3.5 1.5-1s1 1.7 1.5 2c2.5 1.5 3.5-2 3.5-2l-8-8 1.075-1.433a3 3 0 0 0-.765-4.316zM8 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" class=\"icon-light-fill icon-dark-stroke\" clip-rule=\"evenodd\"/>"
|
|
1495
1501
|
}
|
|
1496
1502
|
}, ["16","24"], "security-key"))
|
|
1497
1503
|
|
|
@@ -1500,7 +1506,7 @@ export const IconSecurityLockLocked: React.FC<
|
|
|
1500
1506
|
Omit<iconsRegistry.IconSecurityLockLockedProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1501
1507
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1502
1508
|
"16": {
|
|
1503
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M2 13a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2H4a2 2 0 0 0-2
|
|
1509
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M2 13a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M5 6H4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-1M5 6V4a3 3 0 0 1 3-3v0a3 3 0 0 1 3 3v2M5 6h6m-3 4v1\" class=\"icon-dark\"/>"
|
|
1504
1510
|
}
|
|
1505
1511
|
}, ["16"], "security-lock-locked"))
|
|
1506
1512
|
|
|
@@ -1509,10 +1515,10 @@ export const IconSecurityShieldCheck: React.FC<
|
|
|
1509
1515
|
Omit<iconsRegistry.IconSecurityShieldCheckProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1510
1516
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1511
1517
|
"16": {
|
|
1512
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M8 1.333s-2.667 1.334-6 2v7.524c1 2.857 6 3.81 6 3.
|
|
1518
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M8 1.333s-2.667 1.334-6 2v7.524c1 2.857 6 3.81 6 3.81z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m6 8 1.667 2L10 6m4-2.667c-3.333-.666-6-2-6-2s-2.667 1.334-6 2v7.524c1 2.857 6 3.81 6 3.81s5-.953 6-3.81z\" class=\"icon-dark\"/>"
|
|
1513
1519
|
},
|
|
1514
1520
|
"24": {
|
|
1515
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M12 2S8 4 3 5v11.286C4.5 20.57 12 22 12
|
|
1521
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M12 2S8 4 3 5v11.286C4.5 20.57 12 22 12 22z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m9 12 2.5 3L15 9m6-4c-5-1-9-3-9-3S8 4 3 5v11.286C4.5 20.57 12 22 12 22s7.5-1.429 9-5.714z\" class=\"icon-dark\"/>"
|
|
1516
1522
|
}
|
|
1517
1523
|
}, ["16","24"], "security-shield-check"))
|
|
1518
1524
|
|
|
@@ -1521,10 +1527,10 @@ export const IconSecurityShieldCross: React.FC<
|
|
|
1521
1527
|
Omit<iconsRegistry.IconSecurityShieldCrossProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1522
1528
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1523
1529
|
"16": {
|
|
1524
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M8 1S5.5 3 2
|
|
1530
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M8 1S5.5 3 2 3v4h6zM2 11c1 3 6 4 6 4V7H2z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 15s5-1 6-4V7m-6 8s-5-1-6-4V7m6 8V7m0-6S5.5 3 2 3v4m6-6s2.5 2 6 2v4M8 1v6m6 0H8M2 7h6\" class=\"icon-dark\"/>"
|
|
1525
1531
|
},
|
|
1526
1532
|
"24": {
|
|
1527
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M12 2S8 5 3
|
|
1533
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M12 2S8 5 3 5v5h9zM3 16c1 4.5 9 6 9 6V10H3z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 22s8-1.5 9-6v-6m-9 12s-8-1.5-9-6v-6m9 12V10m0-8S8 5 3 5v5m9-8s4 3 9 3v5m-9-8v8m9 0h-9m-9 0h9\" class=\"icon-dark\"/>"
|
|
1528
1534
|
}
|
|
1529
1535
|
}, ["16","24"], "security-shield-cross"))
|
|
1530
1536
|
|
|
@@ -1533,10 +1539,10 @@ export const IconShapeHeart: React.FC<
|
|
|
1533
1539
|
Omit<iconsRegistry.IconShapeHeartProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1534
1540
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1535
1541
|
"16": {
|
|
1536
|
-
"body": "<path fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4.448 2a3.
|
|
1542
|
+
"body": "<path fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4.448 2a3.43 3.43 0 0 0-2.432 1.02l-.007-.004A3.5 3.5 0 0 0 1 5.479c0 .924.363 1.81 1.01 2.463l5.984 6.05.002-.002.01.01 5.985-6.05A3.5 3.5 0 0 0 15 5.485c0-.923-.363-1.81-1.01-2.463a3.413 3.413 0 0 0-4.875-.003L8.002 4.147 6.883 3.015A3.43 3.43 0 0 0 4.448 2Z\" class=\"icon-dark-stroke icon-light-fill\"/>"
|
|
1537
1543
|
},
|
|
1538
1544
|
"24": {
|
|
1539
|
-
"body": "<path fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6.673 3a5.14 5.14 0 0 0-3.649 1.53l-.01-.006A5.
|
|
1545
|
+
"body": "<path fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6.673 3a5.14 5.14 0 0 0-3.649 1.53l-.01-.006A5.25 5.25 0 0 0 1.5 8.22c0 1.385.545 2.714 1.514 3.694l8.977 9.076.004-.003.014.014 8.977-9.076A5.25 5.25 0 0 0 22.5 8.23a5.25 5.25 0 0 0-1.514-3.695A5.2 5.2 0 0 0 19.31 3.4a5.12 5.12 0 0 0-5.636 1.131l-1.67 1.688-1.678-1.697A5.14 5.14 0 0 0 6.673 3Z\" class=\"icon-dark-stroke icon-light-fill\"/>"
|
|
1540
1546
|
}
|
|
1541
1547
|
}, ["16","24"], "shape-heart"))
|
|
1542
1548
|
|
|
@@ -1545,10 +1551,10 @@ export const IconShapeLightningBolt: React.FC<
|
|
|
1545
1551
|
Omit<iconsRegistry.IconShapeLightningBoltProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1546
1552
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1547
1553
|
"16": {
|
|
1548
|
-
"body": "<path fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 1v5h5.5L8 15v-5H2.
|
|
1554
|
+
"body": "<path fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 1v5h5.5L8 15v-5H2.5z\" class=\"icon-light-fill icon-dark-stroke\"/>"
|
|
1549
1555
|
},
|
|
1550
1556
|
"24": {
|
|
1551
|
-
"body": "<path fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 10V2L5 14h7v8l7-
|
|
1557
|
+
"body": "<path fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 10V2L5 14h7v8l7-12z\" class=\"icon-light-fill icon-dark-stroke\"/>"
|
|
1552
1558
|
}
|
|
1553
1559
|
}, ["16","24"], "shape-lightning-bolt"))
|
|
1554
1560
|
|
|
@@ -1557,7 +1563,7 @@ export const IconShapeMoonCrescent: React.FC<
|
|
|
1557
1563
|
Omit<iconsRegistry.IconShapeMoonCrescentProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1558
1564
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1559
1565
|
"16": {
|
|
1560
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M14.382 10.
|
|
1566
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M14.382 10.881Q13.707 11 13 11a8 8 0 0 1-7.881-9.381 7.001 7.001 0 1 0 9.263 9.262\" class=\"icon-light\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" d=\"m14.382 10.881.91.412a1 1 0 0 0-1.082-1.397zM5.119 1.62l.985.171A1 1 0 0 0 4.707.707zm9.091 8.277A7 7 0 0 1 13 10v2q.794-.001 1.553-.134zM13 10a7 7 0 0 1-7-7H4a9 9 0 0 0 9 9zM6 3q.001-.62.104-1.21l-1.97-.343A9 9 0 0 0 4 3zM2 8a6 6 0 0 1 3.53-5.47L4.708.707A8 8 0 0 0 0 8zm6 6a6 6 0 0 1-6-6H0a8 8 0 0 0 8 8zm5.47-3.53A6 6 0 0 1 8 14v2a8 8 0 0 0 7.293-4.707z\" class=\"icon-dark\"/>"
|
|
1561
1567
|
}
|
|
1562
1568
|
}, ["16"], "shape-moon-crescent"))
|
|
1563
1569
|
|
|
@@ -1566,10 +1572,10 @@ export const IconShapeStar: React.FC<
|
|
|
1566
1572
|
Omit<iconsRegistry.IconShapeStarProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1567
1573
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1568
1574
|
"16": {
|
|
1569
|
-
"body": "<path fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m8 1.345 2.345 4.027 4.555.986-3.105 3.475.47 4.636L8 12.59l-4.264 1.88.47-4.637L1.1 6.358l4.555-.
|
|
1575
|
+
"body": "<path fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m8 1.345 2.345 4.027 4.555.986-3.105 3.475.47 4.636L8 12.59l-4.264 1.88.47-4.637L1.1 6.358l4.555-.986z\" class=\"icon-dark-stroke icon-light-fill\"/>"
|
|
1570
1576
|
},
|
|
1571
1577
|
"24": {
|
|
1572
|
-
"body": "<path fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m12 2 3.569 6.128 6.93 1.5-4.724 5.288.714 7.056L12 19.112l-6.49 2.86.715-7.056L1.5 9.628l6.93-1.
|
|
1578
|
+
"body": "<path fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m12 2 3.569 6.128 6.93 1.5-4.724 5.288.714 7.056L12 19.112l-6.49 2.86.715-7.056L1.5 9.628l6.93-1.5z\" class=\"icon-dark-stroke icon-light-fill\"/>"
|
|
1573
1579
|
}
|
|
1574
1580
|
}, ["16","24"], "shape-star"))
|
|
1575
1581
|
|
|
@@ -1578,7 +1584,7 @@ export const IconShapeSunLong: React.FC<
|
|
|
1578
1584
|
Omit<iconsRegistry.IconShapeSunLongProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1579
1585
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1580
1586
|
"16": {
|
|
1581
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M11 8a3 3 0 1 1-6 0 3 3 0 0 1 6
|
|
1587
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0\" class=\"icon-light\"/><path fill=\"currentColor\" d=\"M3.757 2.343a1 1 0 1 0-1.414 1.414zm9.9 1.414a1 1 0 0 0-1.414-1.414zm-1.414 9.9a1 1 0 0 0 1.414-1.414zm-9.9-1.414a1 1 0 0 0 1.414 1.414zM9 1a1 1 0 0 0-2 0zm6 8a1 1 0 1 0 0-2zm-8 6a1 1 0 1 0 2 0zM1 7a1 1 0 0 0 0 2zm1.343-3.243 1.414 1.415 1.415-1.415-1.415-1.414zm9.9-1.414-1.415 1.414 1.415 1.415 1.414-1.415zm-1.415 9.9 1.415 1.414 1.414-1.414-1.414-1.415zm-7.07-1.415-1.415 1.415 1.414 1.414 1.415-1.414zM9 3V1H7v2zm4 6h2V7h-2zm-6 4v2h2v-2zM3 7H1v2h2zm7 1a2 2 0 0 1-2 2v2a4 4 0 0 0 4-4zm-2 2a2 2 0 0 1-2-2H4a4 4 0 0 0 4 4zM6 8a2 2 0 0 1 2-2V4a4 4 0 0 0-4 4zm2-2a2 2 0 0 1 2 2h2a4 4 0 0 0-4-4z\" class=\"icon-dark\"/>"
|
|
1582
1588
|
}
|
|
1583
1589
|
}, ["16"], "shape-sun-long"))
|
|
1584
1590
|
|
|
@@ -1587,7 +1593,7 @@ export const IconSocialDiscordSolid: React.FC<
|
|
|
1587
1593
|
Omit<iconsRegistry.IconSocialDiscordSolidProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1588
1594
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1589
1595
|
"16": {
|
|
1590
|
-
"body": "<path fill=\"currentColor\" d=\"M13.545 3.069a13.
|
|
1596
|
+
"body": "<path fill=\"currentColor\" d=\"M13.545 3.069a13.5 13.5 0 0 0-3.257-.978.05.05 0 0 0-.052.024c-.141.242-.297.558-.406.806a12.6 12.6 0 0 0-3.658 0 8 8 0 0 0-.412-.806.05.05 0 0 0-.052-.024c-1.143.19-2.236.524-3.257.978a.05.05 0 0 0-.021.017c-2.074 3-2.643 5.927-2.364 8.818q.003.022.02.036a13.4 13.4 0 0 0 3.996 1.955.05.05 0 0 0 .056-.018q.463-.61.818-1.287a.048.048 0 0 0-.028-.068 9 9 0 0 1-1.248-.576.05.05 0 0 1-.005-.082 7 7 0 0 0 .248-.189.05.05 0 0 1 .051-.006c2.619 1.157 5.454 1.157 8.041 0a.05.05 0 0 1 .053.006q.121.097.248.189a.05.05 0 0 1-.004.082 8.3 8.3 0 0 1-1.249.575.05.05 0 0 0-.027.07c.24.45.515.879.817 1.286a.05.05 0 0 0 .056.018 13.4 13.4 0 0 0 4.001-1.955.05.05 0 0 0 .021-.036c.334-3.341-.559-6.244-2.365-8.817a.04.04 0 0 0-.021-.018m-8.198 7.075c-.789 0-1.438-.701-1.438-1.562 0-.86.637-1.56 1.438-1.56.807 0 1.45.706 1.438 1.56 0 .861-.637 1.562-1.438 1.562m5.316 0c-.788 0-1.438-.701-1.438-1.562 0-.86.637-1.56 1.438-1.56.807 0 1.45.706 1.438 1.56 0 .861-.63 1.562-1.438 1.562\" class=\"icon-dark\"/>"
|
|
1591
1597
|
}
|
|
1592
1598
|
}, ["16"], "social-discord-solid"))
|
|
1593
1599
|
|
|
@@ -1596,7 +1602,7 @@ export const IconSocialEmail: React.FC<
|
|
|
1596
1602
|
Omit<iconsRegistry.IconSocialEmailProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1597
1603
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1598
1604
|
"16": {
|
|
1599
|
-
"body": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M11 5.25V8.5a2 2 0 0 0 3.92.
|
|
1605
|
+
"body": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M11 5.25V8.5a2 2 0 0 0 3.92.562Q15 8.542 15 8a7 7 0 1 0-3 5.745M10.5 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z\" class=\"icon-dark\"/>"
|
|
1600
1606
|
}
|
|
1601
1607
|
}, ["16"], "social-email"))
|
|
1602
1608
|
|
|
@@ -1605,7 +1611,7 @@ export const IconSocialFacebookSolid: React.FC<
|
|
|
1605
1611
|
Omit<iconsRegistry.IconSocialFacebookSolidProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1606
1612
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1607
1613
|
"16": {
|
|
1608
|
-
"body": "<path fill=\"currentColor\" d=\"M16 8a8 8 0 1 0-9.25 7.903v-5.59H4.719V8H6.75V6.237c0-2.005 1.194-3.112 3.022-3.112.875 0 1.79.156 1.79.156V5.25h-1.008c-.994 0-1.304.617-1.304 1.25V8h2.219l-.355 2.313H9.25v5.59A8
|
|
1614
|
+
"body": "<path fill=\"currentColor\" d=\"M16 8a8 8 0 1 0-9.25 7.903v-5.59H4.719V8H6.75V6.237c0-2.005 1.194-3.112 3.022-3.112.875 0 1.79.156 1.79.156V5.25h-1.008c-.994 0-1.304.617-1.304 1.25V8h2.219l-.355 2.313H9.25v5.59A8 8 0 0 0 16 8\" class=\"icon-dark\"/>"
|
|
1609
1615
|
}
|
|
1610
1616
|
}, ["16"], "social-facebook-solid"))
|
|
1611
1617
|
|
|
@@ -1614,7 +1620,7 @@ export const IconSocialGithubSolid: React.FC<
|
|
|
1614
1620
|
Omit<iconsRegistry.IconSocialGithubSolidProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1615
1621
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1616
1622
|
"16": {
|
|
1617
|
-
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M8 1.002a7 7 0 0 0-2.213 13.642c.35.065.479-.152.479-.337 0-.167-.007-.719-.01-1.303-1.948.424-2.358-.826-2.358-.826-.319-.81-.778-1.025-.778-1.025-.635-.434.049-.425.049-.425.703.05 1.073.721 1.073.721.624 1.07 1.638.76 2.037.582.063-.453.244-.762.444-.937-1.555-.176-3.19-.776-3.19-3.459 0-.764.275-1.389.722-1.878-.073-.177-.313-.889.067-1.853 0 0 .588-.188 1.926.718a6.
|
|
1623
|
+
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M8 1.002a7 7 0 0 0-2.213 13.642c.35.065.479-.152.479-.337 0-.167-.007-.719-.01-1.303-1.948.424-2.358-.826-2.358-.826-.319-.81-.778-1.025-.778-1.025-.635-.434.049-.425.049-.425.703.05 1.073.721 1.073.721.624 1.07 1.638.76 2.037.582.063-.453.244-.762.444-.937-1.555-.176-3.19-.776-3.19-3.459 0-.764.275-1.389.722-1.878-.073-.177-.313-.889.067-1.853 0 0 .588-.188 1.926.718a6.7 6.7 0 0 1 1.751-.236c.595.003 1.195.08 1.754.236 1.336-.905 1.923-.718 1.923-.718.38.965.142 1.677.07 1.853.448.49.72 1.114.72 1.878 0 2.689-1.639 3.28-3.197 3.453.251.217.476.643.476 1.296 0 .936-.008 1.69-.008 1.92 0 .187.126.405.48.337A7 7 0 0 0 8 1z\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
1618
1624
|
}
|
|
1619
1625
|
}, ["16"], "social-github-solid"))
|
|
1620
1626
|
|
|
@@ -1623,7 +1629,7 @@ export const IconSocialLinkedinSolid: React.FC<
|
|
|
1623
1629
|
Omit<iconsRegistry.IconSocialLinkedinSolidProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1624
1630
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1625
1631
|
"16": {
|
|
1626
|
-
"body": "<path fill=\"currentColor\" d=\"M16 1.176v13.647A1.176 1.176 0 0 1 14.823 16H1.176A1.176 1.176 0 0 1 0 14.823V1.176A1.176 1.176 0 0 1 1.176 0h13.647A1.176 1.176 0 0 1 16 1.
|
|
1632
|
+
"body": "<path fill=\"currentColor\" d=\"M16 1.176v13.647A1.176 1.176 0 0 1 14.823 16H1.176A1.176 1.176 0 0 1 0 14.823V1.176A1.176 1.176 0 0 1 1.176 0h13.647A1.176 1.176 0 0 1 16 1.176M4.706 6.118H2.353v7.53h2.353zm.212-2.589a1.355 1.355 0 0 0-1.346-1.364h-.043a1.365 1.365 0 1 0 0 2.73 1.355 1.355 0 0 0 1.389-1.323zm8.73 5.544c0-2.264-1.44-3.144-2.871-3.144a2.68 2.68 0 0 0-2.382 1.215H8.33V6.118H6.118v7.53H8.47V9.641a1.56 1.56 0 0 1 1.411-1.684h.09c.748 0 1.303.47 1.303 1.656v4.033h2.353z\" class=\"icon-dark\"/>"
|
|
1627
1633
|
}
|
|
1628
1634
|
}, ["16"], "social-linkedin-solid"))
|
|
1629
1635
|
|
|
@@ -1632,7 +1638,7 @@ export const IconSocialTwitterSolid: React.FC<
|
|
|
1632
1638
|
Omit<iconsRegistry.IconSocialTwitterSolidProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1633
1639
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1634
1640
|
"16": {
|
|
1635
|
-
"body": "<path fill=\"currentColor\" d=\"M14.355 4.741c.01.142.01.284.01.427 0 4.335-3.299 9.33-9.33 9.33A9.
|
|
1641
|
+
"body": "<path fill=\"currentColor\" d=\"M14.355 4.741c.01.142.01.284.01.427 0 4.335-3.299 9.33-9.33 9.33A9.27 9.27 0 0 1 0 13.024c.264.03.518.041.792.041a6.57 6.57 0 0 0 4.07-1.401 3.285 3.285 0 0 1-3.065-2.274c.203.03.406.05.62.05.294 0 .588-.04.862-.111A3.28 3.28 0 0 1 .65 6.112v-.04c.437.243.945.395 1.483.415A3.28 3.28 0 0 1 .67 3.757c0-.61.162-1.168.447-1.655a9.32 9.32 0 0 0 6.761 3.431 3.7 3.7 0 0 1-.081-.751 3.28 3.28 0 0 1 3.28-3.28c.943 0 1.796.397 2.395 1.036a6.5 6.5 0 0 0 2.081-.792 3.27 3.27 0 0 1-1.441 1.807c.66-.07 1.3-.253 1.888-.507a7 7 0 0 1-1.645 1.695\" class=\"icon-dark\"/>"
|
|
1636
1642
|
}
|
|
1637
1643
|
}, ["16"], "social-twitter-solid"))
|
|
1638
1644
|
|
|
@@ -1641,7 +1647,7 @@ export const IconSocialYoutubeSolid: React.FC<
|
|
|
1641
1647
|
Omit<iconsRegistry.IconSocialYoutubeSolidProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1642
1648
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1643
1649
|
"16": {
|
|
1644
|
-
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M14.25 2.575c.69.184 1.231.725 1.415 1.414C16 5.237 16 7.84 16 7.84s0 2.604-.335 3.852a2
|
|
1650
|
+
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M14.25 2.575c.69.184 1.231.725 1.415 1.414C16 5.237 16 7.84 16 7.84s0 2.604-.335 3.852a2 2 0 0 1-1.414 1.414c-1.247.335-6.251.335-6.251.335s-5.004 0-6.25-.335a2 2 0 0 1-1.415-1.414C0 10.444 0 7.84 0 7.84s0-2.603.335-3.85a2 2 0 0 1 1.414-1.415C2.996 2.24 8 2.24 8 2.24s5.004 0 6.25.335M10.556 7.84l-4.157 2.4v-4.8z\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
1645
1651
|
}
|
|
1646
1652
|
}, ["16"], "social-youtube-solid"))
|
|
1647
1653
|
|
|
@@ -1677,10 +1683,10 @@ export const IconStatusCancelledSolid: React.FC<
|
|
|
1677
1683
|
"body": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M2 6h8\" class=\"icon-dark\"/>"
|
|
1678
1684
|
},
|
|
1679
1685
|
"16": {
|
|
1680
|
-
"body": "<path fill=\"#AFB3C7\" fill-rule=\"evenodd\" d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1
|
|
1686
|
+
"body": "<path fill=\"#AFB3C7\" fill-rule=\"evenodd\" d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m4-1a1 1 0 0 0 0 2h6a1 1 0 1 0 0-2z\" clip-rule=\"evenodd\"/>"
|
|
1681
1687
|
},
|
|
1682
1688
|
"24": {
|
|
1683
|
-
"body": "<path fill=\"#AFB3C7\" fill-rule=\"evenodd\" d=\"M2 12c0 5.523 4.477 10 10 10s10-4.477 10-10S17.523 2 12 2 2 6.477 2
|
|
1689
|
+
"body": "<path fill=\"#AFB3C7\" fill-rule=\"evenodd\" d=\"M2 12c0 5.523 4.477 10 10 10s10-4.477 10-10S17.523 2 12 2 2 6.477 2 12m6-1a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2z\" clip-rule=\"evenodd\"/>"
|
|
1684
1690
|
}
|
|
1685
1691
|
}, ["12","16","24"], "status-cancelled-solid"))
|
|
1686
1692
|
|
|
@@ -1689,10 +1695,10 @@ export const IconStatusErroredOutline: React.FC<
|
|
|
1689
1695
|
Omit<iconsRegistry.IconStatusErroredOutlineProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1690
1696
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1691
1697
|
"16": {
|
|
1692
|
-
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M2 8a6 6 0 1 1 12 0A6 6 0 0 1 2
|
|
1698
|
+
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M2 8a6 6 0 1 1 12 0A6 6 0 0 1 2 8m6-8a8 8 0 1 0 0 16A8 8 0 0 0 8 0m1 5a1 1 0 0 0-2 0v3a1 1 0 0 0 2 0zm-1 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
1693
1699
|
},
|
|
1694
1700
|
"24": {
|
|
1695
|
-
"body": "<circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"icon-dark\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M12 7a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0V8a1 1 0 0 1 1-
|
|
1701
|
+
"body": "<circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"icon-dark\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M12 7a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1\" class=\"icon-dark\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" d=\"M13 16a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" class=\"icon-dark\"/>"
|
|
1696
1702
|
}
|
|
1697
1703
|
}, ["16","24"], "status-errored-outline"))
|
|
1698
1704
|
|
|
@@ -1704,7 +1710,7 @@ export const IconStatusErroredSimple: React.FC<
|
|
|
1704
1710
|
"body": "<circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"currentColor\" class=\"icon-dark\"/>"
|
|
1705
1711
|
},
|
|
1706
1712
|
"8": {
|
|
1707
|
-
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M4 0a1 1 0 0 1 1 1v3a1 1 0 0 1-2 0V1a1 1 0 0 1 1-
|
|
1713
|
+
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M4 0a1 1 0 0 1 1 1v3a1 1 0 0 1-2 0V1a1 1 0 0 1 1-1\" class=\"icon-dark\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" d=\"M5 7a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" class=\"icon-dark\"/>"
|
|
1708
1714
|
}
|
|
1709
1715
|
}, ["4","8"], "status-errored-simple"))
|
|
1710
1716
|
|
|
@@ -1713,13 +1719,13 @@ export const IconStatusErroredSolid: React.FC<
|
|
|
1713
1719
|
Omit<iconsRegistry.IconStatusErroredSolidProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1714
1720
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1715
1721
|
"12": {
|
|
1716
|
-
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M6 1a1 1 0 0 1 1 1v5a1 1 0 0 1-2 0V2a1 1 0 0 1 1-
|
|
1722
|
+
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M6 1a1 1 0 0 1 1 1v5a1 1 0 0 1-2 0V2a1 1 0 0 1 1-1\" class=\"icon-dark\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" d=\"M7 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" class=\"icon-dark\"/>"
|
|
1717
1723
|
},
|
|
1718
1724
|
"16": {
|
|
1719
|
-
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0
|
|
1725
|
+
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14M9 5a1 1 0 0 0-2 0v3a1 1 0 0 0 2 0zm-1 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
1720
1726
|
},
|
|
1721
1727
|
"24": {
|
|
1722
|
-
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10
|
|
1728
|
+
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10m1-14a1 1 0 1 0-2 0v5a1 1 0 1 0 2 0zm-1 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
1723
1729
|
}
|
|
1724
1730
|
}, ["12","16","24"], "status-errored-solid"))
|
|
1725
1731
|
|
|
@@ -1728,10 +1734,10 @@ export const IconStatusFailedOutline: React.FC<
|
|
|
1728
1734
|
Omit<iconsRegistry.IconStatusFailedOutlineProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1729
1735
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1730
1736
|
"16": {
|
|
1731
|
-
"body": "<path fill=\"currentColor\" d=\"M6.707 5.293a1 1 0 0 0-1.414 1.
|
|
1737
|
+
"body": "<path fill=\"currentColor\" d=\"M6.707 5.293a1 1 0 0 0-1.414 1.414zm2.586 5.414a1 1 0 0 0 1.414-1.414zm1.414-4a1 1 0 0 0-1.414-1.414zM5.293 9.293a1 1 0 0 0 1.414 1.414zM13 8a5 5 0 0 1-5 5v2a7 7 0 0 0 7-7zm-5 5a5 5 0 0 1-5-5H1a7 7 0 0 0 7 7zM3 8a5 5 0 0 1 5-5V1a7 7 0 0 0-7 7zm5-5a5 5 0 0 1 5 5h2a7 7 0 0 0-7-7zM5.293 6.707l2 2 1.414-1.414-2-2zm2 2 2 2 1.414-1.414-2-2zm2-3.414-2 2 1.414 1.414 2-2zm-2 2-2 2 1.414 1.414 2-2z\" class=\"icon-dark\"/>"
|
|
1732
1738
|
},
|
|
1733
1739
|
"24": {
|
|
1734
|
-
"body": "<path fill=\"currentColor\" d=\"M9.707 8.293a1 1 0 0 0-1.414 1.
|
|
1740
|
+
"body": "<path fill=\"currentColor\" d=\"M9.707 8.293a1 1 0 0 0-1.414 1.414zm4.586 7.414a1 1 0 0 0 1.414-1.414zm1.414-6a1 1 0 0 0-1.414-1.414zm-7.414 4.586a1 1 0 1 0 1.414 1.414zm0-4.586 3 3 1.414-1.414-3-3zm3 3 3 3 1.414-1.414-3-3zm3-4.414-3 3 1.414 1.414 3-3zm-3 3-3 3 1.414 1.414 3-3zM20 12a8 8 0 0 1-8 8v2c5.523 0 10-4.477 10-10zm-8 8a8 8 0 0 1-8-8H2c0 5.523 4.477 10 10 10zm-8-8a8 8 0 0 1 8-8V2C6.477 2 2 6.477 2 12zm8-8a8 8 0 0 1 8 8h2c0-5.523-4.477-10-10-10z\" class=\"icon-dark\"/>"
|
|
1735
1741
|
}
|
|
1736
1742
|
}, ["16","24"], "status-failed-outline"))
|
|
1737
1743
|
|
|
@@ -1743,16 +1749,16 @@ export const IconStatusFailedSimple: React.FC<
|
|
|
1743
1749
|
"body": "<circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"currentColor\" class=\"icon-dark\"/>"
|
|
1744
1750
|
},
|
|
1745
1751
|
"8": {
|
|
1746
|
-
"body": "<path fill=\"currentColor\" d=\"M2.707 1.293a1 1 0 0 0-1.414 1.
|
|
1752
|
+
"body": "<path fill=\"currentColor\" d=\"M2.707 1.293a1 1 0 0 0-1.414 1.414zm2.586 5.414a1 1 0 0 0 1.414-1.414zm1.414-4a1 1 0 0 0-1.414-1.414zM1.293 5.293a1 1 0 0 0 1.414 1.414zm0-2.586 4 4 1.414-1.414-4-4zm4-1.414-4 4 1.414 1.414 4-4z\" class=\"icon-dark\"/>"
|
|
1747
1753
|
},
|
|
1748
1754
|
"12": {
|
|
1749
|
-
"body": "<path fill=\"currentColor\" d=\"M3.707 2.293a1 1 0 0 0-1.414 1.
|
|
1755
|
+
"body": "<path fill=\"currentColor\" d=\"M3.707 2.293a1 1 0 0 0-1.414 1.414zm4.586 7.414a1 1 0 0 0 1.414-1.414zm1.414-6a1 1 0 0 0-1.414-1.414zM2.293 8.293a1 1 0 0 0 1.414 1.414zm0-4.586 6 6 1.414-1.414-6-6zm6-1.414-6 6 1.414 1.414 6-6z\" class=\"icon-dark\"/>"
|
|
1750
1756
|
},
|
|
1751
1757
|
"16": {
|
|
1752
|
-
"body": "<path fill=\"currentColor\" d=\"M4.707 3.293a1 1 0 0 0-1.414 1.
|
|
1758
|
+
"body": "<path fill=\"currentColor\" d=\"M4.707 3.293a1 1 0 0 0-1.414 1.414zm6.586 9.414a1 1 0 0 0 1.414-1.414zm1.414-8a1 1 0 0 0-1.414-1.414zm-9.414 6.586a1 1 0 1 0 1.414 1.414zm0-6.586 4 4 1.414-1.414-4-4zm4 4 4 4 1.414-1.414-4-4zm4-5.414-4 4 1.414 1.414 4-4zm-4 4-4 4 1.414 1.414 4-4z\" class=\"icon-dark\"/>"
|
|
1753
1759
|
},
|
|
1754
1760
|
"24": {
|
|
1755
|
-
"body": "<path fill=\"currentColor\" d=\"M6.707 5.293a1 1 0 0 0-1.414 1.
|
|
1761
|
+
"body": "<path fill=\"currentColor\" d=\"M6.707 5.293a1 1 0 0 0-1.414 1.414zm10.586 13.414a1 1 0 0 0 1.414-1.414zm1.414-12a1 1 0 0 0-1.414-1.414zM5.293 17.293a1 1 0 1 0 1.414 1.414zm0-10.586 6 6 1.414-1.414-6-6zm6 6 6 6 1.414-1.414-6-6zm6-7.414-6 6 1.414 1.414 6-6zm-6 6-6 6 1.414 1.414 6-6z\" class=\"icon-dark\"/>"
|
|
1756
1762
|
}
|
|
1757
1763
|
}, ["4","8","12","16","24"], "status-failed-simple"))
|
|
1758
1764
|
|
|
@@ -1761,10 +1767,10 @@ export const IconStatusFailedSolid: React.FC<
|
|
|
1761
1767
|
Omit<iconsRegistry.IconStatusFailedSolidProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1762
1768
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1763
1769
|
"16": {
|
|
1764
|
-
"body": "<circle cx=\"8\" cy=\"8\" r=\"7\" fill=\"currentColor\" class=\"icon-dark\"/><path fill=\"#fff\" d=\"M6.707 5.293a1 1 0 0 0-1.414 1.
|
|
1770
|
+
"body": "<circle cx=\"8\" cy=\"8\" r=\"7\" fill=\"currentColor\" class=\"icon-dark\"/><path fill=\"#fff\" d=\"M6.707 5.293a1 1 0 0 0-1.414 1.414zm2.586 5.414a1 1 0 0 0 1.414-1.414zm1.414-4a1 1 0 0 0-1.414-1.414zM5.293 9.293a1 1 0 0 0 1.414 1.414zm0-2.586 4 4 1.414-1.414-4-4zm4-1.414-4 4 1.414 1.414 4-4z\"/>"
|
|
1765
1771
|
},
|
|
1766
1772
|
"24": {
|
|
1767
|
-
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10
|
|
1773
|
+
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10M9.707 8.293a1 1 0 0 0-1.414 1.414L10.586 12l-2.293 2.293a1 1 0 1 0 1.414 1.414L12 13.414l2.293 2.293a1 1 0 0 0 1.414-1.414L13.414 12l2.293-2.293a1 1 0 0 0-1.414-1.414L12 10.586z\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
1768
1774
|
}
|
|
1769
1775
|
}, ["16","24"], "status-failed-solid"))
|
|
1770
1776
|
|
|
@@ -1773,10 +1779,10 @@ export const IconStatusFailingOutline: React.FC<
|
|
|
1773
1779
|
Omit<iconsRegistry.IconStatusFailingOutlineProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1774
1780
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1775
1781
|
"16": {
|
|
1776
|
-
"body": "<path fill=\"currentColor\" d=\"M6.707 5.293a1 1 0 0 0-1.414 1.
|
|
1782
|
+
"body": "<path fill=\"currentColor\" d=\"M6.707 5.293a1 1 0 0 0-1.414 1.414zm2.586 5.414a1 1 0 0 0 1.414-1.414zm1.414-4a1 1 0 0 0-1.414-1.414zM5.293 9.293a1 1 0 0 0 1.414 1.414zm0-2.586 4 4 1.414-1.414-4-4zm4-1.414-4 4 1.414 1.414 4-4z\" class=\"icon-dark\"/><circle cx=\"8\" cy=\"8\" r=\"6\" stroke=\"#E1E3ED\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"icon-light\"/><circle cx=\"8\" cy=\"8\" r=\"6\" stroke=\"currentColor\" stroke-dasharray=\"10 28\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"icon-dark\"><animate attributeName=\"stroke-dashoffset\" dur=\"1s\" repeatCount=\"indefinite\" values=\"36.6;0\"/></circle>"
|
|
1777
1783
|
},
|
|
1778
1784
|
"24": {
|
|
1779
|
-
"body": "<path fill=\"currentColor\" d=\"M9.707 8.293a1 1 0 0 0-1.414 1.
|
|
1785
|
+
"body": "<path fill=\"currentColor\" d=\"M9.707 8.293a1 1 0 0 0-1.414 1.414zm4.586 7.414a1 1 0 0 0 1.414-1.414zm1.414-6a1 1 0 0 0-1.414-1.414zm-7.414 4.586a1 1 0 1 0 1.414 1.414zm0-4.586 3 3 1.414-1.414-3-3zm3 3 3 3 1.414-1.414-3-3zm3-4.414-3 3 1.414 1.414 3-3zm-3 3-3 3 1.414 1.414 3-3zM20 12\" class=\"icon-dark\"/><circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"#E1E3ED\" stroke-width=\"2\" class=\"icon-light\"/><circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" stroke-dasharray=\"15 42\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"icon-dark\"><animate attributeName=\"stroke-dashoffset\" dur=\"1s\" repeatCount=\"indefinite\" values=\"57;0\"/></circle>"
|
|
1780
1786
|
}
|
|
1781
1787
|
}, ["16","24"], "status-failing-outline"))
|
|
1782
1788
|
|
|
@@ -1785,10 +1791,10 @@ export const IconStatusFlaky: React.FC<
|
|
|
1785
1791
|
Omit<iconsRegistry.IconStatusFlakyProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1786
1792
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1787
1793
|
"16": {
|
|
1788
|
-
"body": "<path fill=\"#F5F4D7\" d=\"M1 12V4a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H4a3 3 0 0 1-3-
|
|
1794
|
+
"body": "<path fill=\"#F5F4D7\" d=\"M1 12V4a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3\" class=\"icon-light\"/><path stroke=\"#963F00\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9.5 5h-3v3.5m0 2.5V8.5m0 0h2\" class=\"icon-dark\"/>"
|
|
1789
1795
|
},
|
|
1790
1796
|
"24": {
|
|
1791
|
-
"body": "<path fill=\"#F5F4D7\" d=\"M2 18V6a4 4 0 0 1 4-4h12a4 4 0 0 1 4 4v12a4 4 0 0 1-4 4H6a4 4 0 0 1-4-
|
|
1797
|
+
"body": "<path fill=\"#F5F4D7\" d=\"M2 18V6a4 4 0 0 1 4-4h12a4 4 0 0 1 4 4v12a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4\" class=\"icon-light\"/><path stroke=\"#963F00\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M14 8h-4v4.5m0 3.5v-3.5m0 0h3\" class=\"icon-dark\"/>"
|
|
1792
1798
|
}
|
|
1793
1799
|
}, ["16","24"], "status-flaky"))
|
|
1794
1800
|
|
|
@@ -1800,7 +1806,7 @@ export const IconStatusPassedOutline: React.FC<
|
|
|
1800
1806
|
"body": "<circle cx=\"8\" cy=\"8\" r=\"6\" stroke=\"currentColor\" stroke-width=\"2\" class=\"icon-dark\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m10 6-2.5 4L6 8.5\" class=\"icon-dark\"/>"
|
|
1801
1807
|
},
|
|
1802
1808
|
"24": {
|
|
1803
|
-
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M4 12a8 8 0 1 1 16 0 8 8 0 0 1-16
|
|
1809
|
+
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0m8-10C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2m3.864 7.504a1 1 0 0 0-1.728-1.008l-2.846 4.88-1.583-1.583a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.57-.203z\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
1804
1810
|
}
|
|
1805
1811
|
}, ["16","24"], "status-passed-outline"))
|
|
1806
1812
|
|
|
@@ -1821,7 +1827,7 @@ export const IconStatusPassedSimple: React.FC<
|
|
|
1821
1827
|
"body": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 8.667 7.333 12 12 4\" class=\"icon-dark\"/>"
|
|
1822
1828
|
},
|
|
1823
1829
|
"24": {
|
|
1824
|
-
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M15.504 8.136a1 1 0 0 1 .36 1.368l-3.5 6a1 1 0 0 1-1.571.203l-2.5-2.5a1 1 0 1 1 1.414-1.414l1.583 1.583 2.846-4.88a1 1 0 0 1 1.368-.
|
|
1830
|
+
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M15.504 8.136a1 1 0 0 1 .36 1.368l-3.5 6a1 1 0 0 1-1.571.203l-2.5-2.5a1 1 0 1 1 1.414-1.414l1.583 1.583 2.846-4.88a1 1 0 0 1 1.368-.36\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
1825
1831
|
}
|
|
1826
1832
|
}, ["4","8","12","16","24"], "status-passed-simple"))
|
|
1827
1833
|
|
|
@@ -1833,7 +1839,7 @@ export const IconStatusPassedSolid: React.FC<
|
|
|
1833
1839
|
"body": "<circle cx=\"8\" cy=\"8\" r=\"7\" fill=\"currentColor\" class=\"icon-dark\"/><path stroke=\"#fff\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m10 6-2.5 4L6 8.5\"/>"
|
|
1834
1840
|
},
|
|
1835
1841
|
"24": {
|
|
1836
|
-
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10
|
|
1842
|
+
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10m3.864-12.496a1 1 0 0 0-1.728-1.008l-2.846 4.88-1.583-1.583a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.57-.203z\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
1837
1843
|
}
|
|
1838
1844
|
}, ["16","24"], "status-passed-solid"))
|
|
1839
1845
|
|
|
@@ -1973,11 +1979,20 @@ export const IconStatusSkippedSimple: React.FC<
|
|
|
1973
1979
|
}, ["4","8"], "status-skipped-simple"))
|
|
1974
1980
|
|
|
1975
1981
|
|
|
1982
|
+
export const IconTechnologyAccessibility: React.FC<
|
|
1983
|
+
Omit<iconsRegistry.IconTechnologyAccessibilityProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1984
|
+
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1985
|
+
"24": {
|
|
1986
|
+
"body": "<path fill=\"#E1E3ED\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"m12 10.999 4-1m-4 1-4-1m4 1v3m0 0-3 4m3-4 3 4m8-6c0 6.075-4.925 11-11 11s-11-4.925-11-11 4.925-11 11-11 11 4.925 11 11Zm-11-4a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" class=\"icon-dark-stroke icon-light-fill\"/>"
|
|
1987
|
+
}
|
|
1988
|
+
}, ["24"], "technology-accessibility"))
|
|
1989
|
+
|
|
1990
|
+
|
|
1976
1991
|
export const IconTechnologyBranchHTall: React.FC<
|
|
1977
1992
|
Omit<iconsRegistry.IconTechnologyBranchHTallProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1978
1993
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1979
1994
|
"16": {
|
|
1980
|
-
"body": "<path fill=\"currentColor\" d=\"M3 13h3v-
|
|
1995
|
+
"body": "<path fill=\"currentColor\" d=\"M3 13h3v-2H3zm3 0h7v-2H6zm4.386-8H13V3h-2.614zm-3.45 7.351L9.45 5.65l-1.873-.702-2.513 6.702zM14 4v2a2 2 0 0 0 2-2zm0 0h-2a2 2 0 0 0 2 2zm0 0V2a2 2 0 0 0-2 2zm0 0h2a2 2 0 0 0-2-2zm0 8v2a2 2 0 0 0 2-2zm0 0h-2a2 2 0 0 0 2 2zm0 0v-2a2 2 0 0 0-2 2zm0 0h2a2 2 0 0 0-2-2zM2 12v2a2 2 0 0 0 2-2zm0 0H0a2 2 0 0 0 2 2zm0 0v-2a2 2 0 0 0-2 2zm0 0h2a2 2 0 0 0-2-2zm8.386-9a3 3 0 0 0-2.809 1.947l1.873.702A1 1 0 0 1 10.386 5z\" class=\"icon-dark\"/>"
|
|
1981
1996
|
}
|
|
1982
1997
|
}, ["16"], "technology-branch-h-tall"))
|
|
1983
1998
|
|
|
@@ -1986,7 +2001,7 @@ export const IconTechnologyBranchH: React.FC<
|
|
|
1986
2001
|
Omit<iconsRegistry.IconTechnologyBranchHProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1987
2002
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1988
2003
|
"16": {
|
|
1989
|
-
"body": "<path fill=\"currentColor\" d=\"M3 12h3v-
|
|
2004
|
+
"body": "<path fill=\"currentColor\" d=\"M3 12h3v-2H3zm3 0h7v-2H6zm4.236-6H13V4h-2.764zm-3.342 5.447 2.448-4.894-1.79-.895-2.446 4.895zM14 5v2a2 2 0 0 0 2-2zm0 0h-2a2 2 0 0 0 2 2zm0 0V3a2 2 0 0 0-2 2zm0 0h2a2 2 0 0 0-2-2zm0 6v2a2 2 0 0 0 2-2zm0 0h-2a2 2 0 0 0 2 2zm0 0V9a2 2 0 0 0-2 2zm0 0h2a2 2 0 0 0-2-2zM2 11v2a2 2 0 0 0 2-2zm0 0H0a2 2 0 0 0 2 2zm0 0V9a2 2 0 0 0-2 2zm0 0h2a2 2 0 0 0-2-2zm8.236-7a3 3 0 0 0-2.683 1.658l1.789.895A1 1 0 0 1 10.236 6z\" class=\"icon-dark\"/>"
|
|
1990
2005
|
}
|
|
1991
2006
|
}, ["16"], "technology-branch-h"))
|
|
1992
2007
|
|
|
@@ -1995,7 +2010,7 @@ export const IconTechnologyBrowserDark: React.FC<
|
|
|
1995
2010
|
Omit<iconsRegistry.IconTechnologyBrowserDarkProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
1996
2011
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
1997
2012
|
"16": {
|
|
1998
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M2 6h12v7a1 1 0 0 1-1 1H3a1 1 0 0 1-1-
|
|
2013
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M2 6h12v7a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1z\" class=\"icon-light\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M3 0a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3zM2 3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v2H2zm12 3H2v7a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1zM3.5 4a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m2 0a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1M8 3.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
1999
2014
|
}
|
|
2000
2015
|
}, ["16"], "technology-browser-dark"))
|
|
2001
2016
|
|
|
@@ -2004,7 +2019,7 @@ export const IconTechnologyBrowserLight: React.FC<
|
|
|
2004
2019
|
Omit<iconsRegistry.IconTechnologyBrowserLightProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2005
2020
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2006
2021
|
"16": {
|
|
2007
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M2 3a1 1 0 0 1 1-1h10a1 1 0 0 1 1
|
|
2022
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M2 3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v2H2z\" class=\"icon-light\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M3 0a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3zM2 3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v2H2zm12 3H2v7a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1zM3.5 4a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m2 0a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1M8 3.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
2008
2023
|
}
|
|
2009
2024
|
}, ["16"], "technology-browser-light"))
|
|
2010
2025
|
|
|
@@ -2013,7 +2028,7 @@ export const IconTechnologyBrowserTesting2: React.FC<
|
|
|
2013
2028
|
Omit<iconsRegistry.IconTechnologyBrowserTesting2Props, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2014
2029
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2015
2030
|
"48": {
|
|
2016
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M40 8H8a3 3 0 0 0-3 3v5h38v-5a3 3 0 0 0-3-
|
|
2031
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M40 8H8a3 3 0 0 0-3 3v5h38v-5a3 3 0 0 0-3-3\" class=\"icon-light\"/><path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M8 8a3 3 0 0 0-3 3v5h38v-5a3 3 0 0 0-3-3z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" d=\"M5 16H4a1 1 0 0 0 1 1zm38 0v1a1 1 0 0 0 1-1zm-24-5a1 1 0 1 0 0 2zm20 2a1 1 0 1 0 0-2zM8 9h32V7H8zm34 2v26h2V11zM6 37V11H4v26zM5 17h38v-2H5zm14-4h20v-2H19zM8 39a2 2 0 0 1-2-2H4a4 4 0 0 0 4 4zm34-2a2 2 0 0 1-2 2v2a4 4 0 0 0 4-4zM40 9a2 2 0 0 1 2 2h2a4 4 0 0 0-4-4zM8 7a4 4 0 0 0-4 4h2a2 2 0 0 1 2-2zm-4 4v5h2v-5zm40 5v-5h-2v5zm-4 23H24v2h16zm-16 0h-8v2h8zm-8 0H8v2h8zM10 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0M13 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0M16 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" class=\"icon-dark\"/><path fill=\"#9AA2FC\" d=\"M15 30h4v4h-4z\" class=\"icon-light-secondary\"/><path fill=\"#4956E3\" d=\"M33 25a1 1 0 1 0 0-2zm-10-2a1 1 0 1 0 0 2zm10 10a1 1 0 1 0 0-2zm-10-2a1 1 0 1 0 0 2zm-8.707-5.707a1 1 0 0 0 1.414 1.414zm5.414-2.586a1 1 0 0 0-1.414-1.414zm-4-1.414a1 1 0 0 0-1.414 1.414zm2.586 5.414a1 1 0 0 0 1.414-1.414zM15 30v-1a1 1 0 0 0-1 1zm4 0h1a1 1 0 0 0-1-1zm0 4v1a1 1 0 0 0 1-1zm-4 0h-1a1 1 0 0 0 1 1zm18-11H23v2h10zm0 8H23v2h10zm-17.293-4.293 2-2-1.414-1.414-2 2zm2-2 2-2-1.414-1.414-2 2zm-3.414-2 2 2 1.414-1.414-2-2zm2 2 2 2 1.414-1.414-2-2zM15 31h4v-2h-4zm3-1v4h2v-4zm1 3h-4v2h4zm-3 1v-4h-2v4z\" class=\"icon-dark-secondary\"/>"
|
|
2017
2032
|
}
|
|
2018
2033
|
}, ["48"], "technology-browser-testing-2"))
|
|
2019
2034
|
|
|
@@ -2022,10 +2037,10 @@ export const IconTechnologyCodeEditor: React.FC<
|
|
|
2022
2037
|
Omit<iconsRegistry.IconTechnologyCodeEditorProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2023
2038
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2024
2039
|
"16": {
|
|
2025
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M15 3a2 2 0 0 0-2-2H3a2 2 0 0 0-2
|
|
2040
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M15 3a2 2 0 0 0-2-2H3a2 2 0 0 0-2 2v1h14z\" class=\"icon-light\"/><path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M15 3a2 2 0 0 0-2-2H3a2 2 0 0 0-2 2v1h14z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M1 4v9a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4M1 4V3a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1M1 4h14m-5 4 1.5 1.5L10 11M6 8 4.5 9.5 6 11\" class=\"icon-dark\"/>"
|
|
2026
2041
|
},
|
|
2027
2042
|
"24": {
|
|
2028
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M21 6a2 2 0 0 0-2-2H5a2 2 0 0 0-2
|
|
2043
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M21 6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2h18z\" class=\"icon-light\"/><path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M21 6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2h18z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M3 8v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8M3 8V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v2M3 8h18m-7 4 2 2-2 2m-4-4-2 1.929 2 1.928\" class=\"icon-dark\"/>"
|
|
2029
2044
|
}
|
|
2030
2045
|
}, ["16","24"], "technology-code-editor"))
|
|
2031
2046
|
|
|
@@ -2034,7 +2049,7 @@ export const IconTechnologyCommandLineError: React.FC<
|
|
|
2034
2049
|
Omit<iconsRegistry.IconTechnologyCommandLineErrorProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2035
2050
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2036
2051
|
"48": {
|
|
2037
|
-
"body": "<rect fill=\"currentColor\"/><path fill=\"#E1E3ED\" d=\"M43 37V16H5v21a3 3 0 0 0 3 3h32a3 3 0 0 0 3-
|
|
2052
|
+
"body": "<rect fill=\"currentColor\"/><path fill=\"#E1E3ED\" d=\"M43 37V16H5v21a3 3 0 0 0 3 3h32a3 3 0 0 0 3-3\" class=\"icon-light\"/><path fill=\"#747994\" d=\"M13 28a1 1 0 1 0 0 2zm-2 3a1 1 0 1 0 0 2zm2-6a1 1 0 1 0 0 2zm-2-3a1 1 0 1 0 0 2zm13 2a1 1 0 1 0 0-2zm-5-3a1 1 0 1 0 0-2zM9 19a1 1 0 1 0 0 2zm14.01 14a1 1 0 1 0 0-2zM29 27a1 1 0 1 0 0-2zM9 34a1 1 0 1 0 0 2zm17-4a1 1 0 1 0 0-2zm-8 6a1 1 0 1 0 0-2zM8 9h32V7H8zm34 2v26h2V11zM6 37V11H4v26zm2 2a2 2 0 0 1-2-2H4a4 4 0 0 0 4 4zm34-2a2 2 0 0 1-2 2v2a4 4 0 0 0 4-4zM40 9a2 2 0 0 1 2 2h2a4 4 0 0 0-4-4zM8 7a4 4 0 0 0-4 4h2a2 2 0 0 1 2-2zm-4 4v5h2v-5zm40 5v-5h-2v5zm0 21V16h-2v21zM4 16v21h2V16zm1 1h38v-2H5zm35 22H8v2h32zm-27-9h4v-2h-4zm3 1h-5v2h5zm0-4h8v-2h-8zm-3 0h2v-2h-2zm-2-3h5v-2h-5zm13-2h-6.99v2H24zm-5-3h-6v2h6zM9 21h3v-2H9zm8 12h6.01v-2H17zm8-6h4v-2h-4zm-7 3h5v-2h-5zm-4 4H9v2h5zm10-4h2v-2h-2zm-9 6h3v-2h-3zM10 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0M13 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0M16 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" class=\"icon-dark\"/><path fill=\"#F8C4CD\" d=\"M34 36.998a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" class=\"icon-light-secondary\"/><path fill=\"#F8C4CD\" fill-rule=\"evenodd\" d=\"M31 31.498a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v1.17a.5.5 0 0 0 .75.432l1.013-.584a.5.5 0 0 1 .683.183l1.5 2.598a.5.5 0 0 1-.183.683l-1.013.585a.5.5 0 0 0 0 .866l1.013.585a.5.5 0 0 1 .183.683l-1.5 2.598a.5.5 0 0 1-.683.183l-1.013-.585a.5.5 0 0 0-.75.433v1.17a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1.17a.5.5 0 0 0-.75-.432l-1.013.584a.5.5 0 0 1-.683-.183l-1.5-2.598a.5.5 0 0 1 .183-.683l1.013-.585a.5.5 0 0 0 0-.866l-1.013-.585a.5.5 0 0 1-.183-.683l1.5-2.598a.5.5 0 0 1 .683-.183l1.013.584a.5.5 0 0 0 .75-.433zm2 6.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" class=\"icon-light-secondary\" clip-rule=\"evenodd\"/><path stroke=\"#C62B49\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M34 36.998a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" class=\"icon-dark-secondary\"/><path stroke=\"#C62B49\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M31 31.498a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v1.17a.5.5 0 0 0 .75.432l1.013-.584a.5.5 0 0 1 .683.183l1.5 2.598a.5.5 0 0 1-.183.683l-1.013.585a.5.5 0 0 0 0 .866l1.013.585a.5.5 0 0 1 .183.683l-1.5 2.598a.5.5 0 0 1-.683.183l-1.013-.585a.5.5 0 0 0-.75.433v1.17a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1.17a.5.5 0 0 0-.75-.432l-1.013.584a.5.5 0 0 1-.683-.183l-1.5-2.598a.5.5 0 0 1 .183-.683l1.013-.585a.5.5 0 0 0 0-.866l-1.013-.585a.5.5 0 0 1-.183-.683l1.5-2.598a.5.5 0 0 1 .683-.183l1.013.584a.5.5 0 0 0 .75-.433zm2 6.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" class=\"icon-dark-secondary\" clip-rule=\"evenodd\"/>"
|
|
2038
2053
|
}
|
|
2039
2054
|
}, ["48"], "technology-command-line-error"))
|
|
2040
2055
|
|
|
@@ -2052,7 +2067,7 @@ export const IconTechnologyCypress: React.FC<
|
|
|
2052
2067
|
Omit<iconsRegistry.IconTechnologyCypressProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2053
2068
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2054
2069
|
"16": {
|
|
2055
|
-
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M7.872 8.854A2.
|
|
2070
|
+
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M7.872 8.854A2.5 2.5 0 0 1 7.1 9.857c-.43.334-.972.533-1.561.533-1.394 0-2.524-1.113-2.524-2.487s1.13-2.487 2.524-2.487a2.54 2.54 0 0 1 1.705.654c.27.243.485.544.627.882l-1.339.464c-.169-.385-.532-.652-.953-.652-.582 0-1.054.51-1.054 1.139s.472 1.139 1.054 1.139c.421 0 .784-.267.953-.652z\" class=\"icon-dark\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M7.872 8.854A2.5 2.5 0 0 1 7.1 9.857c-.43.334-.972.533-1.561.533-1.394 0-2.524-1.113-2.524-2.487s1.13-2.487 2.524-2.487a2.54 2.54 0 0 1 1.705.654c.27.243.485.544.627.882l-1.339.464c-.169-.385-.532-.652-.953-.652-.582 0-1.054.51-1.054 1.139s.472 1.139 1.054 1.139c.421 0 .784-.267.953-.652z\" class=\"icon-dark\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" d=\"M2 8a6 6 0 1 1 9.122 5.125l-.996 2.59A8 8 0 0 0 16 8a8 8 0 1 0-7.64 7.991.93.93 0 0 0 .817-.61l3.807-9.88h-1.459L10.39 8.717 9.23 5.5H7.687l1.93 4.975-1.364 3.519A6.001 6.001 0 0 1 2 8\" class=\"icon-dark\"/>"
|
|
2056
2071
|
}
|
|
2057
2072
|
}, ["16"], "technology-cypress"))
|
|
2058
2073
|
|
|
@@ -2061,7 +2076,7 @@ export const IconTechnologyDashboardCheckmark: React.FC<
|
|
|
2061
2076
|
Omit<iconsRegistry.IconTechnologyDashboardCheckmarkProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2062
2077
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2063
2078
|
"48": {
|
|
2064
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M40 8H8a3 3 0 0 0-3 3v5h38v-5a3 3 0 0 0-3-
|
|
2079
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M40 8H8a3 3 0 0 0-3 3v5h38v-5a3 3 0 0 0-3-3\" class=\"icon-light\"/><path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M8 8a3 3 0 0 0-3 3v5h38v-5a3 3 0 0 0-3-3z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path fill=\"#D0D2E0\" d=\"m19 30-5-2-5 3v5h29a1 1 0 0 0 1-1V23l-5 1-5 3-5-2z\" class=\"icon-light\"/><path fill=\"currentColor\" d=\"M5 16H4a1 1 0 0 0 1 1zm38 0v1a1 1 0 0 0 1-1zm-24-5a1 1 0 1 0 0 2zm20 2a1 1 0 1 0 0-2zM14 28l.371-.928a1 1 0 0 0-.886.07zm5 2-.371.928a1 1 0 0 0 1.078-.22zm5-5 .371-.928a1 1 0 0 0-1.078.22zm5 2-.371.928a1 1 0 0 0 .886-.07zM9 31l-.514-.858A1 1 0 0 0 8 31zm25-7-.196-.98a1 1 0 0 0-.319.122zM9 36H8a1 1 0 0 0 1 1zM8 9h32V7H8zm34 2v26h2V11zM6 37V11H4v26zM5 17h38v-2H5zm14-4h20v-2H19zM8 39a2 2 0 0 1-2-2H4a4 4 0 0 0 4 4zm34-2a2 2 0 0 1-2 2v2a4 4 0 0 0 4-4zM40 9a2 2 0 0 1 2 2h2a4 4 0 0 0-4-4zM8 7a4 4 0 0 0-4 4h2a2 2 0 0 1 2-2zm-4 4v5h2v-5zm40 5v-5h-2v5zm-6 3H10v2h28zm-24.371 9.929 5 2 .742-1.857-5-2zm6.078 1.778 5-5-1.414-1.414-5 5zm3.922-4.779 5 2 .742-1.857-5-2zM40 35V23h-2v12zm0-12v-2h-2v2zm0 16H24v2h16zm-16 0h-8v2h8zm-8 0H8v2h8zm-6.485-7.142 5-3-1.03-1.716-5 3zm20-4 5-3-1.03-1.716-5 3zm4.681-2.877 5-1-.392-1.962-5 1zM38 35H9v2h29zm-28 1V21H8v15zm-2-5v5h2v-5zm30-10h2a2 2 0 0 0-2-2zm0 14v2a2 2 0 0 0 2-2zM10 19a2 2 0 0 0-2 2h2zM10 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0M13 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0M16 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" class=\"icon-dark\"/><path fill=\"#69D3A7\" d=\"M37 37a6 6 0 1 0-12 0 6 6 0 0 0 12 0\"/><path fill=\"#00814D\" d=\"M28.293 38.207a1 1 0 0 1 1.414-1.414zM30.5 39l.814.581a1 1 0 0 1-1.521.126zm1.686-4.081a1 1 0 1 1 1.628 1.162zM36 37a5 5 0 0 0-5-5v-2a7 7 0 0 1 7 7zm-5-5a5 5 0 0 0-5 5h-2a7 7 0 0 1 7-7zm-5 5a5 5 0 0 0 5 5v2a7 7 0 0 1-7-7zm5 5a5 5 0 0 0 5-5h2a7 7 0 0 1-7 7zm-1.293-5.207 1.5 1.5-1.414 1.414-1.5-1.5zm-.02 1.626 2.5-3.5 1.627 1.162-2.5 3.5z\"/>"
|
|
2065
2080
|
}
|
|
2066
2081
|
}, ["48"], "technology-dashboard-checkmark"))
|
|
2067
2082
|
|
|
@@ -2070,7 +2085,7 @@ export const IconTechnologyDashboardFail: React.FC<
|
|
|
2070
2085
|
Omit<iconsRegistry.IconTechnologyDashboardFailProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2071
2086
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2072
2087
|
"48": {
|
|
2073
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M8 8a3 3 0 0 0-3 3v5h38v-5a3 3 0 0 0-3-
|
|
2088
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M8 8a3 3 0 0 0-3 3v5h38v-5a3 3 0 0 0-3-3z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path fill=\"#D0D2E0\" d=\"m19 30-5-2-5 3v5h29a1 1 0 0 0 1-1V23l-5 1-5 3-5-2z\" class=\"icon-light\"/><path fill=\"currentColor\" d=\"M5 16H4a1 1 0 0 0 1 1zm38 0v1a1 1 0 0 0 1-1zm-24-5a1 1 0 1 0 0 2zm20 2a1 1 0 1 0 0-2zM14 28l.371-.928a1 1 0 0 0-.886.07zm5 2-.371.928a1 1 0 0 0 1.078-.22zm5-5 .371-.928a1 1 0 0 0-1.078.22zm5 2-.371.928a1 1 0 0 0 .886-.07zM9 31l-.514-.858A1 1 0 0 0 8 31zm25-7-.196-.98a1 1 0 0 0-.319.122zM9 36H8a1 1 0 0 0 1 1zM8 9h32V7H8zm34 2v26h2V11zM6 37V11H4v26zM5 17h38v-2H5zm14-4h20v-2H19zM8 39a2 2 0 0 1-2-2H4a4 4 0 0 0 4 4zm34-2a2 2 0 0 1-2 2v2a4 4 0 0 0 4-4zM40 9a2 2 0 0 1 2 2h2a4 4 0 0 0-4-4zM8 7a4 4 0 0 0-4 4h2a2 2 0 0 1 2-2zm-4 4v5h2v-5zm40 5v-5h-2v5zm-6 3H10v2h28zm-24.371 9.929 5 2 .742-1.857-5-2zm6.078 1.778 5-5-1.414-1.414-5 5zm3.922-4.779 5 2 .742-1.857-5-2zM40 35V23h-2v12zm0-12v-2h-2v2zm0 16H24v2h16zm-16 0h-8v2h8zm-8 0H8v2h8zm-6.485-7.142 5-3-1.03-1.716-5 3zm20-4 5-3-1.03-1.716-5 3zm4.681-2.877 5-1-.392-1.962-5 1zM38 35H9v2h29zm-28 1V21H8v15zm-2-5v5h2v-5zm30-10h2a2 2 0 0 0-2-2zm0 14v2a2 2 0 0 0 2-2zM10 19a2 2 0 0 0-2 2h2zM10 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0M13 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0M16 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" class=\"icon-dark\"/><path fill=\"#F8C4CD\" d=\"M35.243 41.243a6 6 0 1 1-8.486-8.485 6 6 0 0 1 8.486 8.485\" class=\"icon-light-secondary\"/><path stroke=\"#C62B49\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m32.5 35.5-3 3m3 0-3-3m5.743 5.743a6 6 0 1 1-8.486-8.485 6 6 0 0 1 8.486 8.485\" class=\"icon-dark-secondary\"/>"
|
|
2074
2089
|
}
|
|
2075
2090
|
}, ["48"], "technology-dashboard-fail"))
|
|
2076
2091
|
|
|
@@ -2079,7 +2094,7 @@ export const IconTechnologyDashboardRunning: React.FC<
|
|
|
2079
2094
|
Omit<iconsRegistry.IconTechnologyDashboardRunningProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2080
2095
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2081
2096
|
"48": {
|
|
2082
|
-
"body": "<path fill=\"#E1E3ED\" d=\"M40 8H8a3 3 0 0 0-3 3v5h38v-5a3 3 0 0 0-3-
|
|
2097
|
+
"body": "<path fill=\"#E1E3ED\" d=\"M40 8H8a3 3 0 0 0-3 3v5h38v-5a3 3 0 0 0-3-3\" class=\"icon-light\"/><path fill=\"#E1E3ED\" fill-rule=\"evenodd\" d=\"M8 8a3 3 0 0 0-3 3v5h38v-5a3 3 0 0 0-3-3z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path fill=\"#E1E3ED\" d=\"m19 30-5-2-5 3v5h29a1 1 0 0 0 1-1V23l-5 1-5 3-5-2z\" class=\"icon-light\"/><path stroke=\"#9095AD\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M19 12h20m4-1v26a3 3 0 0 1-3 3H8a3 3 0 0 1-3-3V11m38 0a3 3 0 0 0-3-3H8a3 3 0 0 0-3 3m38 0v5H5v-5m34 12v12a1 1 0 0 1-1 1H9m30-13v-2a1 1 0 0 0-1-1H10a1 1 0 0 0-1 1v15m30-13-5 1-5 3-5-2-5 5-5-2-5 3v5\" class=\"icon-dark\"/><path fill=\"#9095AD\" d=\"M10 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0M13 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0M16 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" class=\"icon-dark\"/><path fill=\"#fff\" d=\"M39 37a8 8 0 1 1-16 0 8 8 0 0 1 16 0\"/><path fill=\"currentColor\" d=\"M37 37a6 6 0 1 1-12 0 6 6 0 0 1 12 0\" class=\"icon-light\"/><path fill=\"#C5C9FD\" fill-rule=\"evenodd\" d=\"M31 32a5 5 0 1 0 0 10 5 5 0 0 0 0-10m-7 5a7 7 0 1 1 14 0 7 7 0 0 1-14 0\" class=\"icon-light-secondary\" clip-rule=\"evenodd\"/><path fill=\"#4956E3\" fill-rule=\"evenodd\" d=\"M30 31a1 1 0 0 1 1-1 7 7 0 0 1 7 7 1 1 0 1 1-2 0 5 5 0 0 0-5-5 1 1 0 0 1-1-1\" class=\"icon-dark-secondary\" clip-rule=\"evenodd\"/><path fill=\"#fff\" d=\"M36 37a5 5 0 1 1-10 0 5 5 0 0 1 10 0\"/>"
|
|
2083
2098
|
}
|
|
2084
2099
|
}, ["48"], "technology-dashboard-running"))
|
|
2085
2100
|
|
|
@@ -2097,7 +2112,7 @@ export const IconTechnologyDragProject: React.FC<
|
|
|
2097
2112
|
Omit<iconsRegistry.IconTechnologyDragProjectProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2098
2113
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2099
2114
|
"48": {
|
|
2100
|
-
"body": "<path stroke=\"rgba(0,0,0,0.2)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M38.5 15v-1m-29 24h-2a3 3 0 0 1-3-3v-1m34-24V9a3 3 0 0 0-3-3h-1m-30 4V9a3 3 0 0 1 3-3h1m-4 24v-2.5m0-4v-3m0-4V14m8-8H16m4 0h3m4 0h3.5\" class=\"icon-dark-secondary\"/><path fill=\"#69D3A7\" d=\"M26.086 15.586A2 2 0 0 0 24.672 15H13.5a1 1 0 0 0-1 1v5h12.172a2 2 0 0 0 1.414-.586L28.5
|
|
2115
|
+
"body": "<path stroke=\"rgba(0,0,0,0.2)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M38.5 15v-1m-29 24h-2a3 3 0 0 1-3-3v-1m34-24V9a3 3 0 0 0-3-3h-1m-30 4V9a3 3 0 0 1 3-3h1m-4 24v-2.5m0-4v-3m0-4V14m8-8H16m4 0h3m4 0h3.5\" class=\"icon-dark-secondary\"/><path fill=\"#69D3A7\" d=\"M26.086 15.586A2 2 0 0 0 24.672 15H13.5a1 1 0 0 0-1 1v5h12.172a2 2 0 0 0 1.414-.586L28.5 18z\" class=\"icon-light\"/><path fill=\"currentColor\" d=\"M12.5 21h-1zm13.586-.586.707.707zM24.672 15v-1zm1.414.586.707-.707zM13.5 15v1zm10.707 13.707a.999.999 0 1 0-1.414-1.414zM21 30.5l-.707-.707a1 1 0 0 0 0 1.414zm1.793 3.207a.999.999 0 1 0 1.414-1.414zm9.414-6.414a.999.999 0 1 0-1.414 1.414zM34 30.5l.707.707a1 1 0 0 0 0-1.414zm-3.207 1.793a.999.999 0 1 0 1.414 1.414zm-5.269 2.49a1 1 0 1 0 1.952.434zm3.952-8.566a1 1 0 1 0-1.952-.434zM41.5 20v19h2V20zm-1 20h-26v2h26zm-27-24h11.172v-2H13.5zm11.879.293 2.414 2.414 1.414-1.414-2.414-2.414zM28.5 19h12v-2h-12zm-.707-1.707-2.414 2.414 1.414 1.414 2.414-2.414zM13.5 39V21h-2v18zm0-18v-5h-2v5zm11.172-1H12.5v2h12.172zm.707-.293a1 1 0 0 1-.707.293v2a3 3 0 0 0 2.121-.879zM24.672 16a1 1 0 0 1 .707.293l1.414-1.414A3 3 0 0 0 24.672 14zM14.5 40a1 1 0 0 1-1-1h-2a3 3 0 0 0 3 3zm27-1a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3zm2-19a3 3 0 0 0-3-3v2a1 1 0 0 1 1 1zm-30-6a2 2 0 0 0-2 2h2zm9.293 13.293-2.5 2.5 1.414 1.414 2.5-2.5zm-2.5 3.914 2.5 2.5 1.414-1.414-2.5-2.5zm10.5-2.5 2.5 2.5 1.414-1.414-2.5-2.5zm2.5 1.086-2.5 2.5 1.414 1.414 2.5-2.5zm-5.817 5.424 2-9-1.952-.434-2 9z\" class=\"icon-dark\"/>"
|
|
2101
2116
|
}
|
|
2102
2117
|
}, ["48"], "technology-drag-project"))
|
|
2103
2118
|
|
|
@@ -2106,19 +2121,28 @@ export const IconTechnologyElementSelector: React.FC<
|
|
|
2106
2121
|
Omit<iconsRegistry.IconTechnologyElementSelectorProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2107
2122
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2108
2123
|
"16": {
|
|
2109
|
-
"body": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M14 5V4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h1\" class=\"icon-dark\"/><path fill=\"currentColor\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m10 11 3 3 1-1-3-3 1.5-1.5L7 7l1.5 5.
|
|
2124
|
+
"body": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M14 5V4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h1\" class=\"icon-dark\"/><path fill=\"currentColor\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m10 11 3 3 1-1-3-3 1.5-1.5L7 7l1.5 5.5z\" class=\"icon-dark\"/>"
|
|
2110
2125
|
}
|
|
2111
2126
|
}, ["16"], "technology-element-selector"))
|
|
2112
2127
|
|
|
2113
2128
|
|
|
2129
|
+
export const IconTechnologyGitBranches: React.FC<
|
|
2130
|
+
Omit<iconsRegistry.IconTechnologyGitBranchesProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2131
|
+
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2132
|
+
"24": {
|
|
2133
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M11 4a1 1 0 0 0-1-1H6a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h4.026a.974.974 0 0 0 .974-.974 2 2 0 0 0-.824-1.616l-3.029-2.203A4 4 0 0 1 5.5 12.972V12.5a1 1 0 1 1 2 0v.472a2 2 0 0 0 .824 1.618L11 16.536v-3.538c0-.628-.297-1.22-.8-1.598l-1.6-1.2A4 4 0 0 1 7 7v-.5a1 1 0 0 1 2 0V7a2 2 0 0 0 .8 1.6l1.2.9z\" class=\"icon-light-secondary\"/><path fill=\"#E1E3ED\" d=\"M13 20a1 1 0 0 0 1 1h4a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3h-4a1 1 0 0 0-1 1v8.955l1.728-1.344a2 2 0 0 0 .772-1.578V9.5a1 1 0 1 1 2 0v.533a4 4 0 0 1-1.544 3.157l-2.184 1.699A2 2 0 0 0 13 16.466z\" class=\"icon-light\"/><path fill=\"#1B1E2E\" d=\"M16.5 10.033h1zm1-.533a1 1 0 1 0-2 0zm-6.7 1.1.6-.8zM9.2 9.4l-.6.8zM9 6.5a1 1 0 0 0-2 0zm1.765 11.102-.589.808zm-3.03-2.203-.588.808zM7.5 12.5a1 1 0 1 0-2 0zm7.842-.1-.614-.789zm-2.184 1.7.614.789zM6 3v1zm12 0V2zm2 3v12h2V6zM4 18V6H2v12zm13.5-7.967V9.5h-2v.533zM11.4 9.8 9.8 8.6l-1.2 1.6 1.6 1.2zM9 7v-.5H7V7zm2.353 9.793-3.03-2.203-1.176 1.617 3.03 2.203zM7.5 12.973V12.5h-2v.472zm7.228-1.362-2.184 1.699 1.228 1.579 2.184-1.699zM13 12.997V3h-2v9.998zm-.456.313A4 4 0 0 0 11 16.466h2a2 2 0 0 1 .772-1.578zm-4.22 1.28a2 2 0 0 1-.824-1.618h-2a4 4 0 0 0 1.647 3.235zM9.8 8.6A2 2 0 0 1 9 7H7a4 4 0 0 0 1.6 3.2zm.376 9.81A2 2 0 0 1 11 20.026l2-.001a4 4 0 0 0-1.647-3.232zm5.324-8.377a2 2 0 0 1-.772 1.579l1.228 1.578a4 4 0 0 0 1.544-3.157zM10.2 11.4a2 2 0 0 1 .8 1.598l2-.001A4 4 0 0 0 11.4 9.8zm.8 5.066v3.56h2v-3.56zM13 21v-.975h-2V21zm0-4.534v-3.469h-2v3.47zM6 4h6V2H6zm6 0h6V2h-6zm6 16h-6v2h6zm-6 0H6v2h6zM4 6a2 2 0 0 1 2-2V2a4 4 0 0 0-4 4zM2 18a4 4 0 0 0 4 4v-2a2 2 0 0 1-2-2zm18 0a2 2 0 0 1-2 2v2a4 4 0 0 0 4-4zm2-12a4 4 0 0 0-4-4v2a2 2 0 0 1 2 2z\" class=\"icon-dark\"/>"
|
|
2134
|
+
}
|
|
2135
|
+
}, ["24"], "technology-git-branches"))
|
|
2136
|
+
|
|
2137
|
+
|
|
2114
2138
|
export const IconTechnologyImageScreenshot: React.FC<
|
|
2115
2139
|
Omit<iconsRegistry.IconTechnologyImageScreenshotProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2116
2140
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2117
2141
|
"16": {
|
|
2118
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M1 14a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2l-2.5-2.5L10 12 5.5 7.5 1
|
|
2142
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M1 14a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2l-2.5-2.5L10 12 5.5 7.5 1 12zM12 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" class=\"icon-light\"/><path fill=\"currentColor\" d=\"m5.5 7.5.707-.707a1 1 0 0 0-1.414 0zM10 12l-.707.707a1 1 0 0 0 1.414 0zm2.5-2.5.707-.707a1 1 0 0 0-1.414 0zM14 0H2v2h12zM2 14v-2H0v2zm0-2V2H0v10zm-.293.707 4.5-4.5-1.414-1.414-4.5 4.5zm3.086-4.5 4.5 4.5 1.414-1.414-4.5-4.5zm5.914 4.5 2.5-2.5-1.414-1.414-2.5 2.5zM16 14v-2h-2v2zm0-2V2h-2v10zm-4.207-1.793 2.5 2.5 1.414-1.414-2.5-2.5zM2 16h12v-2H2zm9-11v2a2 2 0 0 0 2-2zm0 0H9a2 2 0 0 0 2 2zm0 0V3a2 2 0 0 0-2 2zm0 0h2a2 2 0 0 0-2-2zm3-3h2a2 2 0 0 0-2-2zm0 12v2a2 2 0 0 0 2-2zM2 0a2 2 0 0 0-2 2h2zM0 14a2 2 0 0 0 2 2v-2z\" class=\"icon-dark\"/>"
|
|
2119
2143
|
},
|
|
2120
2144
|
"24": {
|
|
2121
|
-
"body": "<path fill=\"#C5C9FD\" d=\"M3 19a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-2l-3-3-3 3-6-6-6
|
|
2145
|
+
"body": "<path fill=\"#C5C9FD\" d=\"M3 19a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-2l-3-3-3 3-6-6-6 6zM18 9a2 2 0 1 1-4 0 2 2 0 0 1 4 0\" class=\"icon-light\"/><path fill=\"currentColor\" d=\"m9 11 .707-.707a1 1 0 0 0-1.414 0zm6 6-.707.707a1 1 0 0 0 1.414 0zm3-3 .707-.707a1 1 0 0 0-1.414 0zm2-11H4v2h16zM4 19v-2H2v2zm0-2V5H2v12zm-.293.707 6-6-1.414-1.414-6 6zm4.586-6 6 6 1.414-1.414-6-6zm7.414 6 3-3-1.414-1.414-3 3zM22 19v-2h-2v2zm0-2V5h-2v12zm-4.707-2.293 3 3 1.414-1.414-3-3zM4 21h16v-2H4zM17 9a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3zm-1 1a1 1 0 0 1-1-1h-2a3 3 0 0 0 3 3zm-1-1a1 1 0 0 1 1-1V6a3 3 0 0 0-3 3zm1-1a1 1 0 0 1 1 1h2a3 3 0 0 0-3-3zm4-3h2a2 2 0 0 0-2-2zm0 14v2a2 2 0 0 0 2-2zM4 3a2 2 0 0 0-2 2h2zM2 19a2 2 0 0 0 2 2v-2z\" class=\"icon-dark\"/>"
|
|
2122
2146
|
}
|
|
2123
2147
|
}, ["16","24"], "technology-image-screenshot"))
|
|
2124
2148
|
|
|
@@ -2127,13 +2151,13 @@ export const IconTechnologyInfinityLoop: React.FC<
|
|
|
2127
2151
|
Omit<iconsRegistry.IconTechnologyInfinityLoopProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2128
2152
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2129
2153
|
"16": {
|
|
2130
|
-
"body": "<path fill=\"currentColor\" d=\"M7
|
|
2154
|
+
"body": "<path fill=\"currentColor\" d=\"M7 5v1h2V5zm2 6v-1H7v1zM5 7a2 2 0 0 1-2-2H1a4 4 0 0 0 4 4zM3 5a2 2 0 0 1 2-2V1a4 4 0 0 0-4 4zm2-2a2 2 0 0 1 2 2h2a4 4 0 0 0-4-4zm8 8a2 2 0 0 1-2 2v2a4 4 0 0 0 4-4zm-2 2a2 2 0 0 1-2-2H7a4 4 0 0 0 4 4zm0-4a2 2 0 0 1 2 2h2a4 4 0 0 0-4-4zm0-2H5v2h6z\" class=\"icon-dark\"/>"
|
|
2131
2155
|
},
|
|
2132
2156
|
"20": {
|
|
2133
|
-
"body": "<path fill=\"currentColor\" d=\"M11 13v-
|
|
2157
|
+
"body": "<path fill=\"currentColor\" d=\"M11 13v-1H9v1zM9 7v1h2V7zM5.5 9A3.5 3.5 0 0 1 2 5.5H0A5.5 5.5 0 0 0 5.5 11zM2 5.5A3.5 3.5 0 0 1 5.5 2V0A5.5 5.5 0 0 0 0 5.5zM5.5 2A3.5 3.5 0 0 1 9 5.5h2A5.5 5.5 0 0 0 5.5 0zM18 14.5a3.5 3.5 0 0 1-3.5 3.5v2a5.5 5.5 0 0 0 5.5-5.5zM14.5 18a3.5 3.5 0 0 1-3.5-3.5H9a5.5 5.5 0 0 0 5.5 5.5zm0-7a3.5 3.5 0 0 1 3.5 3.5h2A5.5 5.5 0 0 0 14.5 9zm0-2h-9v2h9zM11 14.5V13H9v1.5zm-2-9V7h2V5.5z\" class=\"icon-dark\"/>"
|
|
2134
2158
|
},
|
|
2135
2159
|
"24": {
|
|
2136
|
-
"body": "<path fill=\"currentColor\" d=\"M13 15v-1h-
|
|
2160
|
+
"body": "<path fill=\"currentColor\" d=\"M13 15v-1h-2v1zm-2-6v1h2V9zm-3.5 2A3.5 3.5 0 0 1 4 7.5H2A5.5 5.5 0 0 0 7.5 13zM4 7.5A3.5 3.5 0 0 1 7.5 4V2A5.5 5.5 0 0 0 2 7.5zM7.5 4A3.5 3.5 0 0 1 11 7.5h2A5.5 5.5 0 0 0 7.5 2zM20 16.5a3.5 3.5 0 0 1-3.5 3.5v2a5.5 5.5 0 0 0 5.5-5.5zM16.5 20a3.5 3.5 0 0 1-3.5-3.5h-2a5.5 5.5 0 0 0 5.5 5.5zm0-7a3.5 3.5 0 0 1 3.5 3.5h2a5.5 5.5 0 0 0-5.5-5.5zm0-2h-9v2h9zM13 16.5V15h-2v1.5zm-2-9V9h2V7.5z\" class=\"icon-dark\"/>"
|
|
2137
2161
|
}
|
|
2138
2162
|
}, ["16","20","24"], "technology-infinity-loop"))
|
|
2139
2163
|
|
|
@@ -2142,7 +2166,7 @@ export const IconTechnologyLockedProject: React.FC<
|
|
|
2142
2166
|
Omit<iconsRegistry.IconTechnologyLockedProjectProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2143
2167
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2144
2168
|
"48": {
|
|
2145
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M18.586 8.586A2 2 0 0 0 17.172 8H6a1 1 0 0 0-1 1v5h12.172a2 2 0 0 0 1.414-.586L21
|
|
2169
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M18.586 8.586A2 2 0 0 0 17.172 8H6a1 1 0 0 0-1 1v5h12.172a2 2 0 0 0 1.414-.586L21 11z\" class=\"icon-light\"/><path fill=\"currentColor\" d=\"m18.586 13.414.707.707zM17.172 8v1zm1.414.586.707-.707zM5 38H4zM6 8V7zm36 5v25h2V13zm-1 26H7v2h34zM6 9h11.172V7H6zm11.879.293 2.414 2.414 1.414-1.414-2.414-2.414zM21 12h20v-2H21zm-.707-1.707-2.414 2.414 1.414 1.414 2.414-2.414zM6 38V14H4v24zm0-24V9H4v5zm11.172-1H5v2h12.172zm.707-.293a1 1 0 0 1-.707.293v2a3 3 0 0 0 2.12-.879zM17.172 9a1 1 0 0 1 .707.293l1.414-1.414A3 3 0 0 0 17.172 7zM7 39a1 1 0 0 1-1-1H4a3 3 0 0 0 3 3zm35-1a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3zm2-25a3 3 0 0 0-3-3v2a1 1 0 0 1 1 1zM6 7a2 2 0 0 0-2 2h2z\" class=\"icon-dark\"/><path fill=\"#69D3A7\" fill-rule=\"evenodd\" d=\"M25 41a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2h-8a2 2 0 0 0-2 2z\" class=\"icon-light-secondary\" clip-rule=\"evenodd\"/><path stroke=\"#00814D\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M28 34h-1a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2h-1m-6 0v-2a3 3 0 0 1 3-3v0a3 3 0 0 1 3 3v2m-6 0h6m-3 4v1\" class=\"icon-dark-secondary\"/>"
|
|
2146
2170
|
}
|
|
2147
2171
|
}, ["48"], "technology-locked-project"))
|
|
2148
2172
|
|
|
@@ -2160,16 +2184,25 @@ export const IconTechnologyPullRequest: React.FC<
|
|
|
2160
2184
|
Omit<iconsRegistry.IconTechnologyPullRequestProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2161
2185
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2162
2186
|
"16": {
|
|
2163
|
-
"body": "<path fill=\"currentColor\" d=\"M2.5 12a1 1 0 1 0 2
|
|
2187
|
+
"body": "<path fill=\"currentColor\" d=\"M2.5 12a1 1 0 1 0 2 0zm2-8a1 1 0 1 0-2 0zm7 8a1 1 0 1 0 2 0zm-4-8-.707-.707a1 1 0 0 0 0 1.414zM9 2.5h1a1 1 0 0 0-1.707-.707zm0 3-.707.707A1 1 0 0 0 10 5.5zM11.5 4v1zm-7 8V4h-2v8zm9 0V5h-2v7zm-2-9h-4v2h4zM8.207 4.707l1.5-1.5-1.414-1.414-1.5 1.5zm-1.414 0 1.5 1.5 1.414-1.414-1.5-1.5zM8 2.5v3h2v-3zM13.5 5a2 2 0 0 0-2-2v2z\" class=\"icon-dark\"/><path fill=\"#D0D2E0\" stroke=\"currentColor\" d=\"M5 4a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0 8a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm9 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\" class=\"icon-light-fill icon-dark-stroke\"/>"
|
|
2164
2188
|
}
|
|
2165
2189
|
}, ["16"], "technology-pull-request"))
|
|
2166
2190
|
|
|
2167
2191
|
|
|
2192
|
+
export const IconTechnologyServerAlt: React.FC<
|
|
2193
|
+
Omit<iconsRegistry.IconTechnologyServerAltProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2194
|
+
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2195
|
+
"24": {
|
|
2196
|
+
"body": "<rect width=\"20\" height=\"6\" x=\"2\" y=\"9\" fill=\"#D0D2E0\" class=\"icon-light\" rx=\"2\"/><path fill=\"#1B1E2E\" fill-rule=\"evenodd\" d=\"M1 17a3 3 0 0 1 3-3h16a3 3 0 0 1 3 3v2a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3zm3-1a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1zm3 2a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1m-2 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" class=\"icon-dark\" clip-rule=\"evenodd\"/><path fill=\"#1B1E2E\" fill-rule=\"evenodd\" d=\"M1 11a3 3 0 0 1 3-3h16a3 3 0 0 1 3 3v2a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3zm3-1a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1zm3 2a1 1 0 0 1 1-1h11a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1m-2 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" class=\"icon-dark\" clip-rule=\"evenodd\"/><path fill=\"#1B1E2E\" fill-rule=\"evenodd\" d=\"M1 5a3 3 0 0 1 3-3h16a3 3 0 0 1 3 3v2a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3zm3-1a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1zm3 2a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1M5 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
2197
|
+
}
|
|
2198
|
+
}, ["24"], "technology-server-alt"))
|
|
2199
|
+
|
|
2200
|
+
|
|
2168
2201
|
export const IconTechnologyServer: React.FC<
|
|
2169
2202
|
Omit<iconsRegistry.IconTechnologyServerProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2170
2203
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2171
2204
|
"16": {
|
|
2172
|
-
"body": "<rect width=\"14\" height=\"6\" x=\"1\" y=\"2\" fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"icon-dark-stroke icon-light-fill\" rx=\"2\"/><rect width=\"14\" height=\"6\" x=\"1\" y=\"8\" fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"icon-dark-stroke icon-light-fill\" rx=\"2\"/><path fill=\"currentColor\" d=\"M13 5a1 1 0 1 1-2 0 1 1 0 0 1 2
|
|
2205
|
+
"body": "<rect width=\"14\" height=\"6\" x=\"1\" y=\"2\" fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"icon-dark-stroke icon-light-fill\" rx=\"2\"/><rect width=\"14\" height=\"6\" x=\"1\" y=\"8\" fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"icon-dark-stroke icon-light-fill\" rx=\"2\"/><path fill=\"currentColor\" d=\"M13 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0M10 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0M13 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" class=\"icon-dark\"/>"
|
|
2173
2206
|
}
|
|
2174
2207
|
}, ["16"], "technology-server"))
|
|
2175
2208
|
|
|
@@ -2178,7 +2211,7 @@ export const IconTechnologyTerminalLog: React.FC<
|
|
|
2178
2211
|
Omit<iconsRegistry.IconTechnologyTerminalLogProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2179
2212
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2180
2213
|
"16": {
|
|
2181
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M15 3a2 2 0 0 0-2-2H3a2 2 0 0 0-2
|
|
2214
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M15 3a2 2 0 0 0-2-2H3a2 2 0 0 0-2 2v1h14z\" class=\"icon-light\"/><path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M15 3a2 2 0 0 0-2-2H3a2 2 0 0 0-2 2v1h14z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M1 4v9a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4M1 4V3a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1M1 4h14\" class=\"icon-dark\"/><path fill=\"currentColor\" d=\"M4.5 7a.5.5 0 0 0 0 1zm1 1H6V7h-.5zm-1 1a.5.5 0 0 0 0 1zM6 10h.5V9H6zm-1.5 1a.5.5 0 0 0 0 1zm3 1H8v-1h-.5zm0-3H7v1h.5zM9 10a.5.5 0 0 0 0-1zm0 1h-.5v1H9zm2 1a.5.5 0 0 0 0-1zM7 7h-.5v1H7zm1 1h.5V7H8zm1.5-1H9v1h.5zm2 1a.5.5 0 0 0 0-1zm-7 0h1V7h-1zm0 2H6V9H4.5zm0 2h3v-1h-3zm3-2H9V9H7.5zM9 12h2v-1H9zM7 8h1V7H7zm2.5 0h2V7h-2z\" class=\"icon-dark\"/>"
|
|
2182
2215
|
}
|
|
2183
2216
|
}, ["16"], "technology-terminal-log"))
|
|
2184
2217
|
|
|
@@ -2196,22 +2229,31 @@ export const IconTechnologyTestResults: React.FC<
|
|
|
2196
2229
|
Omit<iconsRegistry.IconTechnologyTestResultsProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2197
2230
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2198
2231
|
"16": {
|
|
2199
|
-
"body": "<path fill=\"currentColor\" d=\"M1
|
|
2232
|
+
"body": "<path fill=\"currentColor\" d=\"M1 10h3v3H1z\" class=\"icon-dark\"/><path fill=\"currentColor\" d=\"M15 5.5a1 1 0 1 0 0-2zm-8-2a1 1 0 0 0 0 2zm8 9a1 1 0 1 0 0-2zm-8-2a1 1 0 1 0 0 2zM.293 5.293a1 1 0 0 0 1.414 1.414zm4.414-1.586a1 1 0 0 0-1.414-1.414zm-3-1.414A1 1 0 0 0 .293 3.707zm1.586 4.414a1 1 0 0 0 1.414-1.414zM1 10V9a1 1 0 0 0-1 1zm3 0h1a1 1 0 0 0-1-1zm0 3v1a1 1 0 0 0 1-1zm-3 0H0a1 1 0 0 0 1 1zm14-9.5H7v2h8zm0 7H7v2h8zM1.707 6.707l1.5-1.5-1.414-1.414-1.5 1.5zm1.5-1.5 1.5-1.5-1.414-1.414-1.5 1.5zm-2.914-1.5 1.5 1.5 1.414-1.414-1.5-1.5zm1.5 1.5 1.5 1.5 1.414-1.414-1.5-1.5zM1 11h3V9H1zm2-1v3h2v-3zm1 2H1v2h3zm-2 1v-3H0v3z\" class=\"icon-dark\"/>"
|
|
2200
2233
|
},
|
|
2201
2234
|
"24": {
|
|
2202
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M3
|
|
2235
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M3 15h4v4H3z\" class=\"icon-light\"/><path fill=\"currentColor\" d=\"M21 8a1 1 0 1 0 0-2zM11 6a1 1 0 1 0 0 2zm10 12a1 1 0 1 0 0-2zm-10-2a1 1 0 1 0 0 2zM2.293 8.293a1 1 0 0 0 1.414 1.414zm5.414-2.586a1 1 0 0 0-1.414-1.414zm-4-1.414a1 1 0 0 0-1.414 1.414zm2.586 5.414a1 1 0 0 0 1.414-1.414zM3 15v-1a1 1 0 0 0-1 1zm4 0h1a1 1 0 0 0-1-1zm0 4v1a1 1 0 0 0 1-1zm-4 0H2a1 1 0 0 0 1 1zM21 6H11v2h10zm0 10H11v2h10zM3.707 9.707l2-2-1.414-1.414-2 2zm2-2 2-2-1.414-1.414-2 2zm-3.414-2 2 2 1.414-1.414-2-2zm2 2 2 2 1.414-1.414-2-2zM3 16h4v-2H3zm3-1v4h2v-4zm1 3H3v2h4zm-3 1v-4H2v4z\" class=\"icon-dark\"/>"
|
|
2203
2236
|
}
|
|
2204
2237
|
}, ["16","24"], "technology-test-results"))
|
|
2205
2238
|
|
|
2206
2239
|
|
|
2240
|
+
export const IconTechnologyUiCoverage: React.FC<
|
|
2241
|
+
Omit<iconsRegistry.IconTechnologyUiCoverageProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2242
|
+
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2243
|
+
"24": {
|
|
2244
|
+
"body": "<path fill=\"#E1E3ED\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M21.428 9.885 7.294 7.058a.2.2 0 0 0-.235.235l2.827 14.134a.2.2 0 0 0 .375.05l2.615-5.23a.2.2 0 0 1 .32-.052l4.163 4.163a.2.2 0 0 0 .282 0l2.718-2.718a.2.2 0 0 0 0-.282l-4.163-4.163a.2.2 0 0 1 .052-.32l5.23-2.615a.2.2 0 0 0-.05-.375Z\" class=\"icon-dark-stroke icon-light-fill\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M10-.001a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0v-1.5a1 1 0 0 1 1-1m8.207 3.207-1.06 1.06a1 1 0 1 1-1.415-1.413l1.06-1.061a1 1 0 1 1 1.415 1.414m-13.5 13.5a1 1 0 1 0-1.414-1.414l-1.06 1.06a1 1 0 1 0 1.413 1.415zM1.793 1.792a1 1 0 0 1 1.414 0l1.06 1.06a1 1 0 0 1-1.413 1.415l-1.061-1.06a1 1 0 0 1 0-1.415M1 8.999a1 1 0 1 0 0 2h1.5a1 1 0 1 0 0-2z\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
2245
|
+
}
|
|
2246
|
+
}, ["24"], "technology-ui-coverage"))
|
|
2247
|
+
|
|
2248
|
+
|
|
2207
2249
|
export const IconTestingTypeComponentSolid: React.FC<
|
|
2208
2250
|
Omit<iconsRegistry.IconTestingTypeComponentSolidProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2209
2251
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2210
2252
|
"24": {
|
|
2211
|
-
"body": "<mask id=\"testing-type-component-solid_x24_svg__a\" fill=\"#fff\"><path d=\"M2 13h9v9H4a2 2 0 0 1-2-
|
|
2253
|
+
"body": "<mask id=\"testing-type-component-solid_x24_svg__a\" fill=\"#fff\"><path d=\"M2 13h9v9H4a2 2 0 0 1-2-2zM13 2h7a2 2 0 0 1 2 2v7h-9z\"/></mask><path fill=\"currentColor\" d=\"M2 13h9v9H4a2 2 0 0 1-2-2zM13 2h7a2 2 0 0 1 2 2v7h-9z\" class=\"icon-dark\"/><path fill=\"currentColor\" d=\"M11 13h2a2 2 0 0 0-2-2zm-9 0v-2a2 2 0 0 0-2 2zm9 9v2a2 2 0 0 0 2-2zm2-20V0h-2v2zm9 9v2h2v-2zm-9 0h-2v2h2zm-2 0H2v4h9zm-2 2v9h4v-9zm2 7H4v4h7zm-7 0v-7H0v7zm9-16h7V0h-7zm7 0v7h4V4zm2 5h-9v4h9zm-7 2V2h-4v9zm5-7h4a4 4 0 0 0-4-4zM4 20H0a4 4 0 0 0 4 4z\" class=\"icon-dark\" mask=\"url(#testing-type-component-solid_x24_svg__a)\"/><path fill=\"#D0D2E0\" d=\"M4 4h7v9h9v7a2 2 0 0 1-2 2h-7v-9H2V6a2 2 0 0 1 2-2\" class=\"icon-light\"/>"
|
|
2212
2254
|
},
|
|
2213
2255
|
"64": {
|
|
2214
|
-
"body": "<path fill=\"currentColor\" d=\"M36 4h21a3 3 0 0 1 3
|
|
2256
|
+
"body": "<path fill=\"currentColor\" d=\"M36 4h21a3 3 0 0 1 3 3v21H36zM32 56H11a3 3 0 0 1-3-3V32h24z\" class=\"icon-dark\"/><path fill=\"#D0D2E0\" d=\"M11 8h21v24h24v21a3 3 0 0 1-3 3H32V32H8V11a3 3 0 0 1 3-3\" class=\"icon-light\"/>"
|
|
2215
2257
|
}
|
|
2216
2258
|
}, ["24","64"], "testing-type-component-solid"))
|
|
2217
2259
|
|
|
@@ -2220,13 +2262,13 @@ export const IconTestingTypeComponent: React.FC<
|
|
|
2220
2262
|
Omit<iconsRegistry.IconTestingTypeComponentProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2221
2263
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2222
2264
|
"16": {
|
|
2223
|
-
"body": "<path fill=\"currentColor\" fill-opacity=\".5\" d=\"M2
|
|
2265
|
+
"body": "<path fill=\"currentColor\" fill-opacity=\".5\" d=\"M2 10h4v4H2zM10 2h4v4h-4z\" class=\"icon-dark\"/><path fill=\"currentColor\" d=\"M2 6V5a1 1 0 0 0-1 1zm4 0h1V5H6zm-4 8H1a1 1 0 0 0 1 1zm8-12V1H9v1zm4 0h1a1 1 0 0 0-1-1zm0 4v1h1V6zm-4 0H9v1h1zm0 4h1V9h-1zm0 4v1a1 1 0 0 0 1-1zM2 7h4V5H2zm3-1v4h2V6zm1 3H2v2h4zm-3 1V6H1v4zm2 0v4h2v-4zm1 3H2v2h4zm-3 1v-4H1v4zm7-11h4V1h-4zm3-1v4h2V2zm1 3h-4v2h4zm-3 1V2H9v4zm-5 5h4V9H6zm3-1v4h2v-4zm1 3H6v2h4z\" class=\"icon-dark\"/>"
|
|
2224
2266
|
},
|
|
2225
2267
|
"24": {
|
|
2226
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M3 14h7v7H4a1 1 0 0 1-1-
|
|
2268
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M3 14h7v7H4a1 1 0 0 1-1-1zM14 3h6a1 1 0 0 1 1 1v6h-7z\" class=\"icon-light\"/><path fill=\"currentColor\" d=\"M10 7h1V6h-1zm4-4V2h-1v1zm7 7v1h1v-1zm-7 0h-1v1h1zm3 4h1v-1h-1zM4 8h6V6H4zm5-1v7h2V7zm1 6H3v2h7zm-6 1V8H2v6zm5 0v7h2v-7zm1 6H4v2h6zm-6 0v-6H2v6zM14 4h6V2h-6zm6 0v6h2V4zm1 5h-7v2h7zm-6 1V3h-2v7zm-5 5h7v-2h-7zm6-1v6h2v-6zm0 6h-6v2h6zm0 0v2a2 2 0 0 0 2-2zm4-16h2a2 2 0 0 0-2-2zM4 20H2a2 2 0 0 0 2 2zM4 6a2 2 0 0 0-2 2h2z\" class=\"icon-dark\"/>"
|
|
2227
2269
|
},
|
|
2228
2270
|
"64": {
|
|
2229
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M36 5h21.5A1.5 1.5 0 0 1 59 6.
|
|
2271
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M36 5h21.5A1.5 1.5 0 0 1 59 6.5V28H36zM32 32H9v21.5a1.5 1.5 0 0 0 1.5 1.5H32z\" class=\"icon-light\"/><path fill=\"currentColor\" d=\"M32 9h1V8h-1zm4-4V4h-1v1zm23 23v1h1v-1zm-23 0h-1v1h1zm19 4h1v-1h-1zM10.5 10H32V8H10.5zM31 9v23h2V9zm1 22H9v2h23zm-22 1V10.5H8V32zm21 0v23h2V32zm1 22H10.5v2H32zm-22-.5V32H8v21.5zM36 6h21.5V4H36zm22 .5V28h2V6.5zM59 27H36v2h23zm-22 1V5h-2v23zm-5 5h23v-2H32zm22-1v21.5h2V32zm-.5 22H32v2h21.5zm.5-.5a.5.5 0 0 1-.5.5v2a2.5 2.5 0 0 0 2.5-2.5zM57.5 6a.5.5 0 0 1 .5.5h2A2.5 2.5 0 0 0 57.5 4zm-47 48a.5.5 0 0 1-.5-.5H8a2.5 2.5 0 0 0 2.5 2.5zm0-46A2.5 2.5 0 0 0 8 10.5h2a.5.5 0 0 1 .5-.5z\" class=\"icon-dark\"/>"
|
|
2230
2272
|
}
|
|
2231
2273
|
}, ["16","24","64"], "testing-type-component"))
|
|
2232
2274
|
|
|
@@ -2235,10 +2277,10 @@ export const IconTestingTypeE2ESolid: React.FC<
|
|
|
2235
2277
|
Omit<iconsRegistry.IconTestingTypeE2ESolidProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2236
2278
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2237
2279
|
"24": {
|
|
2238
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M4 3a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V5a2 2 0 0 0-2-
|
|
2280
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M4 3a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2z\" class=\"icon-light\"/><path fill=\"currentColor\" d=\"M20 21a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2v8a2 2 0 0 1-2 2H6v2a2 2 0 0 0 2 2zM6 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0M9 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0M12 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" class=\"icon-dark\"/>"
|
|
2239
2281
|
},
|
|
2240
2282
|
"64": {
|
|
2241
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M9 8a3 3 0 0 0-3 3v33a3 3 0 0 0 3 3h37a3 3 0 0 0 3-3V11a3 3 0 0 0-3-
|
|
2283
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M9 8a3 3 0 0 0-3 3v33a3 3 0 0 0 3 3h37a3 3 0 0 0 3-3V11a3 3 0 0 0-3-3z\" class=\"icon-light\"/><path fill=\"currentColor\" d=\"M55 56a3 3 0 0 0 3-3V20a3 3 0 0 0-3-3h-6v27a3 3 0 0 1-3 3H15v6a3 3 0 0 0 3 3z\" class=\"icon-dark\"/><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M49 11a3 3 0 0 0-3-3H9a3 3 0 0 0-3 3v6h43zm-5 .5a1 1 0 1 1 0 2H25a1 1 0 1 1 0-2zm-33 2a1 1 0 1 1 0-2 1 1 0 0 1 0 2m4-2a1 1 0 1 0 0 2 1 1 0 0 0 0-2m4 2a1 1 0 1 1 0-2 1 1 0 0 1 0 2\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
2242
2284
|
}
|
|
2243
2285
|
}, ["24","64"], "testing-type-e2e-solid"))
|
|
2244
2286
|
|
|
@@ -2247,13 +2289,13 @@ export const IconTestingTypeE2E: React.FC<
|
|
|
2247
2289
|
Omit<iconsRegistry.IconTestingTypeE2EProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2248
2290
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2249
2291
|
"16": {
|
|
2250
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M15 14V5h-
|
|
2292
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M15 14V5h-3v6H4v3z\" class=\"icon-light\"/><path fill=\"currentColor\" d=\"M15 5h1a1 1 0 0 0-1-1zM4 14H3a1 1 0 0 0 1 1zm11 0v1a1 1 0 0 0 1-1zM1 2V1a1 1 0 0 0-1 1zm11 0h1a1 1 0 0 0-1-1zM1 11H0a1 1 0 0 0 1 1zm11 0v1a1 1 0 0 0 1-1zm2-6v9h2V5zm1 8H4v2h11zM1 3h11V1H1zm11 7H4v2h8zm-8 0H1v2h3zm1 4v-3H3v3zm7-8h3V4h-3zm-1-4v3h2V2zm0 3v6h2V5zm-9 6V2H0v9zM4 4.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0M6 4.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0M8 4.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0\" class=\"icon-dark\"/>"
|
|
2251
2293
|
},
|
|
2252
2294
|
"24": {
|
|
2253
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M20 20a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1h-3v7a1 1 0 0 1-1 1H7v3a1 1 0 0 0 1
|
|
2295
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M20 20a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1h-3v7a1 1 0 0 1-1 1H7v3a1 1 0 0 0 1 1z\" class=\"icon-light\"/><path fill=\"currentColor\" d=\"M6 6a1 1 0 0 0 0 2zm.01 2a1 1 0 0 0 0-2zM9 6a1 1 0 0 0 0 2zm.01 2a1 1 0 0 0 0-2zM12 6a1 1 0 1 0 0 2zm.01 2a1 1 0 1 0 0-2zM20 9v10h2V9zm0 10H8v2h12zM4 5h12V3H4zm12 10H7v2h9zm-9 0H4v2h3zm1 4v-3H6v3zm9-10h3V7h-3zm-1-4v3h2V5zm0 3v7h2V8zM4 15V5H2v10zm2-7h.01V6H6zm3 0h.01V6H9zm3 0h.01V6H12zm4 9a2 2 0 0 0 2-2h-2zM4 15H2a2 2 0 0 0 2 2zM16 5h2a2 2 0 0 0-2-2zM4 3a2 2 0 0 0-2 2h2zm16 16v2a2 2 0 0 0 2-2zM8 19H6a2 2 0 0 0 2 2zM22 9a2 2 0 0 0-2-2v2z\" class=\"icon-dark\"/>"
|
|
2254
2296
|
},
|
|
2255
2297
|
"64": {
|
|
2256
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M55.5 55a1.5 1.5 0 0 0 1.5-1.5v-34a1.5 1.5 0 0 0-1.5-1.5H48v26.5a1.5 1.5 0 0 1-1.5 1.5H16v7.5a1.5 1.5 0 0 0 1.5 1.
|
|
2298
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M55.5 55a1.5 1.5 0 0 0 1.5-1.5v-34a1.5 1.5 0 0 0-1.5-1.5H48v26.5a1.5 1.5 0 0 1-1.5 1.5H16v7.5a1.5 1.5 0 0 0 1.5 1.5zM48 10.5A1.5 1.5 0 0 0 46.5 9h-38A1.5 1.5 0 0 0 7 10.5V18h41z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M7 18v26.5A1.5 1.5 0 0 0 8.5 46H16M7 18v-7.5A1.5 1.5 0 0 1 8.5 9h38a1.5 1.5 0 0 1 1.5 1.5V18M7 18h41M16 46h30.5a1.5 1.5 0 0 0 1.5-1.5V18M16 46v7.5a1.5 1.5 0 0 0 1.5 1.5h38a1.5 1.5 0 0 0 1.5-1.5v-34a1.5 1.5 0 0 0-1.5-1.5H48m-5-4.5H25m-13.001 0h.014m3.987 0h.013m3.987 0h.013\" class=\"icon-dark\"/>"
|
|
2257
2299
|
}
|
|
2258
2300
|
}, ["16","24","64"], "testing-type-e2e"))
|
|
2259
2301
|
|
|
@@ -2262,7 +2304,7 @@ export const IconTimeCalendarDay: React.FC<
|
|
|
2262
2304
|
Omit<iconsRegistry.IconTimeCalendarDayProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2263
2305
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2264
2306
|
"16": {
|
|
2265
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M14 4a2 2 0 0 0-2-2H4a2 2 0 0 0-2
|
|
2307
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M14 4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v2h12z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M14 6V4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v2m12 0v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6m12 0H2m3-5v2m6-2v2M5 9v1h1V9z\" class=\"icon-dark\"/>"
|
|
2266
2308
|
}
|
|
2267
2309
|
}, ["16"], "time-calendar-day"))
|
|
2268
2310
|
|
|
@@ -2271,10 +2313,10 @@ export const IconTimeClock: React.FC<
|
|
|
2271
2313
|
Omit<iconsRegistry.IconTimeClockProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2272
2314
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2273
2315
|
"16": {
|
|
2274
|
-
"body": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 4v4l2 1.5M15 8A7 7 0 1 1 1 8a7 7 0 0 1 14
|
|
2316
|
+
"body": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 4v4l2 1.5M15 8A7 7 0 1 1 1 8a7 7 0 0 1 14 0\" class=\"icon-dark\"/>"
|
|
2275
2317
|
},
|
|
2276
2318
|
"24": {
|
|
2277
|
-
"body": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 7v5l3 2m6-2a9 9 0 1 1-18 0 9 9 0 0 1 18
|
|
2319
|
+
"body": "<path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 7v5l3 2m6-2a9 9 0 1 1-18 0 9 9 0 0 1 18 0\" class=\"icon-dark\"/>"
|
|
2278
2320
|
}
|
|
2279
2321
|
}, ["16","24"], "time-clock"))
|
|
2280
2322
|
|
|
@@ -2283,7 +2325,7 @@ export const IconTimeStopwatch: React.FC<
|
|
|
2283
2325
|
Omit<iconsRegistry.IconTimeStopwatchProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2284
2326
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2285
2327
|
"16": {
|
|
2286
|
-
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M13.5 9.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11
|
|
2328
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M13.5 9.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0M8 9.993a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1\" class=\"icon-light\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 4V1m0 3c1.519 0 2.894.616 3.89 1.61M8 4a5.48 5.48 0 0 0-3.89 1.61M8 1h2M8 1H6m5.89 4.61a5.5 5.5 0 1 1-7.778 0m7.777 0L13 4.5M4.11 5.61 3 4.5m5 5 .357-.357M10 7.5 8.357 9.143m0 0a.498.498 0 0 1-.357.85.5.5 0 1 1 .357-.85\" class=\"icon-dark\"/>"
|
|
2287
2329
|
}
|
|
2288
2330
|
}, ["16"], "time-stopwatch"))
|
|
2289
2331
|
|
|
@@ -2292,7 +2334,7 @@ export const IconUserGeneralOutline: React.FC<
|
|
|
2292
2334
|
Omit<iconsRegistry.IconUserGeneralOutlineProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2293
2335
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2294
2336
|
"16": {
|
|
2295
|
-
"body": "<path fill=\"transparent\" d=\"M8 1a7 7 0 0 0-4.9 12 5.
|
|
2337
|
+
"body": "<path fill=\"transparent\" d=\"M8 1a7 7 0 0 0-4.9 12 5.01 5.01 0 0 1 3.043-3.644 3 3 0 1 1 3.714 0A5.01 5.01 0 0 1 12.9 13 7 7 0 0 0 8 1\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M6.143 9.356C6.653 9.76 7.299 10 8 10s1.346-.24 1.857-.644m-3.714 0a3 3 0 1 1 3.714 0m-3.714 0A5.01 5.01 0 0 0 3.1 13m6.757-3.643A5.01 5.01 0 0 1 12.9 13m0 0a7 7 0 1 0-9.8 0m9.8 0A6.98 6.98 0 0 1 8 15a6.98 6.98 0 0 1-4.9-2\" class=\"icon-dark\"/>"
|
|
2296
2338
|
}
|
|
2297
2339
|
}, ["16"], "user-general-outline"))
|
|
2298
2340
|
|
|
@@ -2301,7 +2343,7 @@ export const IconUserGeneralSolid: React.FC<
|
|
|
2301
2343
|
Omit<iconsRegistry.IconUserGeneralSolidProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2302
2344
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2303
2345
|
"16": {
|
|
2304
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8
|
|
2346
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0\" class=\"icon-light\"/><path fill=\"#D0D2E0\" d=\"M5 7a3 3 0 1 1 4.857 2.356A5.01 5.01 0 0 1 12.9 13 6.98 6.98 0 0 1 8 15a6.98 6.98 0 0 1-4.9-2 5.01 5.01 0 0 1 3.043-3.644A3 3 0 0 1 5 7\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M6.143 9.356C6.653 9.76 7.299 10 8 10s1.346-.24 1.857-.644m-3.714 0a3 3 0 1 1 3.714 0m-3.714 0A5.01 5.01 0 0 0 3.1 13 6.98 6.98 0 0 0 8 15a6.98 6.98 0 0 0 4.9-2 5.01 5.01 0 0 0-3.043-3.644\" class=\"icon-dark\"/>"
|
|
2305
2347
|
}
|
|
2306
2348
|
}, ["16"], "user-general-solid"))
|
|
2307
2349
|
|
|
@@ -2310,19 +2352,28 @@ export const IconViewList: React.FC<
|
|
|
2310
2352
|
Omit<iconsRegistry.IconViewListProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2311
2353
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2312
2354
|
"16": {
|
|
2313
|
-
"body": "<path fill=\"currentColor\" fill-opacity=\".4\" d=\"M1
|
|
2355
|
+
"body": "<path fill=\"currentColor\" fill-opacity=\".4\" d=\"M1 7h2v2H1zM1 1h2v2H1z\" class=\"icon-dark\"/><path fill=\"currentColor\" d=\"M15 3a1 1 0 1 0 0-2zM6 1a1 1 0 0 0 0 2zm9 8a1 1 0 1 0 0-2zM6 7a1 1 0 1 0 0 2zM1 3H0a1 1 0 0 0 1 1zm2-2h1a1 1 0 0 0-1-1zM1 1V0a1 1 0 0 0-1 1zm2 2v1a1 1 0 0 0 1-1zM1 7V6a1 1 0 0 0-1 1zm2 0h1a1 1 0 0 0-1-1zm0 2v1a1 1 0 0 0 1-1zM1 9H0a1 1 0 0 0 1 1zm14-8H6v2h9zm0 6H6v2h9zM1 8h2V6H1zm1-1v2h2V7zm1 1H1v2h2zM2 9V7H0v2zM1 2h2V0H1zm3 1V1H2v2zM3 2H1v2h2zM2 3V1H0v2z\" class=\"icon-dark\"/>"
|
|
2314
2356
|
}
|
|
2315
2357
|
}, ["16"], "view-list"))
|
|
2316
2358
|
|
|
2317
2359
|
|
|
2360
|
+
export const IconViewPieChartAlt: React.FC<
|
|
2361
|
+
Omit<iconsRegistry.IconViewPieChartAltProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2362
|
+
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2363
|
+
"24": {
|
|
2364
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M20.97 12.75a9 9 0 0 1-14.782 6.122c-.316-.268-.315-.745-.022-1.038l5.541-5.541a1 1 0 0 1 .707-.293h7.836c.414 0 .753.337.72.75\" class=\"icon-light\"/><path fill=\"#BFC2D4\" d=\"M5.128 17.812A8.96 8.96 0 0 1 3 12a8.97 8.97 0 0 1 2.636-6.364 8.97 8.97 0 0 1 5.615-2.605c.413-.034.749.305.749.719v7.836a1 1 0 0 1-.293.707l-5.54 5.54c-.294.294-.771.295-1.039-.02\" class=\"icon-light-secondary\"/><path fill=\"#9095AD\" d=\"M12 3.75c0-.414.337-.753.75-.72a9 9 0 0 1 8.22 8.22c.033.413-.306.75-.72.75h-7.5a.75.75 0 0 1-.75-.75z\" class=\"icon-dark-secondary\"/><path stroke=\"#1B1E2E\" stroke-width=\"2\" d=\"M21 12a9 9 0 0 1-15.364 6.364M21 12a9 9 0 0 0-9-9m9 9h-9m0-9a9 9 0 0 0-6.364 15.364M12 3v9m0 0-6.364 6.364\" class=\"icon-dark\"/>"
|
|
2365
|
+
}
|
|
2366
|
+
}, ["24"], "view-pie-chart-alt"))
|
|
2367
|
+
|
|
2368
|
+
|
|
2318
2369
|
export const IconViewPieChart: React.FC<
|
|
2319
2370
|
Omit<iconsRegistry.IconViewPieChartProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2320
2371
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2321
2372
|
"16": {
|
|
2322
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M8 1a7 7 0 0 1 7
|
|
2373
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M8 1a7 7 0 0 1 7 7H8z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M15 8a7 7 0 0 1-11.95 4.95M15 8a7 7 0 0 0-7-7m7 7H8m0-7a6.98 6.98 0 0 0-4.95 2.05A6.98 6.98 0 0 0 1 8c0 1.933.784 3.683 2.05 4.95M8 1v7m-4.95 4.95L8 8\" class=\"icon-dark\"/>"
|
|
2323
2374
|
},
|
|
2324
2375
|
"24": {
|
|
2325
|
-
"body": "<path fill=\"#D0D2E0\" d=\"M12 3a9 9 0 0 1 9 9h-
|
|
2376
|
+
"body": "<path fill=\"#D0D2E0\" d=\"M12 3a9 9 0 0 1 9 9h-9z\" class=\"icon-light\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M21 12a9 9 0 0 1-15.364 6.364M21 12a9 9 0 0 0-9-9m9 9h-9m0-9a8.97 8.97 0 0 0-6.364 2.636A8.97 8.97 0 0 0 3 12a8.97 8.97 0 0 0 2.636 6.364M12 3v9m-6.364 6.364L12 12\" class=\"icon-dark\"/>"
|
|
2326
2377
|
}
|
|
2327
2378
|
}, ["16","24"], "view-pie-chart"))
|
|
2328
2379
|
|
|
@@ -2331,7 +2382,7 @@ export const IconViewTreeAlt: React.FC<
|
|
|
2331
2382
|
Omit<iconsRegistry.IconViewTreeAltProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2332
2383
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2333
2384
|
"16": {
|
|
2334
|
-
"body": "<path fill=\"currentColor\" d=\"M13 1.999h2v2h-
|
|
2385
|
+
"body": "<path fill=\"currentColor\" d=\"M13 1.999h2v2h-2zM13 7.999h2v2h-2z\" class=\"icon-dark\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 2.999v6h6m-6-6H1m3 0h6m3 1h2v-2h-2zm0 6h2v-2h-2z\" class=\"icon-dark\"/>"
|
|
2335
2386
|
}
|
|
2336
2387
|
}, ["16"], "view-tree-alt"))
|
|
2337
2388
|
|
|
@@ -2340,7 +2391,7 @@ export const IconWarningCircle: React.FC<
|
|
|
2340
2391
|
Omit<iconsRegistry.IconWarningCircleProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2341
2392
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2342
2393
|
"16": {
|
|
2343
|
-
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M2 8a6 6 0 1 1 12 0A6 6 0 0 1 2
|
|
2394
|
+
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M2 8a6 6 0 1 1 12 0A6 6 0 0 1 2 8m6-8a8 8 0 1 0 0 16A8 8 0 0 0 8 0m1 5a1 1 0 0 0-2 0v3a1 1 0 0 0 2 0zm-1 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2\" class=\"icon-dark\" clip-rule=\"evenodd\"/>"
|
|
2344
2395
|
}
|
|
2345
2396
|
}, ["16"], "warning-circle"))
|
|
2346
2397
|
|
|
@@ -2349,6 +2400,18 @@ export const IconWarning: React.FC<
|
|
|
2349
2400
|
Omit<iconsRegistry.IconWarningProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2350
2401
|
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2351
2402
|
"8": {
|
|
2352
|
-
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M4 0a1 1 0 0 1 1 1v3a1 1 0 0 1-2 0V1a1 1 0 0 1 1-
|
|
2403
|
+
"body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M4 0a1 1 0 0 1 1 1v3a1 1 0 0 1-2 0V1a1 1 0 0 1 1-1\" class=\"icon-dark\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" d=\"M5 7a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" class=\"icon-dark\"/>"
|
|
2353
2404
|
}
|
|
2354
2405
|
}, ["8"], "warning"))
|
|
2406
|
+
|
|
2407
|
+
|
|
2408
|
+
export const IconWindowCodeEditor: React.FC<
|
|
2409
|
+
Omit<iconsRegistry.IconWindowCodeEditorProps, 'name'> & React.SVGProps<SVGSVGElement>
|
|
2410
|
+
> = (props) => React.createElement('svg', useIconProps(props, {
|
|
2411
|
+
"16": {
|
|
2412
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M15 3a2 2 0 0 0-2-2H3a2 2 0 0 0-2 2v1h14z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M1 4v9a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4M1 4V3a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1M1 4h14m-5 4 1.5 1.5L10 11M6 8 4.5 9.5 6 11\" class=\"icon-dark\"/>"
|
|
2413
|
+
},
|
|
2414
|
+
"24": {
|
|
2415
|
+
"body": "<path fill=\"#D0D2E0\" fill-rule=\"evenodd\" d=\"M21 6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2h18z\" class=\"icon-light\" clip-rule=\"evenodd\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M3 8v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8M3 8V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v2M3 8h18m-7 4 2 2-2 2m-4-4-2 1.929 2 1.928\" class=\"icon-dark\"/>"
|
|
2416
|
+
}
|
|
2417
|
+
}, ["16","24"], "window-code-editor"))
|