@loomhq/lens 12.17.1 → 12.18.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/README.md +39 -3
- package/dist/cjs/icons/index.js +224 -204
- package/dist/cjs/icons/index.js.map +4 -4
- package/dist/cjs/icons/playlist.js +52 -0
- package/dist/cjs/icons/playlist.js.map +7 -0
- package/dist/cjs/index.js +979 -879
- package/dist/cjs/index.js.map +4 -4
- package/dist/esm/icons/chunk-DNFVTET2.js +23 -0
- package/dist/esm/icons/chunk-DNFVTET2.js.map +7 -0
- package/dist/esm/icons/index.js +33 -29
- package/dist/esm/icons/playlist.js +8 -0
- package/dist/esm/icons/playlist.js.map +7 -0
- package/dist/esm/index.js +905 -805
- package/dist/esm/index.js.map +4 -4
- package/dist/types/app/useTheme.d.ts.map +1 -1
- package/dist/types/icons/index.d.ts +1 -0
- package/dist/types/icons/index.d.ts.map +1 -1
- package/dist/types/icons/playlist.d.ts +3 -0
- package/dist/types/icons/playlist.d.ts.map +1 -0
- package/dist/types/shared-docs/color-box.d.ts +1 -1
- package/dist/types/shared-docs/color-box.d.ts.map +1 -1
- package/dist/types/shared-docs/theme-colors.d.ts.map +1 -1
- package/dist/types/src/colors.d.ts.map +1 -1
- package/dist/types/src/components/icon/available-icons/index.d.ts +1 -0
- package/dist/types/src/components/icon/available-icons/index.d.ts.map +1 -1
- package/dist/types/src/components/icon/available-icons/playlist.d.ts +3 -0
- package/dist/types/src/components/icon/available-icons/playlist.d.ts.map +1 -0
- package/dist/types/src/css-variables/index.d.ts.map +1 -1
- package/dist/types/src/utilities/index.d.ts +1 -0
- package/dist/types/src/utilities/index.d.ts.map +1 -1
- package/dist/types/src/utilities/style-provider.d.ts +92 -0
- package/dist/types/src/utilities/style-provider.d.ts.map +1 -0
- package/package.json +7 -6
package/dist/cjs/icons/index.js
CHANGED
|
@@ -273,6 +273,7 @@ __export(index_exports, {
|
|
|
273
273
|
SvgPlayArrow: () => SvgPlayArrow,
|
|
274
274
|
SvgPlayCircle: () => SvgPlayCircle,
|
|
275
275
|
SvgPlayCircleFilled: () => SvgPlayCircleFilled,
|
|
276
|
+
SvgPlaylist: () => SvgPlaylist,
|
|
276
277
|
SvgPlusCircle: () => SvgPlusCircle,
|
|
277
278
|
SvgPower: () => SvgPower,
|
|
278
279
|
SvgPresent: () => SvgPresent,
|
|
@@ -4180,6 +4181,25 @@ function SvgPlusCircle() {
|
|
|
4180
4181
|
return /* @__PURE__ */ React228.createElement(import_plus_circle.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4181
4182
|
}
|
|
4182
4183
|
|
|
4184
|
+
// src/components/icon/available-icons/playlist.tsx
|
|
4185
|
+
var React229 = __toESM(require("react"));
|
|
4186
|
+
function SvgPlaylist() {
|
|
4187
|
+
return /* @__PURE__ */ React229.createElement("span", { "aria-hidden": true, "data-testid": "ads-refreshed-icon" }, /* @__PURE__ */ React229.createElement("svg", { fill: "none", viewBox: "0 0 16 16" }, /* @__PURE__ */ React229.createElement(
|
|
4188
|
+
"path",
|
|
4189
|
+
{
|
|
4190
|
+
fillRule: "evenodd",
|
|
4191
|
+
fill: "currentcolor",
|
|
4192
|
+
d: "M8.124 7.351a.75.75 0 0 1 .748-.003l3.5 2a.75.75 0 0 1 0 1.303l-3.5 2A.75.75 0 0 1 7.75 12V8a.75.75 0 0 1 .374-.649"
|
|
4193
|
+
}
|
|
4194
|
+
), /* @__PURE__ */ React229.createElement(
|
|
4195
|
+
"path",
|
|
4196
|
+
{
|
|
4197
|
+
fill: "currentcolor",
|
|
4198
|
+
d: "M4 6.624A2.626 2.626 0 0 1 6.625 4h4.052l-.34-1.6a1.125 1.125 0 0 0-1.334-.866L2.4 2.937a1.124 1.124 0 0 0-.866 1.334l1.403 6.602c.11.517.558.873 1.063.889zm1.5 6.75c0 .621.504 1.125 1.125 1.125h6.75c.621 0 1.125-.503 1.125-1.125v-6.75c0-.62-.504-1.125-1.125-1.125h-6.75c-.621 0-1.125.504-1.125 1.125zm10.5 0A2.625 2.625 0 0 1 13.375 16h-6.75A2.625 2.625 0 0 1 4 13.374v-.112a2.624 2.624 0 0 1-2.53-2.077L.065 4.582A2.626 2.626 0 0 1 2.09 1.47L8.69.066a2.626 2.626 0 0 1 3.114 2.022L12.211 4h1.164A2.625 2.625 0 0 1 16 6.624z"
|
|
4199
|
+
}
|
|
4200
|
+
)));
|
|
4201
|
+
}
|
|
4202
|
+
|
|
4183
4203
|
// src/components/icon/available-icons/power.tsx
|
|
4184
4204
|
var import_power = __toESM(require("@atlaskit/icon-lab/core/power"));
|
|
4185
4205
|
var import_react71 = __toESM(require("react"));
|
|
@@ -4189,16 +4209,16 @@ function SvgPower() {
|
|
|
4189
4209
|
|
|
4190
4210
|
// src/components/icon/available-icons/present.tsx
|
|
4191
4211
|
var import_gift = __toESM(require("@atlaskit/icon-lab/core/gift"));
|
|
4192
|
-
var
|
|
4212
|
+
var React231 = __toESM(require("react"));
|
|
4193
4213
|
function SvgPresent() {
|
|
4194
|
-
return /* @__PURE__ */
|
|
4214
|
+
return /* @__PURE__ */ React231.createElement(import_gift.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4195
4215
|
}
|
|
4196
4216
|
|
|
4197
4217
|
// src/components/icon/available-icons/presenter-mode.tsx
|
|
4198
4218
|
var import_presenter_mode2 = __toESM(require("@atlaskit/icon/core/presenter-mode"));
|
|
4199
|
-
var
|
|
4219
|
+
var React232 = __toESM(require("react"));
|
|
4200
4220
|
function SvgPresenterMode() {
|
|
4201
|
-
return /* @__PURE__ */
|
|
4221
|
+
return /* @__PURE__ */ React232.createElement(import_presenter_mode2.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4202
4222
|
}
|
|
4203
4223
|
|
|
4204
4224
|
// src/components/icon/available-icons/pronunciation.tsx
|
|
@@ -4210,16 +4230,16 @@ function SvgPronunciation() {
|
|
|
4210
4230
|
|
|
4211
4231
|
// src/components/icon/available-icons/public-off.tsx
|
|
4212
4232
|
var import_globe_strikethrough = __toESM(require("@atlaskit/icon-lab/core/globe-strikethrough"));
|
|
4213
|
-
var
|
|
4233
|
+
var React234 = __toESM(require("react"));
|
|
4214
4234
|
function SvgPublicOff() {
|
|
4215
|
-
return /* @__PURE__ */
|
|
4235
|
+
return /* @__PURE__ */ React234.createElement(import_globe_strikethrough.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4216
4236
|
}
|
|
4217
4237
|
|
|
4218
4238
|
// src/components/icon/available-icons/public-on.tsx
|
|
4219
4239
|
var import_globe2 = __toESM(require("@atlaskit/icon/core/globe"));
|
|
4220
|
-
var
|
|
4240
|
+
var React235 = __toESM(require("react"));
|
|
4221
4241
|
function SvgPublicOn() {
|
|
4222
|
-
return /* @__PURE__ */
|
|
4242
|
+
return /* @__PURE__ */ React235.createElement(import_globe2.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4223
4243
|
}
|
|
4224
4244
|
|
|
4225
4245
|
// src/components/icon/available-icons/publicon.tsx
|
|
@@ -4236,23 +4256,23 @@ var SvgPublicon = (props) => /* @__PURE__ */ import_react73.default.createElemen
|
|
|
4236
4256
|
|
|
4237
4257
|
// src/components/icon/available-icons/pull-request.tsx
|
|
4238
4258
|
var import_pull_request = __toESM(require("@atlaskit/icon/core/pull-request"));
|
|
4239
|
-
var
|
|
4259
|
+
var React237 = __toESM(require("react"));
|
|
4240
4260
|
function SvgPullRequest() {
|
|
4241
|
-
return /* @__PURE__ */
|
|
4261
|
+
return /* @__PURE__ */ React237.createElement(import_pull_request.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4242
4262
|
}
|
|
4243
4263
|
|
|
4244
4264
|
// src/components/icon/available-icons/quick-edit.tsx
|
|
4245
4265
|
var import_magic_wand = __toESM(require("@atlaskit/icon/core/magic-wand"));
|
|
4246
|
-
var
|
|
4266
|
+
var React238 = __toESM(require("react"));
|
|
4247
4267
|
function SvgQuickEdit() {
|
|
4248
|
-
return /* @__PURE__ */
|
|
4268
|
+
return /* @__PURE__ */ React238.createElement(import_magic_wand.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4249
4269
|
}
|
|
4250
4270
|
|
|
4251
4271
|
// src/components/icon/available-icons/record.tsx
|
|
4252
4272
|
var import_video_record = __toESM(require("@atlaskit/icon-lab/core/video-record"));
|
|
4253
|
-
var
|
|
4273
|
+
var React239 = __toESM(require("react"));
|
|
4254
4274
|
function SvgRecord() {
|
|
4255
|
-
return /* @__PURE__ */
|
|
4275
|
+
return /* @__PURE__ */ React239.createElement(import_video_record.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4256
4276
|
}
|
|
4257
4277
|
|
|
4258
4278
|
// src/components/icon/available-icons/redo.tsx
|
|
@@ -4277,16 +4297,16 @@ var SvgRedo = (props) => /* @__PURE__ */ import_react74.default.createElement("s
|
|
|
4277
4297
|
|
|
4278
4298
|
// src/components/icon/available-icons/redo-alt.tsx
|
|
4279
4299
|
var import_redo = __toESM(require("@atlaskit/icon/core/redo"));
|
|
4280
|
-
var
|
|
4300
|
+
var React241 = __toESM(require("react"));
|
|
4281
4301
|
function SvgRedoAlt() {
|
|
4282
|
-
return /* @__PURE__ */
|
|
4302
|
+
return /* @__PURE__ */ React241.createElement(import_redo.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4283
4303
|
}
|
|
4284
4304
|
|
|
4285
4305
|
// src/components/icon/available-icons/refresh.tsx
|
|
4286
4306
|
var import_refresh = __toESM(require("@atlaskit/icon/core/refresh"));
|
|
4287
|
-
var
|
|
4307
|
+
var React242 = __toESM(require("react"));
|
|
4288
4308
|
function SvgRefresh() {
|
|
4289
|
-
return /* @__PURE__ */
|
|
4309
|
+
return /* @__PURE__ */ React242.createElement(import_refresh.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4290
4310
|
}
|
|
4291
4311
|
|
|
4292
4312
|
// src/components/icon/available-icons/remove-circle-outline.tsx
|
|
@@ -4315,9 +4335,9 @@ var SvgRemoveRedEye = (props) => /* @__PURE__ */ import_react76.default.createEl
|
|
|
4315
4335
|
|
|
4316
4336
|
// src/components/icon/available-icons/repeat.tsx
|
|
4317
4337
|
var import_repeat = __toESM(require("@atlaskit/icon-lab/core/repeat"));
|
|
4318
|
-
var
|
|
4338
|
+
var React245 = __toESM(require("react"));
|
|
4319
4339
|
function SvgRepeat() {
|
|
4320
|
-
return /* @__PURE__ */
|
|
4340
|
+
return /* @__PURE__ */ React245.createElement(import_repeat.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4321
4341
|
}
|
|
4322
4342
|
|
|
4323
4343
|
// src/components/icon/available-icons/replay.tsx
|
|
@@ -4378,23 +4398,23 @@ var SvgReply = (props) => /* @__PURE__ */ import_react79.default.createElement("
|
|
|
4378
4398
|
|
|
4379
4399
|
// src/components/icon/available-icons/reply-left.tsx
|
|
4380
4400
|
var import_reply_left = __toESM(require("@atlaskit/icon-lab/core/reply-left"));
|
|
4381
|
-
var
|
|
4401
|
+
var React249 = __toESM(require("react"));
|
|
4382
4402
|
function SvgReplyLeft() {
|
|
4383
|
-
return /* @__PURE__ */
|
|
4403
|
+
return /* @__PURE__ */ React249.createElement(import_reply_left.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4384
4404
|
}
|
|
4385
4405
|
|
|
4386
4406
|
// src/components/icon/available-icons/reply-right.tsx
|
|
4387
4407
|
var import_reply_right = __toESM(require("@atlaskit/icon-lab/core/reply-right"));
|
|
4388
|
-
var
|
|
4408
|
+
var React250 = __toESM(require("react"));
|
|
4389
4409
|
function SvgReplyRight() {
|
|
4390
|
-
return /* @__PURE__ */
|
|
4410
|
+
return /* @__PURE__ */ React250.createElement(import_reply_right.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4391
4411
|
}
|
|
4392
4412
|
|
|
4393
4413
|
// src/components/icon/available-icons/rewind.tsx
|
|
4394
4414
|
var import_video_rewind_overlay = __toESM(require("@atlaskit/icon-lab/core/video-rewind-overlay"));
|
|
4395
|
-
var
|
|
4415
|
+
var React251 = __toESM(require("react"));
|
|
4396
4416
|
function SvgRewind() {
|
|
4397
|
-
return /* @__PURE__ */
|
|
4417
|
+
return /* @__PURE__ */ React251.createElement(import_video_rewind_overlay.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4398
4418
|
}
|
|
4399
4419
|
|
|
4400
4420
|
// src/components/icon/available-icons/rotate-left.tsx
|
|
@@ -4424,9 +4444,9 @@ function SvgRovo() {
|
|
|
4424
4444
|
}
|
|
4425
4445
|
|
|
4426
4446
|
// src/components/icon/available-icons/safari-logo.tsx
|
|
4427
|
-
var
|
|
4447
|
+
var React254 = __toESM(require("react"));
|
|
4428
4448
|
function SvgSafariLogo(props) {
|
|
4429
|
-
return /* @__PURE__ */
|
|
4449
|
+
return /* @__PURE__ */ React254.createElement(
|
|
4430
4450
|
"svg",
|
|
4431
4451
|
__spreadValues({
|
|
4432
4452
|
width: "96",
|
|
@@ -4435,13 +4455,13 @@ function SvgSafariLogo(props) {
|
|
|
4435
4455
|
fill: "none",
|
|
4436
4456
|
xmlns: "http://www.w3.org/2000/svg"
|
|
4437
4457
|
}, props),
|
|
4438
|
-
/* @__PURE__ */
|
|
4458
|
+
/* @__PURE__ */ React254.createElement("g", { clipPath: "url(#clip0_2_3913)" }, /* @__PURE__ */ React254.createElement("g", { opacity: "0.53", filter: "url(#filter0_f_2_3913)" }, /* @__PURE__ */ React254.createElement(
|
|
4439
4459
|
"path",
|
|
4440
4460
|
{
|
|
4441
4461
|
d: "M91.785 49.9529C91.785 55.4895 90.6526 60.9718 88.4523 66.087C86.252 71.2021 83.0269 75.8498 78.9613 79.7648C74.8957 83.6797 70.0691 86.7852 64.7572 88.904C59.4452 91.0227 53.7518 92.1132 48.0022 92.1132C42.2525 92.1132 36.5592 91.0227 31.2472 88.904C25.9352 86.7852 21.1086 83.6797 17.043 79.7648C12.9774 75.8498 9.7524 71.2021 7.5521 66.087C5.35181 60.9718 4.21933 55.4895 4.21933 49.9529C4.21933 38.7713 8.83215 28.0477 17.043 20.1411C25.2539 12.2345 36.3902 7.7926 48.0022 7.7926C53.7518 7.7926 59.4452 8.88311 64.7572 11.0019C70.0691 13.1206 74.8957 16.2261 78.9613 20.1411C83.0269 24.056 86.252 28.7037 88.4523 33.8189C90.6526 38.934 91.785 44.4163 91.785 49.9529Z",
|
|
4442
4462
|
fill: "black"
|
|
4443
4463
|
}
|
|
4444
|
-
)), /* @__PURE__ */
|
|
4464
|
+
)), /* @__PURE__ */ React254.createElement(
|
|
4445
4465
|
"path",
|
|
4446
4466
|
{
|
|
4447
4467
|
d: "M93.4497 46.2302C93.4497 52.1988 92.2741 58.1089 89.9901 63.6231C87.706 69.1373 84.3582 74.1476 80.1378 78.368C75.9174 82.5884 70.9071 85.9362 65.3929 88.2203C59.8787 90.5044 53.9685 91.6799 48 91.6799C35.946 91.6799 24.3857 86.8915 15.8622 78.368C7.33875 69.8446 2.55032 58.2842 2.55032 46.2302C2.55032 34.1762 7.33875 22.6159 15.8622 14.0924C24.3857 5.56897 35.946 0.780521 48 0.780518C53.9685 0.780517 59.8787 1.95611 65.3929 4.24018C70.9071 6.52424 75.9174 9.87204 80.1378 14.0924C84.3582 18.3128 87.706 23.3232 89.9901 28.8374C92.2741 34.3516 93.4497 40.2617 93.4497 46.2302Z",
|
|
@@ -4451,37 +4471,37 @@ function SvgSafariLogo(props) {
|
|
|
4451
4471
|
strokeLinecap: "round",
|
|
4452
4472
|
strokeLinejoin: "round"
|
|
4453
4473
|
}
|
|
4454
|
-
), /* @__PURE__ */
|
|
4474
|
+
), /* @__PURE__ */ React254.createElement(
|
|
4455
4475
|
"path",
|
|
4456
4476
|
{
|
|
4457
4477
|
d: "M89.8883 46.2302C89.8883 57.3397 85.4751 67.9941 77.6195 75.8497C69.7639 83.7053 59.1095 88.1185 48 88.1185C36.8905 88.1185 26.2361 83.7053 18.3805 75.8497C10.5249 67.9941 6.11168 57.3397 6.11168 46.2302C6.11168 35.1208 10.5249 24.4663 18.3805 16.6107C26.2361 8.75514 36.8905 4.34192 48 4.34192C59.1095 4.34192 69.7639 8.75514 77.6195 16.6107C85.4751 24.4663 89.8883 35.1208 89.8883 46.2302Z",
|
|
4458
4478
|
fill: "url(#paint1_radial_2_3913)"
|
|
4459
4479
|
}
|
|
4460
|
-
), /* @__PURE__ */
|
|
4480
|
+
), /* @__PURE__ */ React254.createElement(
|
|
4461
4481
|
"path",
|
|
4462
4482
|
{
|
|
4463
4483
|
d: "M48 6.52637C47.6617 6.52637 47.3893 6.79873 47.3893 7.13708V14.1814C47.3893 14.5198 47.6617 14.7922 48 14.7922C48.3384 14.7922 48.6107 14.5198 48.6107 14.1814V7.13708C48.6107 6.79873 48.3384 6.52637 48 6.52637ZM44.0047 6.77888C43.9642 6.77453 43.9226 6.77453 43.8805 6.77939C43.544 6.8145 43.3014 7.11368 43.3365 7.4502L43.6443 10.3973C43.6795 10.7338 43.9786 10.9764 44.3151 10.9413C44.6517 10.9062 44.8943 10.607 44.8592 10.2705L44.5516 7.32343C44.5208 7.02897 44.2879 6.80638 44.0047 6.77888ZM52.0232 6.78178C51.74 6.80906 51.507 7.03164 51.4761 7.32606L51.1661 10.2729C51.1307 10.6094 51.3734 10.9088 51.7099 10.9442C52.0463 10.9796 52.3455 10.7372 52.3809 10.4007L52.6909 7.45364C52.7263 7.11714 52.4836 6.81794 52.1471 6.78257C52.105 6.77821 52.0637 6.77819 52.0232 6.78178ZM39.9005 7.37404C39.8599 7.37436 39.8186 7.37839 39.7772 7.3871C39.4462 7.45718 39.2361 7.78013 39.3062 8.11114L40.7651 15.0026C40.8352 15.3336 41.1581 15.5437 41.4891 15.4737C41.8201 15.4036 42.0302 15.0809 41.9602 14.7499L40.5013 7.85812C40.4399 7.56848 40.185 7.37182 39.9005 7.37404ZM56.1271 7.37984C55.8426 7.37694 55.5877 7.57418 55.5262 7.86376L54.0623 14.7544C53.9919 15.0854 54.2019 15.4085 54.5328 15.4788C54.8637 15.5491 55.1868 15.3392 55.2571 15.0083L56.721 8.11757C56.7914 7.78662 56.5814 7.46356 56.2505 7.39327C56.2092 7.38456 56.1678 7.37984 56.1271 7.37984ZM35.9838 8.47842C35.9047 8.47117 35.8231 8.47987 35.7426 8.50657C35.4208 8.61118 35.2458 8.95417 35.3504 9.27595L36.2661 12.0941C36.3707 12.4159 36.7139 12.5909 37.0357 12.4863C37.3575 12.3817 37.5322 12.0385 37.4276 11.7167L36.512 8.89852C36.4336 8.65717 36.221 8.49859 35.9838 8.47842ZM60.0218 8.47987C59.7846 8.50004 59.572 8.65868 59.4936 8.90001L58.5774 11.7179C58.4727 12.0397 58.6476 12.383 58.9693 12.4876C59.2911 12.5922 59.6343 12.4173 59.739 12.0956L60.6551 9.27746C60.7598 8.95568 60.5849 8.61241 60.2632 8.50782C60.1828 8.4817 60.1008 8.4732 60.0218 8.47987ZM32.1105 9.89581C32.0311 9.89726 31.9508 9.91467 31.8736 9.94905C31.5645 10.0865 31.4262 10.4459 31.5636 10.7551L34.4247 17.1922C34.5621 17.5013 34.9216 17.6396 35.2307 17.5021C35.5397 17.3647 35.6784 17.0053 35.541 16.6961L32.6796 10.259C32.5765 10.0271 32.3485 9.89119 32.1105 9.89581ZM63.9388 9.91743C63.7008 9.91307 63.4726 10.0482 63.3692 10.2798L60.4994 16.713C60.3615 17.022 60.4993 17.3817 60.8083 17.5195C61.1173 17.6574 61.477 17.5196 61.6148 17.2106L64.4847 10.7775C64.6225 10.4685 64.4847 10.1088 64.1758 9.97093C64.0986 9.93655 64.0181 9.91917 63.9388 9.91743ZM28.5153 11.7981C28.3981 11.7893 28.2773 11.8155 28.1674 11.879C27.8744 12.0482 27.7747 12.4202 27.9439 12.7132L29.4255 15.2794C29.5946 15.5725 29.9666 15.6721 30.2597 15.5029C30.5527 15.3338 30.6523 14.9617 30.4832 14.6687L29.0016 12.1025C28.8958 11.9194 28.7107 11.8117 28.5153 11.7981ZM67.4847 11.7981C67.2893 11.8111 67.1044 11.9193 66.9987 12.1025L65.5168 14.6687C65.3476 14.9617 65.4476 15.3337 65.7406 15.5029C66.0336 15.6721 66.4057 15.5724 66.5748 15.2794L68.0564 12.7132C68.2256 12.4202 68.1259 12.0481 67.8329 11.879C67.723 11.8156 67.602 11.7899 67.4847 11.7981ZM25.0242 13.9755C24.9067 13.9798 24.789 14.0175 24.6863 14.092C24.4125 14.2906 24.3519 14.671 24.5507 14.9449L28.687 20.6469C28.8856 20.9207 29.2663 20.9813 29.5402 20.7827C29.814 20.584 29.8746 20.2036 29.6758 19.9297L25.5393 14.2278C25.4151 14.0566 25.22 13.9688 25.0242 13.9755ZM71.0195 14.0065C70.8238 13.9993 70.6286 14.087 70.5042 14.258L66.36 19.9544C66.161 20.228 66.221 20.6086 66.4947 20.8076C66.7683 21.0066 67.1488 20.9467 67.3479 20.6732L71.4918 14.9768C71.6909 14.7032 71.6307 14.3227 71.3572 14.1236C71.2546 14.049 71.137 14.0107 71.0195 14.0065ZM21.9037 16.5925C21.7478 16.5838 21.5888 16.6358 21.463 16.749C21.2116 16.9754 21.1913 17.36 21.4178 17.6115L23.4004 19.8139C23.6267 20.0654 24.0113 20.0856 24.2628 19.8592C24.5143 19.6328 24.5345 19.248 24.3081 18.9965L22.3257 16.7943C22.2126 16.6685 22.0596 16.6007 21.9037 16.5925ZM74.1007 16.5968C73.9448 16.6055 73.792 16.673 73.6788 16.7987L71.6961 19.0006C71.4697 19.2521 71.4898 19.6369 71.7413 19.8633C71.9927 20.0897 72.3773 20.0694 72.6037 19.8181L74.5866 17.6161C74.813 17.3647 74.7927 16.9798 74.5413 16.7535C74.4155 16.6403 74.2567 16.5886 74.1007 16.5968ZM18.9129 19.4653C18.757 19.474 18.6044 19.5415 18.4912 19.6672C18.2648 19.9187 18.2851 20.3033 18.5365 20.5297L23.7719 25.2427C24.0234 25.4691 24.408 25.4488 24.6343 25.1974C24.8607 24.9459 24.8407 24.5613 24.5892 24.335L19.3535 19.622C19.2277 19.5088 19.0688 19.4571 18.9129 19.4653ZM77.1061 19.4859C76.9502 19.4772 76.7909 19.5292 76.6651 19.6422L71.4265 24.3516C71.1749 24.5778 71.1542 24.9624 71.3804 25.214C71.6066 25.4656 71.9914 25.486 72.243 25.2598L77.4819 20.5505C77.7335 20.3243 77.754 19.9397 77.5278 19.6881C77.4146 19.5623 77.262 19.4942 77.1061 19.4859ZM16.4258 22.6634C16.23 22.6561 16.0348 22.7443 15.9105 22.9153C15.7116 23.1891 15.772 23.5694 16.0457 23.7683L18.443 25.51C18.7167 25.7089 19.097 25.6488 19.2959 25.3751C19.4948 25.1013 19.4346 24.7207 19.161 24.5219L16.7637 22.7801C16.6612 22.7056 16.5433 22.6676 16.4258 22.6634ZM79.5908 22.6856C79.4733 22.6899 79.3556 22.7275 79.2529 22.8021L76.8546 24.5422C76.5808 24.7409 76.5202 25.1215 76.7188 25.3954C76.9175 25.6693 77.2979 25.7296 77.5718 25.5309L79.9703 23.7908C80.2442 23.5921 80.3045 23.2117 80.1058 22.9379C79.9816 22.7667 79.7866 22.6789 79.5908 22.6856ZM14.1016 26.0746C13.9062 26.0877 13.7213 26.1959 13.6155 26.3791C13.4464 26.6721 13.5461 27.0441 13.8391 27.2133L19.9396 30.7355C20.2326 30.9046 20.6046 30.805 20.7738 30.512C20.943 30.219 20.8433 29.8469 20.5503 29.6777L14.4498 26.1555C14.3399 26.0921 14.2188 26.0665 14.1016 26.0746ZM81.8984 26.0746C81.7812 26.0659 81.6601 26.0921 81.5502 26.1556L75.4497 29.6778C75.1567 29.847 75.0571 30.219 75.2262 30.512C75.3954 30.805 75.7674 30.9047 76.0605 30.7355L82.1612 27.2134C82.4542 27.0442 82.5539 26.6721 82.3847 26.3791C82.279 26.196 82.0938 26.0883 81.8984 26.0746ZM12.3443 29.7107C12.1063 29.7049 11.8781 29.8411 11.7747 30.0728C11.6369 30.3818 11.7746 30.7416 12.0836 30.8794L14.79 32.0866C15.099 32.2244 15.4588 32.0867 15.5966 31.7777C15.7344 31.4687 15.5964 31.1089 15.2874 30.9711L12.5813 29.7639C12.5041 29.7294 12.4236 29.7123 12.3443 29.7107ZM83.6676 29.7358C83.5882 29.7372 83.5076 29.7547 83.4303 29.789L80.7234 30.9941C80.4143 31.1318 80.2761 31.4913 80.4137 31.8004C80.5514 32.1095 80.9111 32.2477 81.2202 32.1101L83.9272 30.9047C84.2363 30.7672 84.3742 30.4076 84.2366 30.0985C84.1335 29.8666 83.9056 29.7311 83.6676 29.7358ZM10.7781 33.511C10.5409 33.5309 10.3283 33.6893 10.2497 33.9306C10.1449 34.2523 10.3193 34.5957 10.6411 34.7005L17.3388 36.8829C17.6605 36.9877 18.0039 36.8132 18.1088 36.4915C18.2135 36.1698 18.0391 35.8264 17.7173 35.7216L11.0196 33.5392C10.9392 33.5129 10.8572 33.5043 10.7781 33.511ZM85.2308 33.5371C85.1518 33.5299 85.0701 33.5386 84.9897 33.5653L78.2903 35.743C77.9685 35.8476 77.7938 36.1908 77.8984 36.5126C78.003 36.8344 78.3462 37.0091 78.668 36.9046L85.3671 34.7269C85.6889 34.6223 85.8639 34.279 85.7593 33.9572C85.6808 33.7159 85.468 33.5573 85.2308 33.5371ZM9.80238 37.5003C9.51786 37.4974 9.2627 37.6949 9.20116 37.9845C9.13079 38.3154 9.34073 38.6384 9.67164 38.7088L12.5702 39.3248C12.9012 39.3951 13.2242 39.1852 13.2945 38.8543C13.3649 38.5233 13.1549 38.2003 12.824 38.13L9.92572 37.514C9.88437 37.5053 9.843 37.5003 9.80238 37.5003ZM86.199 37.5061C86.1583 37.5064 86.1173 37.5119 86.0759 37.5192L83.1773 38.1349C82.8464 38.2052 82.6366 38.528 82.7069 38.8589C82.7772 39.1899 83.1002 39.4 83.4312 39.3297L86.3295 38.714C86.6604 38.6436 86.8705 38.3206 86.8002 37.9896C86.7387 37.7001 86.4835 37.5037 86.199 37.5061ZM9.06383 41.513C8.78061 41.5401 8.5475 41.7623 8.51639 42.0568C8.48084 42.3932 8.72288 42.6928 9.05934 42.7283L16.0647 43.469C16.4012 43.5046 16.7008 43.2622 16.7363 42.9258C16.7718 42.5893 16.5296 42.2897 16.1931 42.2542L9.18772 41.5135C9.14564 41.5092 9.10431 41.5092 9.06383 41.513ZM86.9428 41.5657C86.9023 41.5613 86.8606 41.5613 86.8186 41.5662L79.8124 42.2973C79.4759 42.3325 79.2333 42.6316 79.2684 42.9681C79.3035 43.3047 79.6027 43.5473 79.9392 43.5122L86.9454 42.781C87.2819 42.7459 87.5245 42.4467 87.4894 42.1102C87.4586 41.8158 87.226 41.5932 86.9428 41.5657ZM8.94522 45.6205C8.60687 45.6205 8.33452 45.8929 8.33452 46.2313C8.33452 46.5696 8.60687 46.842 8.94522 46.842H11.9084C12.2467 46.842 12.5193 46.5696 12.5193 46.2313C12.5193 45.8929 12.2467 45.6205 11.9084 45.6205H8.94522ZM84.0917 45.6205C83.7533 45.6205 83.4809 45.8929 83.4809 46.2313C83.4809 46.5696 83.7533 46.842 84.0917 46.842H87.0548C87.3931 46.842 87.6655 46.5696 87.6655 46.2313C87.6655 45.8929 87.3931 45.6205 87.0548 45.6205H84.0917ZM16.1849 48.9498C16.1444 48.9454 16.1031 48.9454 16.061 48.9503L9.05457 49.6815C8.71805 49.7166 8.47547 50.0158 8.51056 50.3523C8.54567 50.6888 8.84484 50.9314 9.18135 50.8963L16.1878 50.1651C16.5243 50.13 16.7669 49.8308 16.7318 49.4943C16.701 49.1999 16.4681 48.9773 16.1849 48.9498ZM79.8114 48.993C79.5282 49.0202 79.2951 49.2424 79.264 49.5368C79.2284 49.8733 79.4705 50.1728 79.8069 50.2084L86.8123 50.949C87.1488 50.9846 87.4483 50.7423 87.4839 50.4058C87.5194 50.0693 87.2771 49.7698 86.9407 49.7342L79.9356 48.9936C79.8935 48.9892 79.8519 48.9892 79.8114 48.993ZM12.6925 53.1188C12.6519 53.1192 12.6105 53.1232 12.5692 53.1319L9.67061 53.7476C9.33964 53.8179 9.12984 54.1409 9.20013 54.4719C9.27049 54.8029 9.59348 55.0127 9.92444 54.9424L12.823 54.3269C13.154 54.2565 13.3638 53.9336 13.2935 53.6026C13.232 53.313 12.977 53.1164 12.6925 53.1188ZM83.3067 53.1246C83.0222 53.1217 82.7673 53.3189 82.7058 53.6085C82.6354 53.9395 82.8451 54.2625 83.176 54.3329L86.0745 54.9488C86.4055 55.0192 86.7285 54.8095 86.7989 54.4786C86.8692 54.1477 86.6593 53.8244 86.3284 53.754L83.4301 53.1381C83.3887 53.1293 83.3473 53.1246 83.3067 53.1246ZM17.5734 55.53C17.4943 55.5228 17.4127 55.5315 17.3322 55.5582L10.6329 57.7358C10.3111 57.8404 10.1364 58.1837 10.241 58.5055C10.3456 58.8273 10.6888 59.002 11.0106 58.8974L17.7097 56.7197C18.0315 56.6151 18.2065 56.2719 18.1019 55.9501C18.0234 55.7088 17.8106 55.5501 17.5734 55.53ZM78.42 55.5516C78.1828 55.5715 77.9701 55.73 77.8915 55.9713C77.7868 56.293 77.9612 56.6363 78.2829 56.7412L84.9807 58.9236C85.3024 59.0283 85.6458 58.8538 85.7506 58.5322C85.8555 58.2105 85.681 57.8671 85.3592 57.7623L78.6614 55.5798C78.5811 55.5536 78.4991 55.545 78.42 55.5516ZM15.017 60.2997C14.9376 60.3012 14.8573 60.3183 14.78 60.3527L12.0728 61.558C11.7637 61.6956 11.6258 62.0552 11.7634 62.3643C11.9011 62.6734 12.2606 62.8113 12.5697 62.6737L15.2769 61.4687C15.586 61.3311 15.7239 60.9715 15.5863 60.6624C15.4832 60.4305 15.255 60.295 15.017 60.2997ZM80.9733 60.3229C80.7353 60.3171 80.5071 60.4534 80.4037 60.6851C80.2658 60.9941 80.4036 61.3538 80.7126 61.4916L83.4187 62.6988C83.7277 62.8366 84.0875 62.6989 84.2253 62.3899C84.3631 62.0809 84.2254 61.7212 83.9164 61.5834L81.2102 60.3762C81.133 60.3416 81.0526 60.3245 80.9733 60.3229ZM20.2877 61.6464C20.1705 61.6377 20.0494 61.6638 19.9396 61.7273L13.8391 65.2495C13.5461 65.4187 13.4464 65.7907 13.6155 66.0837C13.7847 66.3767 14.1568 66.4764 14.4498 66.3072L20.5503 62.7853C20.8433 62.6161 20.9429 62.2438 20.7738 61.9508C20.668 61.7677 20.4832 61.66 20.2877 61.6464ZM75.7125 61.6464C75.5171 61.6594 75.332 61.7677 75.2262 61.9508C75.0571 62.2438 75.1567 62.6161 75.4497 62.7853L81.5502 66.3072C81.8433 66.4764 82.2155 66.3767 82.3847 66.0837C82.5539 65.7907 82.4542 65.4186 82.1612 65.2495L76.0605 61.7273C75.9506 61.6639 75.8298 61.6382 75.7125 61.6464ZM18.7661 66.8151C18.6486 66.8195 18.5309 66.8573 18.4282 66.9319L16.0299 68.672C15.7561 68.8707 15.6955 69.2511 15.8941 69.525C16.0928 69.7988 16.4732 69.8594 16.7471 69.6606L19.1456 67.9205C19.4195 67.7218 19.48 67.3414 19.2814 67.0676C19.1572 66.8964 18.9619 66.8084 18.7661 66.8151ZM77.2194 66.8357C77.0236 66.8285 76.8284 66.9167 76.7041 67.0877C76.5052 67.3614 76.5656 67.742 76.8393 67.9409L79.2366 69.6826C79.5103 69.8815 79.8906 69.8212 80.0895 69.5474C80.2884 69.2737 80.2282 68.8933 79.9546 68.6944L77.5574 66.9527C77.4548 66.8781 77.3369 66.8399 77.2194 66.8357ZM24.1979 67.0466C24.042 67.0379 23.883 67.0898 23.7572 67.2029L18.5184 71.9122C18.2667 72.1384 18.2463 72.523 18.4725 72.7746C18.6987 73.0262 19.0833 73.0467 19.3349 72.8205L24.5738 68.1111C24.8254 67.885 24.8458 67.5004 24.6196 67.2487C24.5066 67.1229 24.3538 67.0549 24.1979 67.0466ZM71.7876 67.0634C71.6317 67.0721 71.4788 67.1396 71.3656 67.2653C71.1392 67.5168 71.1595 67.9013 71.4109 68.1277L76.6463 72.8407C76.8978 73.0671 77.2826 73.0469 77.509 72.7955C77.7354 72.544 77.7151 72.1594 77.4638 71.9331L72.228 67.22C72.1022 67.1068 71.9435 67.0552 71.7876 67.0634ZM29.1679 71.5374C28.9722 71.5301 28.7768 71.6177 28.6524 71.7888L24.5084 77.4852C24.3094 77.7589 24.3693 78.1394 24.6428 78.3384C24.9164 78.5375 25.2969 78.4776 25.496 78.2039L29.6399 72.5075C29.839 72.2339 29.7791 71.8534 29.5056 71.6543C29.403 71.5797 29.2854 71.5414 29.1679 71.5374ZM66.7981 71.5629C66.6806 71.5673 66.5629 71.6048 66.4602 71.6794C66.1863 71.8781 66.1258 72.2585 66.3244 72.5323L70.4607 78.2343C70.6593 78.5082 71.0397 78.5687 71.3136 78.3701C71.5875 78.1714 71.648 77.7911 71.4494 77.5172L67.3131 71.8152C67.1889 71.6441 66.9939 71.5562 66.7981 71.5629ZM23.8184 72.4427C23.6625 72.4514 23.5096 72.5189 23.3964 72.6446L21.4137 74.8465C21.1873 75.098 21.2074 75.4828 21.4589 75.7092C21.7103 75.9356 22.0949 75.9153 22.3213 75.6638L24.3042 73.4619C24.5306 73.2105 24.5103 72.8256 24.2589 72.5992C24.1331 72.486 23.9743 72.4346 23.8184 72.4427ZM72.178 72.4456C72.0221 72.4369 71.8632 72.489 71.7375 72.6022C71.486 72.8285 71.4658 73.2131 71.6921 73.4646L73.6745 75.6671C73.9008 75.9185 74.2854 75.9388 74.5369 75.7123C74.7884 75.486 74.8086 75.1011 74.5822 74.8496L72.5998 72.6475C72.4866 72.5217 72.3339 72.4538 72.178 72.4456ZM34.9548 74.8885C34.7168 74.8826 34.4888 75.0189 34.3855 75.2506L31.5153 81.6837C31.3775 81.9927 31.5153 82.3524 31.8243 82.4903C32.1333 82.6281 32.493 82.4904 32.6308 82.1814L35.5009 75.7482C35.6387 75.4392 35.501 75.0795 35.192 74.9417C35.1148 74.9072 35.0341 74.89 34.9548 74.8885ZM61.0065 74.9062C60.9271 74.9076 60.8466 74.9247 60.7693 74.9591C60.4603 75.0965 60.3219 75.456 60.4593 75.7651L63.3204 82.2022C63.4578 82.5112 63.8175 82.6496 64.1267 82.5122C64.4357 82.3748 64.5741 82.0153 64.4367 81.7062L61.5756 75.2691C61.4725 75.0373 61.2445 74.9016 61.0065 74.9062ZM29.9115 76.8774C29.7161 76.8905 29.5312 76.9987 29.4255 77.1819L27.9439 79.7481C27.7747 80.0411 27.8744 80.4131 28.1674 80.5823C28.4604 80.7515 28.8324 80.6518 29.0016 80.3588L30.4832 77.7926C30.6523 77.4996 30.5527 77.1275 30.2597 76.9584C30.1498 76.895 30.0287 76.8693 29.9115 76.8774ZM66.0885 76.8774C65.9713 76.8687 65.8505 76.895 65.7406 76.9584C65.4476 77.1276 65.3479 77.4996 65.5171 77.7926L66.9987 80.3588C67.1678 80.6518 67.5399 80.7515 67.8329 80.5823C68.1259 80.4132 68.2256 80.0411 68.0564 79.7481L66.5748 77.1819C66.4691 76.9988 66.2839 76.8911 66.0885 76.8774ZM41.3441 76.9694C41.0596 76.9665 40.8047 77.1638 40.7432 77.4534L39.2793 84.3441C39.2089 84.675 39.4189 84.9981 39.7498 85.0684C40.0807 85.1387 40.4038 84.9288 40.4741 84.5979L41.938 77.7072C42.0084 77.3762 41.7984 77.0532 41.4675 76.9829C41.4262 76.9742 41.3848 76.9694 41.3441 76.9694ZM54.6342 76.9738C54.5936 76.9741 54.5526 76.9781 54.5112 76.9868C54.1802 77.0569 53.9701 77.3796 54.0402 77.7106L55.4991 84.6024C55.5692 84.9334 55.8921 85.1435 56.2231 85.0734C56.5541 85.0033 56.7642 84.6804 56.6942 84.3494L55.235 77.4581C55.1736 77.1684 54.9187 76.9716 54.6342 76.9738ZM48 77.6688C47.6617 77.6688 47.3893 77.9412 47.3893 78.2795V85.3239C47.3893 85.6623 47.6617 85.9346 48 85.9346C48.3384 85.9346 48.6107 85.6623 48.6107 85.3239V78.2795C48.6107 77.9412 48.3384 77.6688 48 77.6688ZM36.7895 79.9451C36.5523 79.9653 36.3395 80.1239 36.2611 80.3652L35.3451 83.1834C35.2405 83.5052 35.4153 83.8484 35.7371 83.9531C36.0588 84.0577 36.4021 83.8825 36.5067 83.5609L37.4226 80.7429C37.5272 80.4212 37.3524 80.0779 37.0307 79.9733C36.9503 79.9472 36.8686 79.9384 36.7895 79.9451ZM59.2057 79.9465C59.1267 79.9393 59.045 79.948 58.9646 79.9745C58.6428 80.0792 58.4678 80.4224 58.5723 80.7442L59.488 83.5624C59.5926 83.8842 59.9359 84.0589 60.2577 83.9543C60.5794 83.8497 60.7544 83.5067 60.6499 83.1849L59.734 80.3668C59.6555 80.1254 59.4429 79.9667 59.2057 79.9465ZM44.1665 81.5161C43.8833 81.5434 43.65 81.7657 43.6191 82.0602L43.3094 85.0072C43.274 85.3437 43.5164 85.6429 43.8529 85.6783C44.1894 85.7137 44.4888 85.4713 44.5242 85.1348L44.8339 82.188C44.8693 81.8515 44.6269 81.5521 44.2904 81.5167C44.2484 81.5123 44.207 81.5123 44.1665 81.5161ZM51.8089 81.519C51.7685 81.5147 51.7268 81.5147 51.6848 81.5196C51.3482 81.5547 51.1056 81.8538 51.1407 82.1903L51.4486 85.1377C51.4837 85.4742 51.7829 85.7166 52.1194 85.6814C52.4559 85.6463 52.6986 85.3471 52.6634 85.0106L52.3558 82.0636C52.3251 81.7691 52.0921 81.5466 51.8089 81.519Z",
|
|
4464
4484
|
fill: "#F4F2F3"
|
|
4465
4485
|
}
|
|
4466
|
-
), /* @__PURE__ */
|
|
4486
|
+
), /* @__PURE__ */ React254.createElement("g", { opacity: "0.409", filter: "url(#filter1_f_2_3913)" }, /* @__PURE__ */ React254.createElement(
|
|
4467
4487
|
"path",
|
|
4468
4488
|
{
|
|
4469
4489
|
d: "M76.623 21.8018L43.2099 41.2149L22.0837 74.4734L52.9895 51.5818L76.623 21.8018Z",
|
|
4470
4490
|
fill: "black"
|
|
4471
4491
|
}
|
|
4472
|
-
)), /* @__PURE__ */
|
|
4492
|
+
)), /* @__PURE__ */ React254.createElement(
|
|
4473
4493
|
"path",
|
|
4474
4494
|
{
|
|
4475
4495
|
d: "M52.7887 51.2451L43.2114 41.2154L77.1857 18.3608L52.7887 51.2451Z",
|
|
4476
4496
|
fill: "#FF5150"
|
|
4477
4497
|
}
|
|
4478
|
-
), /* @__PURE__ */
|
|
4498
|
+
), /* @__PURE__ */ React254.createElement(
|
|
4479
4499
|
"path",
|
|
4480
4500
|
{
|
|
4481
4501
|
d: "M52.7887 51.245L43.2113 41.2153L18.8143 74.0996L52.7887 51.245Z",
|
|
4482
4502
|
fill: "#F1F1F1"
|
|
4483
4503
|
}
|
|
4484
|
-
), /* @__PURE__ */
|
|
4504
|
+
), /* @__PURE__ */ React254.createElement(
|
|
4485
4505
|
"path",
|
|
4486
4506
|
{
|
|
4487
4507
|
opacity: "0.243",
|
|
@@ -4489,7 +4509,7 @@ function SvgSafariLogo(props) {
|
|
|
4489
4509
|
fill: "black"
|
|
4490
4510
|
}
|
|
4491
4511
|
)),
|
|
4492
|
-
/* @__PURE__ */
|
|
4512
|
+
/* @__PURE__ */ React254.createElement("defs", null, /* @__PURE__ */ React254.createElement(
|
|
4493
4513
|
"filter",
|
|
4494
4514
|
{
|
|
4495
4515
|
id: "filter0_f_2_3913",
|
|
@@ -4500,8 +4520,8 @@ function SvgSafariLogo(props) {
|
|
|
4500
4520
|
filterUnits: "userSpaceOnUse",
|
|
4501
4521
|
colorInterpolationFilters: "sRGB"
|
|
4502
4522
|
},
|
|
4503
|
-
/* @__PURE__ */
|
|
4504
|
-
/* @__PURE__ */
|
|
4523
|
+
/* @__PURE__ */ React254.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
|
|
4524
|
+
/* @__PURE__ */ React254.createElement(
|
|
4505
4525
|
"feBlend",
|
|
4506
4526
|
{
|
|
4507
4527
|
mode: "normal",
|
|
@@ -4510,14 +4530,14 @@ function SvgSafariLogo(props) {
|
|
|
4510
4530
|
result: "shape"
|
|
4511
4531
|
}
|
|
4512
4532
|
),
|
|
4513
|
-
/* @__PURE__ */
|
|
4533
|
+
/* @__PURE__ */ React254.createElement(
|
|
4514
4534
|
"feGaussianBlur",
|
|
4515
4535
|
{
|
|
4516
4536
|
stdDeviation: "2.475",
|
|
4517
4537
|
result: "effect1_foregroundBlur_2_3913"
|
|
4518
4538
|
}
|
|
4519
4539
|
)
|
|
4520
|
-
), /* @__PURE__ */
|
|
4540
|
+
), /* @__PURE__ */ React254.createElement(
|
|
4521
4541
|
"filter",
|
|
4522
4542
|
{
|
|
4523
4543
|
id: "filter1_f_2_3913",
|
|
@@ -4528,8 +4548,8 @@ function SvgSafariLogo(props) {
|
|
|
4528
4548
|
filterUnits: "userSpaceOnUse",
|
|
4529
4549
|
colorInterpolationFilters: "sRGB"
|
|
4530
4550
|
},
|
|
4531
|
-
/* @__PURE__ */
|
|
4532
|
-
/* @__PURE__ */
|
|
4551
|
+
/* @__PURE__ */ React254.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
|
|
4552
|
+
/* @__PURE__ */ React254.createElement(
|
|
4533
4553
|
"feBlend",
|
|
4534
4554
|
{
|
|
4535
4555
|
mode: "normal",
|
|
@@ -4538,14 +4558,14 @@ function SvgSafariLogo(props) {
|
|
|
4538
4558
|
result: "shape"
|
|
4539
4559
|
}
|
|
4540
4560
|
),
|
|
4541
|
-
/* @__PURE__ */
|
|
4561
|
+
/* @__PURE__ */ React254.createElement(
|
|
4542
4562
|
"feGaussianBlur",
|
|
4543
4563
|
{
|
|
4544
4564
|
stdDeviation: "1.27242",
|
|
4545
4565
|
result: "effect1_foregroundBlur_2_3913"
|
|
4546
4566
|
}
|
|
4547
4567
|
)
|
|
4548
|
-
), /* @__PURE__ */
|
|
4568
|
+
), /* @__PURE__ */ React254.createElement(
|
|
4549
4569
|
"linearGradient",
|
|
4550
4570
|
{
|
|
4551
4571
|
id: "paint0_linear_2_3913",
|
|
@@ -4555,9 +4575,9 @@ function SvgSafariLogo(props) {
|
|
|
4555
4575
|
y2: "0.780279",
|
|
4556
4576
|
gradientUnits: "userSpaceOnUse"
|
|
4557
4577
|
},
|
|
4558
|
-
/* @__PURE__ */
|
|
4559
|
-
/* @__PURE__ */
|
|
4560
|
-
), /* @__PURE__ */
|
|
4578
|
+
/* @__PURE__ */ React254.createElement("stop", { stopColor: "#BDBDBD" }),
|
|
4579
|
+
/* @__PURE__ */ React254.createElement("stop", { offset: "1", stopColor: "white" })
|
|
4580
|
+
), /* @__PURE__ */ React254.createElement(
|
|
4561
4581
|
"radialGradient",
|
|
4562
4582
|
{
|
|
4563
4583
|
id: "paint1_radial_2_3913",
|
|
@@ -4567,12 +4587,12 @@ function SvgSafariLogo(props) {
|
|
|
4567
4587
|
gradientUnits: "userSpaceOnUse",
|
|
4568
4588
|
gradientTransform: "translate(48.1888 40.1224) scale(45.4496 45.4495)"
|
|
4569
4589
|
},
|
|
4570
|
-
/* @__PURE__ */
|
|
4571
|
-
/* @__PURE__ */
|
|
4572
|
-
/* @__PURE__ */
|
|
4573
|
-
/* @__PURE__ */
|
|
4574
|
-
/* @__PURE__ */
|
|
4575
|
-
), /* @__PURE__ */
|
|
4590
|
+
/* @__PURE__ */ React254.createElement("stop", { stopColor: "#06C2E7" }),
|
|
4591
|
+
/* @__PURE__ */ React254.createElement("stop", { offset: "0.25", stopColor: "#0DB8EC" }),
|
|
4592
|
+
/* @__PURE__ */ React254.createElement("stop", { offset: "0.5", stopColor: "#12AEF1" }),
|
|
4593
|
+
/* @__PURE__ */ React254.createElement("stop", { offset: "0.75", stopColor: "#1F86F9" }),
|
|
4594
|
+
/* @__PURE__ */ React254.createElement("stop", { offset: "1", stopColor: "#107DDD" })
|
|
4595
|
+
), /* @__PURE__ */ React254.createElement("clipPath", { id: "clip0_2_3913" }, /* @__PURE__ */ React254.createElement(
|
|
4576
4596
|
"rect",
|
|
4577
4597
|
{
|
|
4578
4598
|
width: "96",
|
|
@@ -4662,9 +4682,9 @@ var import_react84 = __toESM(require("react"));
|
|
|
4662
4682
|
var SvgSchool = () => /* @__PURE__ */ import_react84.default.createElement(import_glasses.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4663
4683
|
|
|
4664
4684
|
// src/components/icon/available-icons/scissors.tsx
|
|
4665
|
-
var
|
|
4685
|
+
var React258 = __toESM(require("react"));
|
|
4666
4686
|
function SvgScissors() {
|
|
4667
|
-
return /* @__PURE__ */
|
|
4687
|
+
return /* @__PURE__ */ React258.createElement("span", { "aria-hidden": true, "data-testid": "ads-refreshed-icon" }, /* @__PURE__ */ React258.createElement("svg", { viewBox: "0 0 24 24" }, /* @__PURE__ */ React258.createElement(
|
|
4668
4688
|
"path",
|
|
4669
4689
|
{
|
|
4670
4690
|
fillRule: "evenodd",
|
|
@@ -4672,7 +4692,7 @@ function SvgScissors() {
|
|
|
4672
4692
|
d: "M2.00302 3.37486C0.971444 5.16161 1.57735 7.44442 3.35512 8.48554L8.93106 11.9999L3.35511 15.5142C1.57735 16.5553 0.971446 18.8381 2.00302 20.6249C3.03856 22.4185 5.33202 23.033 7.12562 21.9975C8.91922 20.9619 9.53375 18.6685 8.49821 16.8749C8.20609 16.3689 7.81387 15.9568 7.36101 15.649L11.041 13.3297L11.0423 13.3305L13.1522 12.0007L13.1509 11.9999L22.3506 6.2016L21.1509 4.29812L11.041 10.6701L7.361 8.3507C7.81387 8.04297 8.20609 7.63083 8.49821 7.12486C9.53375 5.33127 8.91922 3.0378 7.12562 2.00227C5.33202 0.966734 3.03856 1.58127 2.00302 3.37486ZM3.95158 4.49986C3.53737 5.2173 3.78318 6.13469 4.50062 6.5489C5.21806 6.96311 6.13544 6.7173 6.54966 5.99986C6.96387 5.28242 6.71806 4.36504 6.00062 3.95082C5.28318 3.53661 4.36579 3.78242 3.95158 4.49986ZM4.50062 17.4508C3.78318 17.865 3.53737 18.7824 3.95158 19.4999C4.36579 20.2173 5.28318 20.4631 6.00062 20.0489C6.71806 19.6347 6.96387 18.7173 6.54966 17.9999C6.13544 17.2824 5.21806 17.0366 4.50062 17.4508Z",
|
|
4673
4693
|
fill: "currentColor"
|
|
4674
4694
|
}
|
|
4675
|
-
), /* @__PURE__ */
|
|
4695
|
+
), /* @__PURE__ */ React258.createElement(
|
|
4676
4696
|
"path",
|
|
4677
4697
|
{
|
|
4678
4698
|
d: "M15.2621 13.3305L13.1522 14.6603L21.1509 19.7016L22.3506 17.7981L15.2621 13.3305Z",
|
|
@@ -4683,23 +4703,23 @@ function SvgScissors() {
|
|
|
4683
4703
|
|
|
4684
4704
|
// src/components/icon/available-icons/screen-cam.tsx
|
|
4685
4705
|
var import_screen_record = __toESM(require("@atlaskit/icon-lab/core/screen-record"));
|
|
4686
|
-
var
|
|
4706
|
+
var React259 = __toESM(require("react"));
|
|
4687
4707
|
function SvgScreenCam() {
|
|
4688
|
-
return /* @__PURE__ */
|
|
4708
|
+
return /* @__PURE__ */ React259.createElement(import_screen_record.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4689
4709
|
}
|
|
4690
4710
|
|
|
4691
4711
|
// src/components/icon/available-icons/search.tsx
|
|
4692
4712
|
var import_search = __toESM(require("@atlaskit/icon/core/search"));
|
|
4693
|
-
var
|
|
4713
|
+
var React260 = __toESM(require("react"));
|
|
4694
4714
|
function SvgSearch() {
|
|
4695
|
-
return /* @__PURE__ */
|
|
4715
|
+
return /* @__PURE__ */ React260.createElement(import_search.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4696
4716
|
}
|
|
4697
4717
|
|
|
4698
4718
|
// src/components/icon/available-icons/send.tsx
|
|
4699
4719
|
var import_send = __toESM(require("@atlaskit/icon/core/send"));
|
|
4700
|
-
var
|
|
4720
|
+
var React261 = __toESM(require("react"));
|
|
4701
4721
|
function SvgSend() {
|
|
4702
|
-
return /* @__PURE__ */
|
|
4722
|
+
return /* @__PURE__ */ React261.createElement(import_send.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4703
4723
|
}
|
|
4704
4724
|
|
|
4705
4725
|
// src/components/icon/available-icons/sentiment-dissatisfied.tsx
|
|
@@ -4728,15 +4748,15 @@ var SvgSentimentSatisfied = (props) => /* @__PURE__ */ import_react86.default.cr
|
|
|
4728
4748
|
|
|
4729
4749
|
// src/components/icon/available-icons/settings.tsx
|
|
4730
4750
|
var import_settings = __toESM(require("@atlaskit/icon/core/settings"));
|
|
4731
|
-
var
|
|
4751
|
+
var React264 = __toESM(require("react"));
|
|
4732
4752
|
function SvgSettings() {
|
|
4733
|
-
return /* @__PURE__ */
|
|
4753
|
+
return /* @__PURE__ */ React264.createElement(import_settings.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4734
4754
|
}
|
|
4735
4755
|
|
|
4736
4756
|
// src/components/icon/available-icons/share.tsx
|
|
4737
|
-
var
|
|
4757
|
+
var React265 = __toESM(require("react"));
|
|
4738
4758
|
function SvgShare(props) {
|
|
4739
|
-
return /* @__PURE__ */
|
|
4759
|
+
return /* @__PURE__ */ React265.createElement("svg", __spreadValues({ viewBox: "0 0 24 24", fill: "none" }, props), /* @__PURE__ */ React265.createElement(
|
|
4740
4760
|
"path",
|
|
4741
4761
|
{
|
|
4742
4762
|
fillRule: "evenodd",
|
|
@@ -4759,40 +4779,40 @@ var SvgShowChart = (props) => /* @__PURE__ */ import_react87.default.createEleme
|
|
|
4759
4779
|
|
|
4760
4780
|
// src/components/icon/available-icons/silence-removal.tsx
|
|
4761
4781
|
var import_ai_generative_remove_silence = __toESM(require("@atlaskit/icon-lab/core/ai-generative-remove-silence"));
|
|
4762
|
-
var
|
|
4782
|
+
var React267 = __toESM(require("react"));
|
|
4763
4783
|
function SvgSilenceRemoval() {
|
|
4764
|
-
return /* @__PURE__ */
|
|
4784
|
+
return /* @__PURE__ */ React267.createElement(import_ai_generative_remove_silence.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4765
4785
|
}
|
|
4766
4786
|
|
|
4767
4787
|
// src/components/icon/available-icons/skip-back.tsx
|
|
4768
4788
|
var import_video_previous = __toESM(require("@atlaskit/icon/core/video-previous"));
|
|
4769
|
-
var
|
|
4789
|
+
var React268 = __toESM(require("react"));
|
|
4770
4790
|
function SvgSkipBack() {
|
|
4771
|
-
return /* @__PURE__ */
|
|
4791
|
+
return /* @__PURE__ */ React268.createElement(import_video_previous.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4772
4792
|
}
|
|
4773
4793
|
|
|
4774
4794
|
// src/components/icon/available-icons/slack.tsx
|
|
4775
|
-
var
|
|
4795
|
+
var React269 = __toESM(require("react"));
|
|
4776
4796
|
function SvgSlack(props) {
|
|
4777
|
-
return /* @__PURE__ */
|
|
4797
|
+
return /* @__PURE__ */ React269.createElement("svg", __spreadValues({ viewBox: "0 0 24 24", fill: "none", "aria-hidden": "true" }, props), /* @__PURE__ */ React269.createElement(
|
|
4778
4798
|
"path",
|
|
4779
4799
|
{
|
|
4780
4800
|
d: "M6.7818 14.3745C6.7818 15.4152 5.9316 16.2654 4.8908 16.2654C3.8503 16.2654 3 15.4152 3 14.3745C3 13.3338 3.8502 12.4836 4.8909 12.4836H6.7818V14.3745ZM7.7346 14.3745C7.7346 13.3338 8.5848 12.4836 9.6255 12.4836C10.6662 12.4836 11.5164 13.3338 11.5164 14.3745V19.109C11.5164 20.1498 10.6662 20.9999 9.6255 20.9999C8.5848 20.9999 7.7346 20.1498 7.7346 19.109V14.3745Z",
|
|
4781
4801
|
fill: "#E01E5A"
|
|
4782
4802
|
}
|
|
4783
|
-
), /* @__PURE__ */
|
|
4803
|
+
), /* @__PURE__ */ React269.createElement(
|
|
4784
4804
|
"path",
|
|
4785
4805
|
{
|
|
4786
4806
|
d: "M9.6255 6.7818C8.5848 6.7818 7.7346 5.9316 7.7346 4.8908C7.7346 3.8503 8.5848 3 9.6255 3C10.6662 3 11.5164 3.8502 11.5164 4.8909V6.7818H9.6255ZM9.6254 7.7346C10.6661 7.7346 11.5163 8.5848 11.5163 9.6255C11.5163 10.6662 10.6661 11.5164 9.6254 11.5164H4.891C3.8502 11.5164 3 10.6662 3 9.6255C3 8.5848 3.8502 7.7346 4.8909 7.7346H9.6254Z",
|
|
4787
4807
|
fill: "#36C5F0"
|
|
4788
4808
|
}
|
|
4789
|
-
), /* @__PURE__ */
|
|
4809
|
+
), /* @__PURE__ */ React269.createElement(
|
|
4790
4810
|
"path",
|
|
4791
4811
|
{
|
|
4792
4812
|
d: "M17.2183 9.6255C17.2183 8.5848 18.0684 7.7346 19.1091 7.7346C20.1499 7.7346 21 8.5848 21 9.6255C21 10.6662 20.1499 11.5164 19.1091 11.5164H17.2183V9.6255ZM16.2654 9.6254C16.2654 10.6661 15.4152 11.5163 14.3745 11.5163C13.3338 11.5163 12.4836 10.6661 12.4836 9.6254V4.891C12.4836 3.8502 13.3338 3 14.3745 3C15.4152 3 16.2654 3.8502 16.2654 4.8909V9.6254Z",
|
|
4793
4813
|
fill: "#2EB67D"
|
|
4794
4814
|
}
|
|
4795
|
-
), /* @__PURE__ */
|
|
4815
|
+
), /* @__PURE__ */ React269.createElement(
|
|
4796
4816
|
"path",
|
|
4797
4817
|
{
|
|
4798
4818
|
d: "M14.3745 17.2183C15.4152 17.2183 16.2654 18.0684 16.2654 19.1091C16.2654 20.1499 15.4152 21 14.3745 21C13.3338 21 12.4836 20.1499 12.4836 19.1091V17.2183H14.3745ZM14.3745 16.2654C13.3338 16.2654 12.4836 15.4152 12.4836 14.3745C12.4836 13.3338 13.3338 12.4836 14.3745 12.4836H19.109C20.1498 12.4836 20.9999 13.3338 20.9999 14.3745C20.9999 15.4152 20.1498 16.2654 19.109 16.2654H14.3745Z",
|
|
@@ -4803,15 +4823,15 @@ function SvgSlack(props) {
|
|
|
4803
4823
|
|
|
4804
4824
|
// src/components/icon/available-icons/smile.tsx
|
|
4805
4825
|
var import_emoji = __toESM(require("@atlaskit/icon/core/emoji"));
|
|
4806
|
-
var
|
|
4826
|
+
var React270 = __toESM(require("react"));
|
|
4807
4827
|
function SvgSmile() {
|
|
4808
|
-
return /* @__PURE__ */
|
|
4828
|
+
return /* @__PURE__ */ React270.createElement(import_emoji.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4809
4829
|
}
|
|
4810
4830
|
|
|
4811
4831
|
// src/components/icon/available-icons/smile-alt.tsx
|
|
4812
|
-
var
|
|
4832
|
+
var React271 = __toESM(require("react"));
|
|
4813
4833
|
function SvgSmileAlt(props) {
|
|
4814
|
-
return /* @__PURE__ */
|
|
4834
|
+
return /* @__PURE__ */ React271.createElement("svg", __spreadValues({ viewBox: "0 0 24 24", fill: "none" }, props), /* @__PURE__ */ React271.createElement(
|
|
4815
4835
|
"path",
|
|
4816
4836
|
{
|
|
4817
4837
|
fillRule: "evenodd",
|
|
@@ -4819,7 +4839,7 @@ function SvgSmileAlt(props) {
|
|
|
4819
4839
|
d: "M12 5a7 7 0 100 14 7 7 0 000-14zm-9 7a9 9 0 1118 0 9 9 0 01-18 0z",
|
|
4820
4840
|
fill: "currentColor"
|
|
4821
4841
|
}
|
|
4822
|
-
), /* @__PURE__ */
|
|
4842
|
+
), /* @__PURE__ */ React271.createElement(
|
|
4823
4843
|
"path",
|
|
4824
4844
|
{
|
|
4825
4845
|
fillRule: "evenodd",
|
|
@@ -4832,28 +4852,28 @@ function SvgSmileAlt(props) {
|
|
|
4832
4852
|
|
|
4833
4853
|
// src/components/icon/available-icons/smile-select.tsx
|
|
4834
4854
|
var import_emoji_add = __toESM(require("@atlaskit/icon/core/emoji-add"));
|
|
4835
|
-
var
|
|
4855
|
+
var React272 = __toESM(require("react"));
|
|
4836
4856
|
function SvgSmileSelect() {
|
|
4837
|
-
return /* @__PURE__ */
|
|
4857
|
+
return /* @__PURE__ */ React272.createElement(import_emoji_add.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4838
4858
|
}
|
|
4839
4859
|
|
|
4840
4860
|
// src/components/icon/available-icons/square.tsx
|
|
4841
4861
|
var import_shape_rectangle_rounded = __toESM(require("@atlaskit/icon-lab/core/shape-rectangle-rounded"));
|
|
4842
|
-
var
|
|
4862
|
+
var React273 = __toESM(require("react"));
|
|
4843
4863
|
function SvgSquare() {
|
|
4844
|
-
return /* @__PURE__ */
|
|
4864
|
+
return /* @__PURE__ */ React273.createElement(import_shape_rectangle_rounded.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4845
4865
|
}
|
|
4846
4866
|
|
|
4847
4867
|
// src/components/icon/available-icons/spaces.tsx
|
|
4848
|
-
var
|
|
4868
|
+
var React274 = __toESM(require("react"));
|
|
4849
4869
|
function SvgSpaces() {
|
|
4850
|
-
return /* @__PURE__ */
|
|
4870
|
+
return /* @__PURE__ */ React274.createElement("span", { "aria-hidden": true, "data-testid": "ads-refreshed-icon" }, /* @__PURE__ */ React274.createElement("svg", { viewBox: "0 0 24 24" }, /* @__PURE__ */ React274.createElement(
|
|
4851
4871
|
"path",
|
|
4852
4872
|
{
|
|
4853
4873
|
d: "M20.7129 14.2444C20.1321 16.503 18.6795 18.5347 16.5 19.7932C14.3206 21.0515 11.834 21.295 9.58744 20.6692C11.4292 19.9429 13.4036 18.9846 15.375 17.8464C17.3465 16.7082 19.163 15.4762 20.7129 14.2444Z",
|
|
4854
4874
|
fill: "currentColor"
|
|
4855
4875
|
}
|
|
4856
|
-
), /* @__PURE__ */
|
|
4876
|
+
), /* @__PURE__ */ React274.createElement(
|
|
4857
4877
|
"path",
|
|
4858
4878
|
{
|
|
4859
4879
|
fillRule: "evenodd",
|
|
@@ -4871,29 +4891,29 @@ var SvgSparkle = () => /* @__PURE__ */ import_react88.default.createElement(impo
|
|
|
4871
4891
|
|
|
4872
4892
|
// src/components/icon/available-icons/speed-fast.tsx
|
|
4873
4893
|
var import_speedometer_right = __toESM(require("@atlaskit/icon-lab/core/speedometer-right"));
|
|
4874
|
-
var
|
|
4894
|
+
var React276 = __toESM(require("react"));
|
|
4875
4895
|
function SvgSpeedFast() {
|
|
4876
|
-
return /* @__PURE__ */
|
|
4896
|
+
return /* @__PURE__ */ React276.createElement(import_speedometer_right.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4877
4897
|
}
|
|
4878
4898
|
|
|
4879
4899
|
// src/components/icon/available-icons/speed-medium.tsx
|
|
4880
4900
|
var import_speedometer_up = __toESM(require("@atlaskit/icon-lab/core/speedometer-up"));
|
|
4881
|
-
var
|
|
4901
|
+
var React277 = __toESM(require("react"));
|
|
4882
4902
|
function SvgSpeedMedium() {
|
|
4883
|
-
return /* @__PURE__ */
|
|
4903
|
+
return /* @__PURE__ */ React277.createElement(import_speedometer_up.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4884
4904
|
}
|
|
4885
4905
|
|
|
4886
4906
|
// src/components/icon/available-icons/speed-slow.tsx
|
|
4887
4907
|
var import_speedometer_left = __toESM(require("@atlaskit/icon-lab/core/speedometer-left"));
|
|
4888
|
-
var
|
|
4908
|
+
var React278 = __toESM(require("react"));
|
|
4889
4909
|
function SvgSpeedSlow() {
|
|
4890
|
-
return /* @__PURE__ */
|
|
4910
|
+
return /* @__PURE__ */ React278.createElement(import_speedometer_left.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4891
4911
|
}
|
|
4892
4912
|
|
|
4893
4913
|
// src/components/icon/available-icons/speed-x-fast.tsx
|
|
4894
|
-
var
|
|
4914
|
+
var React279 = __toESM(require("react"));
|
|
4895
4915
|
function SvgSpeedXFast(props) {
|
|
4896
|
-
return /* @__PURE__ */
|
|
4916
|
+
return /* @__PURE__ */ React279.createElement("svg", __spreadValues({ viewBox: "0 0 24 24", fill: "none" }, props), /* @__PURE__ */ React279.createElement(
|
|
4897
4917
|
"path",
|
|
4898
4918
|
{
|
|
4899
4919
|
clipRule: "evenodd",
|
|
@@ -4905,9 +4925,9 @@ function SvgSpeedXFast(props) {
|
|
|
4905
4925
|
}
|
|
4906
4926
|
|
|
4907
4927
|
// src/components/icon/available-icons/speed-x-slow.tsx
|
|
4908
|
-
var
|
|
4928
|
+
var React280 = __toESM(require("react"));
|
|
4909
4929
|
function SvgSpeedXSlow(props) {
|
|
4910
|
-
return /* @__PURE__ */
|
|
4930
|
+
return /* @__PURE__ */ React280.createElement("svg", __spreadValues({ viewBox: "0 0 24 24", fill: "none" }, props), /* @__PURE__ */ React280.createElement(
|
|
4911
4931
|
"path",
|
|
4912
4932
|
{
|
|
4913
4933
|
clipRule: "evenodd",
|
|
@@ -4920,44 +4940,44 @@ function SvgSpeedXSlow(props) {
|
|
|
4920
4940
|
|
|
4921
4941
|
// src/components/icon/available-icons/split.tsx
|
|
4922
4942
|
var import_video_timeline_clip_split = __toESM(require("@atlaskit/icon-lab/core/video-timeline-clip-split"));
|
|
4923
|
-
var
|
|
4943
|
+
var React281 = __toESM(require("react"));
|
|
4924
4944
|
function SvgSplit() {
|
|
4925
|
-
return /* @__PURE__ */
|
|
4945
|
+
return /* @__PURE__ */ React281.createElement(import_video_timeline_clip_split.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4926
4946
|
}
|
|
4927
4947
|
|
|
4928
4948
|
// src/components/icon/available-icons/star.tsx
|
|
4929
4949
|
var import_star_starred = __toESM(require("@atlaskit/icon/core/star-starred"));
|
|
4930
|
-
var
|
|
4950
|
+
var React282 = __toESM(require("react"));
|
|
4931
4951
|
function SvgStar() {
|
|
4932
|
-
return /* @__PURE__ */
|
|
4952
|
+
return /* @__PURE__ */ React282.createElement(import_star_starred.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4933
4953
|
}
|
|
4934
4954
|
|
|
4935
4955
|
// src/components/icon/available-icons/star-outline.tsx
|
|
4936
4956
|
var import_star_unstarred = __toESM(require("@atlaskit/icon/core/star-unstarred"));
|
|
4937
|
-
var
|
|
4957
|
+
var React283 = __toESM(require("react"));
|
|
4938
4958
|
function SvgStarOutline() {
|
|
4939
|
-
return /* @__PURE__ */
|
|
4959
|
+
return /* @__PURE__ */ React283.createElement(import_star_unstarred.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4940
4960
|
}
|
|
4941
4961
|
|
|
4942
4962
|
// src/components/icon/available-icons/stop.tsx
|
|
4943
4963
|
var import_video_stop_overlay = __toESM(require("@atlaskit/icon/core/video-stop-overlay"));
|
|
4944
|
-
var
|
|
4964
|
+
var React284 = __toESM(require("react"));
|
|
4945
4965
|
function SvgStop() {
|
|
4946
|
-
return /* @__PURE__ */
|
|
4966
|
+
return /* @__PURE__ */ React284.createElement(import_video_stop_overlay.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4947
4967
|
}
|
|
4948
4968
|
|
|
4949
4969
|
// src/components/icon/available-icons/suggested-edit.tsx
|
|
4950
4970
|
var import_suggested_edit = __toESM(require("@atlaskit/icon-lab/core/suggested-edit"));
|
|
4951
|
-
var
|
|
4971
|
+
var React285 = __toESM(require("react"));
|
|
4952
4972
|
function SvgSuggestedEdit() {
|
|
4953
|
-
return /* @__PURE__ */
|
|
4973
|
+
return /* @__PURE__ */ React285.createElement(import_suggested_edit.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4954
4974
|
}
|
|
4955
4975
|
|
|
4956
4976
|
// src/components/icon/available-icons/sun.tsx
|
|
4957
4977
|
var import_theme2 = __toESM(require("@atlaskit/icon/core/theme"));
|
|
4958
|
-
var
|
|
4978
|
+
var React286 = __toESM(require("react"));
|
|
4959
4979
|
function SvgSun() {
|
|
4960
|
-
return /* @__PURE__ */
|
|
4980
|
+
return /* @__PURE__ */ React286.createElement(import_theme2.default, { label: "", testId: "ads-refreshed-icon" });
|
|
4961
4981
|
}
|
|
4962
4982
|
|
|
4963
4983
|
// src/components/icon/available-icons/tag-faces.tsx
|
|
@@ -5120,32 +5140,32 @@ var SvgTeamworkAgentSmall = (props) => /* @__PURE__ */ import_react92.default.cr
|
|
|
5120
5140
|
));
|
|
5121
5141
|
|
|
5122
5142
|
// src/components/icon/available-icons/teamwork-graph.tsx
|
|
5123
|
-
var
|
|
5124
|
-
var SvgTeamworkGraph = (props) => /* @__PURE__ */
|
|
5143
|
+
var React291 = __toESM(require("react"));
|
|
5144
|
+
var SvgTeamworkGraph = (props) => /* @__PURE__ */ React291.createElement("svg", __spreadValues({ width: "16", height: "16", viewBox: "0 0 16 16", fill: "none" }, props), /* @__PURE__ */ React291.createElement(
|
|
5125
5145
|
"path",
|
|
5126
5146
|
{
|
|
5127
5147
|
d: "M9 2.50009C9 1.94781 8.55229 1.50009 8 1.50009C7.44772 1.50009 7 1.94781 7 2.50009C7 3.05238 7.44772 3.50009 8 3.50009C8.55229 3.50009 9 3.05238 9 2.50009ZM10.5 2.50009C10.5 3.8808 9.38071 5.00009 8 5.00009C6.61929 5.00009 5.5 3.8808 5.5 2.50009C5.5 1.11938 6.61929 9.17765e-05 8 9.17765e-05C9.38071 9.17765e-05 10.5 1.11938 10.5 2.50009Z",
|
|
5128
5148
|
fill: "#6B6E76"
|
|
5129
5149
|
}
|
|
5130
|
-
), /* @__PURE__ */
|
|
5150
|
+
), /* @__PURE__ */ React291.createElement(
|
|
5131
5151
|
"path",
|
|
5132
5152
|
{
|
|
5133
5153
|
d: "M3 8.00009C3 7.58588 2.66421 7.25009 2.25 7.25009C1.83579 7.25009 1.5 7.58588 1.5 8.00009C1.5 8.4143 1.83579 8.75009 2.25 8.75009C2.66421 8.75009 3 8.4143 3 8.00009ZM4.5 8.00009C4.5 9.24273 3.49264 10.2501 2.25 10.2501C1.00736 10.2501 0 9.24273 0 8.00009C0 6.75745 1.00736 5.75009 2.25 5.75009C3.49264 5.75009 4.5 6.75745 4.5 8.00009Z",
|
|
5134
5154
|
fill: "#6B6E76"
|
|
5135
5155
|
}
|
|
5136
|
-
), /* @__PURE__ */
|
|
5156
|
+
), /* @__PURE__ */ React291.createElement(
|
|
5137
5157
|
"path",
|
|
5138
5158
|
{
|
|
5139
5159
|
d: "M14.5 8.00009C14.5 7.58588 14.1642 7.25009 13.75 7.25009C13.3358 7.25009 13 7.58588 13 8.00009C13 8.4143 13.3358 8.75009 13.75 8.75009C14.1642 8.75009 14.5 8.4143 14.5 8.00009ZM16 8.00009C16 9.24273 14.9926 10.2501 13.75 10.2501C12.5074 10.2501 11.5 9.24273 11.5 8.00009C11.5 6.75745 12.5074 5.75009 13.75 5.75009C14.9926 5.75009 16 6.75745 16 8.00009Z",
|
|
5140
5160
|
fill: "#6B6E76"
|
|
5141
5161
|
}
|
|
5142
|
-
), /* @__PURE__ */
|
|
5162
|
+
), /* @__PURE__ */ React291.createElement(
|
|
5143
5163
|
"path",
|
|
5144
5164
|
{
|
|
5145
5165
|
d: "M8.75 13.7501C8.75 13.3359 8.41421 13.0001 8 13.0001C7.58579 13.0001 7.25 13.3359 7.25 13.7501C7.25 14.1643 7.58579 14.5001 8 14.5001C8.41421 14.5001 8.75 14.1643 8.75 13.7501ZM10.25 13.7501C10.25 14.9927 9.24264 16.0001 8 16.0001C6.75736 16.0001 5.75 14.9927 5.75 13.7501C5.75 12.5075 6.75736 11.5001 8 11.5001C9.24264 11.5001 10.25 12.5075 10.25 13.7501Z",
|
|
5146
5166
|
fill: "#6B6E76"
|
|
5147
5167
|
}
|
|
5148
|
-
), /* @__PURE__ */
|
|
5168
|
+
), /* @__PURE__ */ React291.createElement(
|
|
5149
5169
|
"path",
|
|
5150
5170
|
{
|
|
5151
5171
|
d: "M2.78038 8.53035C2.92661 8.3841 2.99963 8.19403 2.99997 8.0014C3.0002 7.80798 2.9272 7.61651 2.78038 7.46969C2.4875 7.17681 2.01261 7.17683 1.71972 7.46969C1.42682 7.76258 1.42682 8.23746 1.71972 8.53035C2.01261 8.82324 2.48748 8.82324 2.78038 8.53035ZM8.53045 14.2804C8.82328 13.9876 8.82316 13.5127 8.53045 13.2198C8.23756 12.9269 7.76269 12.9269 7.46979 13.2198C7.17697 13.5127 7.17692 13.9876 7.46979 14.2804C7.76267 14.5731 8.23762 14.5732 8.53045 14.2804ZM8.53045 2.78027C8.82323 2.48737 8.82331 2.01247 8.53045 1.71961C8.2376 1.42676 7.76269 1.42683 7.46979 1.71961C7.1769 2.01251 7.1769 2.48738 7.46979 2.78027C7.76269 3.07317 8.23756 3.07317 8.53045 2.78027ZM14.2805 8.53035C14.5734 8.23752 14.5732 7.7626 14.2805 7.46969C13.9876 7.1768 13.5128 7.1768 13.2199 7.46969C13.0731 7.6165 12.9998 7.80669 13 8.00009C13.0003 8.19284 13.0735 8.38401 13.2199 8.53035C13.5128 8.82305 13.9877 8.82318 14.2805 8.53035ZM15.3412 9.59101C14.6488 10.2834 13.6189 10.4268 12.7828 10.0281L10.0296 12.7813C10.4286 13.6175 10.2836 14.6486 9.59111 15.3411C8.71249 16.2196 7.2878 16.2196 6.40913 15.3411C5.53048 14.4624 5.53053 13.0378 6.40913 12.1591C7.10176 11.4665 8.13266 11.3213 8.96894 11.7206L11.7214 8.96815C11.6875 8.89709 11.6577 8.82486 11.6316 8.75132L4.36791 8.75063C4.25952 9.05705 4.08599 9.34605 3.84104 9.59101C2.96236 10.4697 1.53774 10.4697 0.659056 9.59101C-0.219624 8.71233 -0.219624 7.28771 0.659056 6.40903C1.35155 5.71657 2.38199 5.57221 3.21817 5.97123L5.97133 3.21807C5.57234 2.38189 5.71665 1.35143 6.40913 0.658953C7.28782 -0.219613 8.71247 -0.219689 9.59111 0.658953C10.4698 1.5376 10.4697 2.96224 9.59111 3.84093C8.89863 4.53341 7.86818 4.67772 7.03199 4.27873L4.27883 7.03189C4.31305 7.10361 4.3431 7.17655 4.36929 7.25079L11.6303 7.25148C11.7386 6.94409 11.9136 6.65469 12.1592 6.40903C13.0379 5.53035 14.4625 5.53035 15.3412 6.40903C16.2197 7.28772 16.2198 8.71239 15.3412 9.59101Z",
|
|
@@ -5155,16 +5175,16 @@ var SvgTeamworkGraph = (props) => /* @__PURE__ */ React290.createElement("svg",
|
|
|
5155
5175
|
|
|
5156
5176
|
// src/components/icon/available-icons/text.tsx
|
|
5157
5177
|
var import_text = __toESM(require("@atlaskit/icon/core/text"));
|
|
5158
|
-
var
|
|
5178
|
+
var React292 = __toESM(require("react"));
|
|
5159
5179
|
function SvgText() {
|
|
5160
|
-
return /* @__PURE__ */
|
|
5180
|
+
return /* @__PURE__ */ React292.createElement(import_text.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5161
5181
|
}
|
|
5162
5182
|
|
|
5163
5183
|
// src/components/icon/available-icons/text-rephrase.tsx
|
|
5164
5184
|
var import_text_rephrase = __toESM(require("@atlaskit/icon-lab/core/text-rephrase"));
|
|
5165
|
-
var
|
|
5185
|
+
var React293 = __toESM(require("react"));
|
|
5166
5186
|
function SvgTextRephrase() {
|
|
5167
|
-
return /* @__PURE__ */
|
|
5187
|
+
return /* @__PURE__ */ React293.createElement(import_text_rephrase.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5168
5188
|
}
|
|
5169
5189
|
|
|
5170
5190
|
// src/components/icon/available-icons/thumbs-down.tsx
|
|
@@ -5195,16 +5215,16 @@ var SvgThumbsUp = () => /* @__PURE__ */ import_react94.default.createElement("sv
|
|
|
5195
5215
|
|
|
5196
5216
|
// src/components/icon/available-icons/timeline-editor.tsx
|
|
5197
5217
|
var import_video_timeline_editor = __toESM(require("@atlaskit/icon-lab/core/video-timeline-editor"));
|
|
5198
|
-
var
|
|
5218
|
+
var React296 = __toESM(require("react"));
|
|
5199
5219
|
function SvgTimelineEditor() {
|
|
5200
|
-
return /* @__PURE__ */
|
|
5220
|
+
return /* @__PURE__ */ React296.createElement(import_video_timeline_editor.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5201
5221
|
}
|
|
5202
5222
|
|
|
5203
5223
|
// src/components/icon/available-icons/timer.tsx
|
|
5204
5224
|
var import_stopwatch = __toESM(require("@atlaskit/icon/core/stopwatch"));
|
|
5205
|
-
var
|
|
5225
|
+
var React297 = __toESM(require("react"));
|
|
5206
5226
|
function SvgTimer() {
|
|
5207
|
-
return /* @__PURE__ */
|
|
5227
|
+
return /* @__PURE__ */ React297.createElement(import_stopwatch.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5208
5228
|
}
|
|
5209
5229
|
|
|
5210
5230
|
// src/components/icon/available-icons/touch-app.tsx
|
|
@@ -5228,15 +5248,15 @@ function SvgTranscript() {
|
|
|
5228
5248
|
|
|
5229
5249
|
// src/components/icon/available-icons/trash.tsx
|
|
5230
5250
|
var import_delete = __toESM(require("@atlaskit/icon/core/delete"));
|
|
5231
|
-
var
|
|
5251
|
+
var React300 = __toESM(require("react"));
|
|
5232
5252
|
function SvgTrash() {
|
|
5233
|
-
return /* @__PURE__ */
|
|
5253
|
+
return /* @__PURE__ */ React300.createElement(import_delete.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5234
5254
|
}
|
|
5235
5255
|
|
|
5236
5256
|
// src/components/icon/available-icons/trash-forever.tsx
|
|
5237
|
-
var
|
|
5257
|
+
var React301 = __toESM(require("react"));
|
|
5238
5258
|
function SvgTrashForever(props) {
|
|
5239
|
-
return /* @__PURE__ */
|
|
5259
|
+
return /* @__PURE__ */ React301.createElement("svg", __spreadValues({ viewBox: "0 0 24 24", fill: "none" }, props), /* @__PURE__ */ React301.createElement(
|
|
5240
5260
|
"path",
|
|
5241
5261
|
{
|
|
5242
5262
|
fillRule: "evenodd",
|
|
@@ -5244,7 +5264,7 @@ function SvgTrashForever(props) {
|
|
|
5244
5264
|
d: "M4 7.2a1 1 0 011-1h14.4a1 1 0 110 2H5a1 1 0 01-1-1z",
|
|
5245
5265
|
fill: "currentColor"
|
|
5246
5266
|
}
|
|
5247
|
-
), /* @__PURE__ */
|
|
5267
|
+
), /* @__PURE__ */ React301.createElement(
|
|
5248
5268
|
"path",
|
|
5249
5269
|
{
|
|
5250
5270
|
fillRule: "evenodd",
|
|
@@ -5252,7 +5272,7 @@ function SvgTrashForever(props) {
|
|
|
5252
5272
|
d: "M10.6 5a.6.6 0 00-.6.6v.6h4.4v-.6a.6.6 0 00-.6-.6h-3.2zm5.8 1.2v-.6A2.6 2.6 0 0013.8 3h-3.2A2.6 2.6 0 008 5.6v.6H6.6a1 1 0 00-1 1v11.2A2.6 2.6 0 008.2 21h8a2.6 2.6 0 002.6-2.6V7.2a1 1 0 00-1-1h-1.4zm-8.8 2v10.2a.6.6 0 00.6.6h8a.6.6 0 00.6-.6V8.2H7.6z",
|
|
5253
5273
|
fill: "currentColor"
|
|
5254
5274
|
}
|
|
5255
|
-
), /* @__PURE__ */
|
|
5275
|
+
), /* @__PURE__ */ React301.createElement(
|
|
5256
5276
|
"path",
|
|
5257
5277
|
{
|
|
5258
5278
|
fillRule: "evenodd",
|
|
@@ -5260,7 +5280,7 @@ function SvgTrashForever(props) {
|
|
|
5260
5280
|
d: "M14.604 11.196a1 1 0 010 1.414l-3.394 3.394a1 1 0 01-1.414-1.414l3.394-3.394a1 1 0 011.414 0z",
|
|
5261
5281
|
fill: "currentColor"
|
|
5262
5282
|
}
|
|
5263
|
-
), /* @__PURE__ */
|
|
5283
|
+
), /* @__PURE__ */ React301.createElement(
|
|
5264
5284
|
"path",
|
|
5265
5285
|
{
|
|
5266
5286
|
fillRule: "evenodd",
|
|
@@ -5272,16 +5292,16 @@ function SvgTrashForever(props) {
|
|
|
5272
5292
|
}
|
|
5273
5293
|
|
|
5274
5294
|
// src/components/icon/available-icons/trello-neutral.tsx
|
|
5275
|
-
var
|
|
5295
|
+
var React302 = __toESM(require("react"));
|
|
5276
5296
|
function SvgTrelloNeutral(props) {
|
|
5277
|
-
return /* @__PURE__ */
|
|
5297
|
+
return /* @__PURE__ */ React302.createElement(
|
|
5278
5298
|
"svg",
|
|
5279
5299
|
__spreadValues({
|
|
5280
5300
|
viewBox: "0 0 24 24",
|
|
5281
5301
|
fill: "none",
|
|
5282
5302
|
xmlns: "http://www.w3.org/2000/svg"
|
|
5283
5303
|
}, props),
|
|
5284
|
-
/* @__PURE__ */
|
|
5304
|
+
/* @__PURE__ */ React302.createElement(
|
|
5285
5305
|
"path",
|
|
5286
5306
|
{
|
|
5287
5307
|
fillRule: "evenodd",
|
|
@@ -5294,16 +5314,16 @@ function SvgTrelloNeutral(props) {
|
|
|
5294
5314
|
}
|
|
5295
5315
|
|
|
5296
5316
|
// src/components/icon/available-icons/trello.tsx
|
|
5297
|
-
var
|
|
5317
|
+
var React303 = __toESM(require("react"));
|
|
5298
5318
|
function SvgTrello(props) {
|
|
5299
|
-
return /* @__PURE__ */
|
|
5319
|
+
return /* @__PURE__ */ React303.createElement(
|
|
5300
5320
|
"svg",
|
|
5301
5321
|
__spreadValues({
|
|
5302
5322
|
viewBox: "0 0 24 24",
|
|
5303
5323
|
fill: "none",
|
|
5304
5324
|
xmlns: "http://www.w3.org/2000/svg"
|
|
5305
5325
|
}, props),
|
|
5306
|
-
/* @__PURE__ */
|
|
5326
|
+
/* @__PURE__ */ React303.createElement(
|
|
5307
5327
|
"path",
|
|
5308
5328
|
{
|
|
5309
5329
|
fillRule: "evenodd",
|
|
@@ -5322,65 +5342,65 @@ var SvgTune = () => /* @__PURE__ */ import_react97.default.createElement(import_
|
|
|
5322
5342
|
|
|
5323
5343
|
// src/components/icon/available-icons/underline.tsx
|
|
5324
5344
|
var import_text_underline = __toESM(require("@atlaskit/icon/core/text-underline"));
|
|
5325
|
-
var
|
|
5345
|
+
var React305 = __toESM(require("react"));
|
|
5326
5346
|
function SvgUnderline() {
|
|
5327
|
-
return /* @__PURE__ */
|
|
5347
|
+
return /* @__PURE__ */ React305.createElement(import_text_underline.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5328
5348
|
}
|
|
5329
5349
|
|
|
5330
5350
|
// src/components/icon/available-icons/undo.tsx
|
|
5331
5351
|
var import_undo = __toESM(require("@atlaskit/icon/core/undo"));
|
|
5332
|
-
var
|
|
5352
|
+
var React306 = __toESM(require("react"));
|
|
5333
5353
|
function SvgUndo() {
|
|
5334
|
-
return /* @__PURE__ */
|
|
5354
|
+
return /* @__PURE__ */ React306.createElement(import_undo.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5335
5355
|
}
|
|
5336
5356
|
|
|
5337
5357
|
// src/components/icon/available-icons/undo-alt.tsx
|
|
5338
5358
|
var import_undo2 = __toESM(require("@atlaskit/icon/core/undo"));
|
|
5339
|
-
var
|
|
5359
|
+
var React307 = __toESM(require("react"));
|
|
5340
5360
|
function SvgUndoAlt() {
|
|
5341
|
-
return /* @__PURE__ */
|
|
5361
|
+
return /* @__PURE__ */ React307.createElement(import_undo2.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5342
5362
|
}
|
|
5343
5363
|
|
|
5344
5364
|
// src/components/icon/available-icons/upload.tsx
|
|
5345
5365
|
var import_upload = __toESM(require("@atlaskit/icon/core/upload"));
|
|
5346
|
-
var
|
|
5366
|
+
var React308 = __toESM(require("react"));
|
|
5347
5367
|
function SvgUpload() {
|
|
5348
|
-
return /* @__PURE__ */
|
|
5368
|
+
return /* @__PURE__ */ React308.createElement(import_upload.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5349
5369
|
}
|
|
5350
5370
|
|
|
5351
5371
|
// src/components/icon/available-icons/user.tsx
|
|
5352
5372
|
var import_person = __toESM(require("@atlaskit/icon/core/person"));
|
|
5353
|
-
var
|
|
5373
|
+
var React309 = __toESM(require("react"));
|
|
5354
5374
|
function SvgUser() {
|
|
5355
|
-
return /* @__PURE__ */
|
|
5375
|
+
return /* @__PURE__ */ React309.createElement(import_person.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5356
5376
|
}
|
|
5357
5377
|
|
|
5358
5378
|
// src/components/icon/available-icons/users.tsx
|
|
5359
5379
|
var import_people_group = __toESM(require("@atlaskit/icon/core/people-group"));
|
|
5360
|
-
var
|
|
5380
|
+
var React310 = __toESM(require("react"));
|
|
5361
5381
|
function SvgUsers() {
|
|
5362
|
-
return /* @__PURE__ */
|
|
5382
|
+
return /* @__PURE__ */ React310.createElement(import_people_group.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5363
5383
|
}
|
|
5364
5384
|
|
|
5365
5385
|
// src/components/icon/available-icons/users-add.tsx
|
|
5366
5386
|
var import_person_add = __toESM(require("@atlaskit/icon/core/person-add"));
|
|
5367
|
-
var
|
|
5387
|
+
var React311 = __toESM(require("react"));
|
|
5368
5388
|
function SvgUsersAdd() {
|
|
5369
|
-
return /* @__PURE__ */
|
|
5389
|
+
return /* @__PURE__ */ React311.createElement(import_person_add.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5370
5390
|
}
|
|
5371
5391
|
|
|
5372
5392
|
// src/components/icon/available-icons/variables.tsx
|
|
5373
5393
|
var import_variable = __toESM(require("@atlaskit/icon-lab/core/variable"));
|
|
5374
|
-
var
|
|
5394
|
+
var React312 = __toESM(require("react"));
|
|
5375
5395
|
function SvgVariables() {
|
|
5376
|
-
return /* @__PURE__ */
|
|
5396
|
+
return /* @__PURE__ */ React312.createElement(import_variable.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5377
5397
|
}
|
|
5378
5398
|
|
|
5379
5399
|
// src/components/icon/available-icons/version-control.tsx
|
|
5380
5400
|
var import_history = __toESM(require("@atlaskit/icon-lab/core/history"));
|
|
5381
|
-
var
|
|
5401
|
+
var React313 = __toESM(require("react"));
|
|
5382
5402
|
function SvgVersionControl() {
|
|
5383
|
-
return /* @__PURE__ */
|
|
5403
|
+
return /* @__PURE__ */ React313.createElement(import_history.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5384
5404
|
}
|
|
5385
5405
|
|
|
5386
5406
|
// src/components/icon/available-icons/vertical-align-bottom.tsx
|
|
@@ -5397,9 +5417,9 @@ var SvgVerticalAlignBottom = (props) => /* @__PURE__ */ import_react98.default.c
|
|
|
5397
5417
|
|
|
5398
5418
|
// src/components/icon/available-icons/video-cam.tsx
|
|
5399
5419
|
var import_video = __toESM(require("@atlaskit/icon/core/video"));
|
|
5400
|
-
var
|
|
5420
|
+
var React315 = __toESM(require("react"));
|
|
5401
5421
|
function SvgVideoCam() {
|
|
5402
|
-
return /* @__PURE__ */
|
|
5422
|
+
return /* @__PURE__ */ React315.createElement(import_video.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5403
5423
|
}
|
|
5404
5424
|
|
|
5405
5425
|
// src/components/icon/available-icons/videocam.tsx
|
|
@@ -5426,16 +5446,16 @@ var SvgVideocamOff = (props) => /* @__PURE__ */ import_react100.default.createEl
|
|
|
5426
5446
|
|
|
5427
5447
|
// src/components/icon/available-icons/video-library.tsx
|
|
5428
5448
|
var import_library = __toESM(require("@atlaskit/icon/core/library"));
|
|
5429
|
-
var
|
|
5449
|
+
var React318 = __toESM(require("react"));
|
|
5430
5450
|
function SvgVideoLibrary() {
|
|
5431
|
-
return /* @__PURE__ */
|
|
5451
|
+
return /* @__PURE__ */ React318.createElement(import_library.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5432
5452
|
}
|
|
5433
5453
|
|
|
5434
5454
|
// src/components/icon/available-icons/video-off.tsx
|
|
5435
5455
|
var import_video_strikethrough = __toESM(require("@atlaskit/icon-lab/core/video-strikethrough"));
|
|
5436
|
-
var
|
|
5456
|
+
var React319 = __toESM(require("react"));
|
|
5437
5457
|
function SvgVideoOff() {
|
|
5438
|
-
return /* @__PURE__ */
|
|
5458
|
+
return /* @__PURE__ */ React319.createElement(import_video_strikethrough.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5439
5459
|
}
|
|
5440
5460
|
|
|
5441
5461
|
// src/components/icon/available-icons/view-list.tsx
|
|
@@ -5452,16 +5472,16 @@ var SvgViewList = (props) => /* @__PURE__ */ import_react101.default.createEleme
|
|
|
5452
5472
|
|
|
5453
5473
|
// src/components/icon/available-icons/volume1.tsx
|
|
5454
5474
|
var import_volume_low = __toESM(require("@atlaskit/icon/core/volume-low"));
|
|
5455
|
-
var
|
|
5475
|
+
var React321 = __toESM(require("react"));
|
|
5456
5476
|
function SvgVolume1() {
|
|
5457
|
-
return /* @__PURE__ */
|
|
5477
|
+
return /* @__PURE__ */ React321.createElement(import_volume_low.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5458
5478
|
}
|
|
5459
5479
|
|
|
5460
5480
|
// src/components/icon/available-icons/volume2.tsx
|
|
5461
5481
|
var import_volume_high = __toESM(require("@atlaskit/icon/core/volume-high"));
|
|
5462
|
-
var
|
|
5482
|
+
var React322 = __toESM(require("react"));
|
|
5463
5483
|
function SvgVolume2() {
|
|
5464
|
-
return /* @__PURE__ */
|
|
5484
|
+
return /* @__PURE__ */ React322.createElement(import_volume_high.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5465
5485
|
}
|
|
5466
5486
|
|
|
5467
5487
|
// src/components/icon/available-icons/volume-down.tsx
|
|
@@ -5512,9 +5532,9 @@ var SvgVolumeUp = (props) => /* @__PURE__ */ import_react105.default.createEleme
|
|
|
5512
5532
|
|
|
5513
5533
|
// src/components/icon/available-icons/volume-x.tsx
|
|
5514
5534
|
var import_volume_muted = __toESM(require("@atlaskit/icon/core/volume-muted"));
|
|
5515
|
-
var
|
|
5535
|
+
var React327 = __toESM(require("react"));
|
|
5516
5536
|
function SvgVolumeX() {
|
|
5517
|
-
return /* @__PURE__ */
|
|
5537
|
+
return /* @__PURE__ */ React327.createElement(import_volume_muted.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5518
5538
|
}
|
|
5519
5539
|
|
|
5520
5540
|
// src/components/icon/available-icons/warning-alert.tsx
|
|
@@ -5543,50 +5563,50 @@ var SvgWarningAmber = (props) => /* @__PURE__ */ import_react107.default.createE
|
|
|
5543
5563
|
|
|
5544
5564
|
// src/components/icon/available-icons/watch-later.tsx
|
|
5545
5565
|
var import_story = __toESM(require("@atlaskit/icon/core/story"));
|
|
5546
|
-
var
|
|
5566
|
+
var React330 = __toESM(require("react"));
|
|
5547
5567
|
function SvgWatchLater() {
|
|
5548
|
-
return /* @__PURE__ */
|
|
5568
|
+
return /* @__PURE__ */ React330.createElement(import_story.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5549
5569
|
}
|
|
5550
5570
|
|
|
5551
5571
|
// src/components/icon/available-icons/watch-later-added.tsx
|
|
5552
5572
|
var import_video_watch_later_saved = __toESM(require("@atlaskit/icon-lab/core/video-watch-later-saved"));
|
|
5553
|
-
var
|
|
5573
|
+
var React331 = __toESM(require("react"));
|
|
5554
5574
|
function SvgWatchLaterAdded() {
|
|
5555
|
-
return /* @__PURE__ */
|
|
5575
|
+
return /* @__PURE__ */ React331.createElement(import_video_watch_later_saved.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5556
5576
|
}
|
|
5557
5577
|
|
|
5558
5578
|
// src/components/icon/available-icons/watch-later-remove.tsx
|
|
5559
5579
|
var import_video_watch_later_remove = __toESM(require("@atlaskit/icon-lab/core/video-watch-later-remove"));
|
|
5560
|
-
var
|
|
5580
|
+
var React332 = __toESM(require("react"));
|
|
5561
5581
|
function SvgWatchLaterRemove() {
|
|
5562
|
-
return /* @__PURE__ */
|
|
5582
|
+
return /* @__PURE__ */ React332.createElement(import_video_watch_later_remove.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5563
5583
|
}
|
|
5564
5584
|
|
|
5565
5585
|
// src/components/icon/available-icons/waveform.tsx
|
|
5566
5586
|
var import_audio_waveform = __toESM(require("@atlaskit/icon-lab/core/audio-waveform"));
|
|
5567
|
-
var
|
|
5587
|
+
var React333 = __toESM(require("react"));
|
|
5568
5588
|
function SvgWaveform() {
|
|
5569
|
-
return /* @__PURE__ */
|
|
5589
|
+
return /* @__PURE__ */ React333.createElement(import_audio_waveform.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5570
5590
|
}
|
|
5571
5591
|
|
|
5572
5592
|
// src/components/icon/available-icons/window.tsx
|
|
5573
5593
|
var import_template = __toESM(require("@atlaskit/icon-lab/core/template"));
|
|
5574
|
-
var
|
|
5594
|
+
var React334 = __toESM(require("react"));
|
|
5575
5595
|
function SvgWindow() {
|
|
5576
|
-
return /* @__PURE__ */
|
|
5596
|
+
return /* @__PURE__ */ React334.createElement(import_template.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5577
5597
|
}
|
|
5578
5598
|
|
|
5579
5599
|
// src/components/icon/available-icons/windows.tsx
|
|
5580
|
-
var
|
|
5600
|
+
var React335 = __toESM(require("react"));
|
|
5581
5601
|
function SvgWindows(props) {
|
|
5582
|
-
return /* @__PURE__ */
|
|
5602
|
+
return /* @__PURE__ */ React335.createElement(
|
|
5583
5603
|
"svg",
|
|
5584
5604
|
__spreadValues({
|
|
5585
5605
|
viewBox: "0 0 24 24",
|
|
5586
5606
|
fill: "none",
|
|
5587
5607
|
xmlns: "http://www.w3.org/2000/svg"
|
|
5588
5608
|
}, props),
|
|
5589
|
-
/* @__PURE__ */
|
|
5609
|
+
/* @__PURE__ */ React335.createElement(
|
|
5590
5610
|
"path",
|
|
5591
5611
|
{
|
|
5592
5612
|
d: "M2 18.875v-6.25h8.75v7.344L2 18.875zM12 20.125v-7.5h10v8.75l-10-1.25zM12 11.375v-7.5l10-1.25v8.75H12zM2 11.375v-6.25l8.75-1.094v7.344H2z",
|
|
@@ -5598,36 +5618,36 @@ function SvgWindows(props) {
|
|
|
5598
5618
|
|
|
5599
5619
|
// src/components/icon/available-icons/write-document.tsx
|
|
5600
5620
|
var import_page = __toESM(require("@atlaskit/icon/core/page"));
|
|
5601
|
-
var
|
|
5621
|
+
var React336 = __toESM(require("react"));
|
|
5602
5622
|
function SvgWriteDocument() {
|
|
5603
|
-
return /* @__PURE__ */
|
|
5623
|
+
return /* @__PURE__ */ React336.createElement(import_page.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5604
5624
|
}
|
|
5605
5625
|
|
|
5606
5626
|
// src/components/icon/available-icons/write-message.tsx
|
|
5607
5627
|
var import_email2 = __toESM(require("@atlaskit/icon/core/email"));
|
|
5608
|
-
var
|
|
5628
|
+
var React337 = __toESM(require("react"));
|
|
5609
5629
|
function SvgWriteMessage() {
|
|
5610
|
-
return /* @__PURE__ */
|
|
5630
|
+
return /* @__PURE__ */ React337.createElement(import_email2.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5611
5631
|
}
|
|
5612
5632
|
|
|
5613
5633
|
// src/components/icon/available-icons/x-circle.tsx
|
|
5614
5634
|
var import_cross_circle = __toESM(require("@atlaskit/icon/core/cross-circle"));
|
|
5615
|
-
var
|
|
5635
|
+
var React338 = __toESM(require("react"));
|
|
5616
5636
|
function SvgXCircle() {
|
|
5617
|
-
return /* @__PURE__ */
|
|
5637
|
+
return /* @__PURE__ */ React338.createElement(import_cross_circle.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5618
5638
|
}
|
|
5619
5639
|
|
|
5620
5640
|
// src/components/icon/available-icons/x-twitter.tsx
|
|
5621
|
-
var
|
|
5641
|
+
var React339 = __toESM(require("react"));
|
|
5622
5642
|
function SvgXLogo(props) {
|
|
5623
|
-
return /* @__PURE__ */
|
|
5643
|
+
return /* @__PURE__ */ React339.createElement(
|
|
5624
5644
|
"svg",
|
|
5625
5645
|
__spreadProps(__spreadValues({}, props), {
|
|
5626
5646
|
viewBox: "-2 -2 28 28",
|
|
5627
5647
|
fill: "none",
|
|
5628
5648
|
xmlns: "http://www.w3.org/2000/svg"
|
|
5629
5649
|
}),
|
|
5630
|
-
/* @__PURE__ */
|
|
5650
|
+
/* @__PURE__ */ React339.createElement(
|
|
5631
5651
|
"path",
|
|
5632
5652
|
{
|
|
5633
5653
|
fillRule: "evenodd",
|
|
@@ -5640,9 +5660,9 @@ function SvgXLogo(props) {
|
|
|
5640
5660
|
}
|
|
5641
5661
|
|
|
5642
5662
|
// src/components/icon/available-icons/zap.tsx
|
|
5643
|
-
var
|
|
5663
|
+
var React340 = __toESM(require("react"));
|
|
5644
5664
|
function SvgZap(props) {
|
|
5645
|
-
return /* @__PURE__ */
|
|
5665
|
+
return /* @__PURE__ */ React340.createElement("svg", __spreadValues({ viewBox: "0 0 24 24", fill: "none" }, props), /* @__PURE__ */ React340.createElement(
|
|
5646
5666
|
"path",
|
|
5647
5667
|
{
|
|
5648
5668
|
fillRule: "evenodd",
|
|
@@ -5655,34 +5675,34 @@ function SvgZap(props) {
|
|
|
5655
5675
|
|
|
5656
5676
|
// src/components/icon/available-icons/zap-outline.tsx
|
|
5657
5677
|
var import_automation = __toESM(require("@atlaskit/icon/core/automation"));
|
|
5658
|
-
var
|
|
5678
|
+
var React341 = __toESM(require("react"));
|
|
5659
5679
|
function SvgZapOutline() {
|
|
5660
|
-
return /* @__PURE__ */
|
|
5680
|
+
return /* @__PURE__ */ React341.createElement(import_automation.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5661
5681
|
}
|
|
5662
5682
|
|
|
5663
5683
|
// src/components/icon/available-icons/zoom-in.tsx
|
|
5664
5684
|
var import_zoom_in = __toESM(require("@atlaskit/icon/core/zoom-in"));
|
|
5665
|
-
var
|
|
5685
|
+
var React342 = __toESM(require("react"));
|
|
5666
5686
|
function SvgZoomIn() {
|
|
5667
|
-
return /* @__PURE__ */
|
|
5687
|
+
return /* @__PURE__ */ React342.createElement(import_zoom_in.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5668
5688
|
}
|
|
5669
5689
|
|
|
5670
5690
|
// src/components/icon/available-icons/zoom-logo.tsx
|
|
5671
|
-
var
|
|
5691
|
+
var React343 = __toESM(require("react"));
|
|
5672
5692
|
function SvgZoomLogo(props) {
|
|
5673
|
-
return /* @__PURE__ */
|
|
5693
|
+
return /* @__PURE__ */ React343.createElement("svg", __spreadValues({ viewBox: "0 0 24 24", fill: "none", "aria-hidden": "true" }, props), /* @__PURE__ */ React343.createElement(
|
|
5674
5694
|
"path",
|
|
5675
5695
|
{
|
|
5676
5696
|
fill: "url(#a)",
|
|
5677
5697
|
d: "M22 12a19.8 19.8 0 0 1-.25 3.14 8.002 8.002 0 0 1-6.61 6.61c-2.08.334-4.2.334-6.28 0a8.003 8.003 0 0 1-6.61-6.61 19.79 19.79 0 0 1 0-6.28 8.002 8.002 0 0 1 6.61-6.61 19.79 19.79 0 0 1 6.28 0 8.002 8.002 0 0 1 6.61 6.61c.167 1.038.25 2.088.25 3.14Z"
|
|
5678
5698
|
}
|
|
5679
|
-
), /* @__PURE__ */
|
|
5699
|
+
), /* @__PURE__ */ React343.createElement(
|
|
5680
5700
|
"path",
|
|
5681
5701
|
{
|
|
5682
5702
|
fill: "#fff",
|
|
5683
5703
|
d: "M7.972 13.531h-2.48a.427.427 0 0 1-.303-.732l1.718-1.718H5.675a.613.613 0 0 1-.612-.612H7.35a.428.428 0 0 1 .304.732L5.935 12.92H7.36c.338 0 .612.274.612.612Zm10.965-1.914a1.196 1.196 0 0 0-2.082-.798 1.196 1.196 0 0 0-2.083.798v1.914a.613.613 0 0 0 .612-.612v-1.302a.583.583 0 0 1 1.164 0v1.302c0 .338.274.612.613.612v-1.914a.583.583 0 0 1 1.164 0v1.302c0 .338.274.612.612.612v-1.914ZM14.465 12a1.577 1.577 0 1 1-3.153 0 1.577 1.577 0 0 1 3.153 0Zm-.612 0a.965.965 0 1 0-1.93 0 .965.965 0 0 0 1.93 0Zm-2.787 0a1.578 1.578 0 1 1-3.155 0 1.578 1.578 0 0 1 3.155 0Zm-.613 0a.965.965 0 1 0-1.93 0 .965.965 0 0 0 1.93 0Z"
|
|
5684
5704
|
}
|
|
5685
|
-
), /* @__PURE__ */
|
|
5705
|
+
), /* @__PURE__ */ React343.createElement("defs", null, /* @__PURE__ */ React343.createElement(
|
|
5686
5706
|
"linearGradient",
|
|
5687
5707
|
{
|
|
5688
5708
|
id: "a",
|
|
@@ -5692,16 +5712,16 @@ function SvgZoomLogo(props) {
|
|
|
5692
5712
|
y2: 2.878,
|
|
5693
5713
|
gradientUnits: "userSpaceOnUse"
|
|
5694
5714
|
},
|
|
5695
|
-
/* @__PURE__ */
|
|
5696
|
-
/* @__PURE__ */
|
|
5697
|
-
/* @__PURE__ */
|
|
5715
|
+
/* @__PURE__ */ React343.createElement("stop", { stopColor: "#0845BF" }),
|
|
5716
|
+
/* @__PURE__ */ React343.createElement("stop", { offset: 0.6, stopColor: "#0B5CFF" }),
|
|
5717
|
+
/* @__PURE__ */ React343.createElement("stop", { offset: 1, stopColor: "#4F90EE" })
|
|
5698
5718
|
)));
|
|
5699
5719
|
}
|
|
5700
5720
|
|
|
5701
5721
|
// src/components/icon/available-icons/zoom-out.tsx
|
|
5702
5722
|
var import_zoom_out = __toESM(require("@atlaskit/icon/core/zoom-out"));
|
|
5703
|
-
var
|
|
5723
|
+
var React344 = __toESM(require("react"));
|
|
5704
5724
|
function SvgZoomOut() {
|
|
5705
|
-
return /* @__PURE__ */
|
|
5725
|
+
return /* @__PURE__ */ React344.createElement(import_zoom_out.default, { label: "", testId: "ads-refreshed-icon" });
|
|
5706
5726
|
}
|
|
5707
5727
|
//# sourceMappingURL=index.js.map
|