@hashicorp/flight-icons 2.9.0 → 2.11.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/CHANGELOG.md +15 -0
- package/catalog.json +145 -1
- package/css-props/aws-lambda-16.css +1 -0
- package/css-props/aws-lambda-24.css +1 -0
- package/css-props/aws-lambda-color-16.css +1 -0
- package/css-props/aws-lambda-color-24.css +1 -0
- package/css-props/codepen-color-16.css +1 -1
- package/css-props/index.css +23 -7
- package/css-props/linux-16.css +1 -0
- package/css-props/linux-24.css +1 -0
- package/css-props/linux-color-16.css +1 -0
- package/css-props/linux-color-24.css +1 -0
- package/css-props/opa-16.css +1 -0
- package/css-props/opa-24.css +1 -0
- package/css-props/opa-color-16.css +1 -0
- package/css-props/opa-color-24.css +1 -0
- package/css-props/pipeline-16.css +1 -0
- package/css-props/pipeline-24.css +1 -0
- package/css-props/snyk-color-16.css +1 -1
- package/css-props/star-16.css +1 -1
- package/css-props/star-24.css +1 -1
- package/css-props/step-16.css +1 -0
- package/css-props/step-24.css +1 -0
- package/css-props/wand-16.css +1 -1
- package/css-props/wand-24.css +1 -1
- package/css-props/x-diamond-24.css +1 -1
- package/package.json +1 -1
- package/svg/aws-lambda-16.svg +1 -0
- package/svg/aws-lambda-24.svg +1 -0
- package/svg/aws-lambda-color-16.svg +1 -0
- package/svg/aws-lambda-color-24.svg +1 -0
- package/svg/codepen-color-16.svg +1 -1
- package/svg/index.js +1 -0
- package/svg/linux-16.svg +1 -0
- package/svg/linux-24.svg +1 -0
- package/svg/linux-color-16.svg +1 -0
- package/svg/linux-color-24.svg +1 -0
- package/svg/opa-16.svg +1 -0
- package/svg/opa-24.svg +1 -0
- package/svg/opa-color-16.svg +1 -0
- package/svg/opa-color-24.svg +1 -0
- package/svg/pipeline-16.svg +1 -0
- package/svg/pipeline-24.svg +1 -0
- package/svg/snyk-color-16.svg +1 -1
- package/svg/star-16.svg +1 -1
- package/svg/star-24.svg +1 -1
- package/svg/step-16.svg +1 -0
- package/svg/step-24.svg +1 -0
- package/svg/wand-16.svg +1 -1
- package/svg/wand-24.svg +1 -1
- package/svg/x-diamond-24.svg +1 -1
- package/svg-react/aws-lambda-16.tsx +33 -0
- package/svg-react/aws-lambda-24.tsx +33 -0
- package/svg-react/aws-lambda-color-16.tsx +33 -0
- package/svg-react/aws-lambda-color-24.tsx +33 -0
- package/svg-react/codepen-color-16.tsx +1 -1
- package/svg-react/index.ts +16 -0
- package/svg-react/linux-16.tsx +33 -0
- package/svg-react/linux-24.tsx +33 -0
- package/svg-react/linux-color-16.tsx +61 -0
- package/svg-react/linux-color-24.tsx +61 -0
- package/svg-react/opa-16.tsx +34 -0
- package/svg-react/opa-24.tsx +34 -0
- package/svg-react/opa-color-16.tsx +41 -0
- package/svg-react/opa-color-24.tsx +41 -0
- package/svg-react/pipeline-16.tsx +35 -0
- package/svg-react/pipeline-24.tsx +35 -0
- package/svg-react/snyk-color-16.tsx +3 -3
- package/svg-react/star-16.tsx +1 -1
- package/svg-react/star-24.tsx +1 -1
- package/svg-react/step-16.tsx +35 -0
- package/svg-react/step-24.tsx +35 -0
- package/svg-react/wand-16.tsx +2 -2
- package/svg-react/wand-24.tsx +2 -2
- package/svg-react/x-diamond-24.tsx +1 -1
- package/svg-sprite/svg-sprite-module.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @hashicorp/flight-icons
|
|
2
2
|
|
|
3
|
+
## 2.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#580](https://github.com/hashicorp/design-system/pull/580) [`55f38cb3`](https://github.com/hashicorp/design-system/commit/55f38cb3a30a6edf8854e53ce3642270fe00efdc) Thanks [@didoo](https://github.com/didoo)! - updated SVG icons generation to include JS file with list of icon names
|
|
8
|
+
|
|
9
|
+
* [#593](https://github.com/hashicorp/design-system/pull/593) [`382fce2d`](https://github.com/hashicorp/design-system/commit/382fce2d063e8ff31849f28d68a138537354c68e) Thanks [@hashibot-hds](https://github.com/hashibot-hds)! - Added AWS Lambda and Linux icons
|
|
10
|
+
|
|
11
|
+
## 2.10.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [#546](https://github.com/hashicorp/design-system/pull/546) [`4e557797`](https://github.com/hashicorp/design-system/commit/4e5577973154397da0b5d4302755a07b22826345) Thanks [@hashibot-hds](https://github.com/hashibot-hds)! - Add system icons for pipeline and step
|
|
16
|
+
Add service icons for open policy agent (opa)
|
|
17
|
+
|
|
3
18
|
## 2.9.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
package/catalog.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"lastRunTimeISO": "2022-
|
|
2
|
+
"lastRunTimeISO": "2022-09-29T21:59:30.161Z",
|
|
3
3
|
"lastRunFigma": {
|
|
4
4
|
"id": "TLnoT5AYQfy3tZ0H68BgOr",
|
|
5
5
|
"page": "Export",
|
|
@@ -335,6 +335,42 @@
|
|
|
335
335
|
"width": 16,
|
|
336
336
|
"height": 16
|
|
337
337
|
},
|
|
338
|
+
{
|
|
339
|
+
"id": "2651:93",
|
|
340
|
+
"fileName": "aws-lambda-24",
|
|
341
|
+
"iconName": "aws-lambda",
|
|
342
|
+
"description": "amazon, aws, lambda",
|
|
343
|
+
"size": "24",
|
|
344
|
+
"width": 24,
|
|
345
|
+
"height": 24
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"id": "2651:96",
|
|
349
|
+
"fileName": "aws-lambda-16",
|
|
350
|
+
"iconName": "aws-lambda",
|
|
351
|
+
"description": "amazon, aws, lambda",
|
|
352
|
+
"size": "16",
|
|
353
|
+
"width": 16,
|
|
354
|
+
"height": 16
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"id": "2651:84",
|
|
358
|
+
"fileName": "aws-lambda-color-24",
|
|
359
|
+
"iconName": "aws-lambda-color",
|
|
360
|
+
"description": "amazon, aws, lambda",
|
|
361
|
+
"size": "24",
|
|
362
|
+
"width": 24,
|
|
363
|
+
"height": 24
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"id": "2651:87",
|
|
367
|
+
"fileName": "aws-lambda-color-16",
|
|
368
|
+
"iconName": "aws-lambda-color",
|
|
369
|
+
"description": "amazon, aws, lambda",
|
|
370
|
+
"size": "16",
|
|
371
|
+
"width": 16,
|
|
372
|
+
"height": 16
|
|
373
|
+
},
|
|
338
374
|
{
|
|
339
375
|
"id": "2372:114",
|
|
340
376
|
"fileName": "aws-s3-24",
|
|
@@ -1271,6 +1307,42 @@
|
|
|
1271
1307
|
"width": 16,
|
|
1272
1308
|
"height": 16
|
|
1273
1309
|
},
|
|
1310
|
+
{
|
|
1311
|
+
"id": "2660:433",
|
|
1312
|
+
"fileName": "linux-24",
|
|
1313
|
+
"iconName": "linux",
|
|
1314
|
+
"description": "linux, os",
|
|
1315
|
+
"size": "24",
|
|
1316
|
+
"width": 24,
|
|
1317
|
+
"height": 24
|
|
1318
|
+
},
|
|
1319
|
+
{
|
|
1320
|
+
"id": "2660:436",
|
|
1321
|
+
"fileName": "linux-16",
|
|
1322
|
+
"iconName": "linux",
|
|
1323
|
+
"description": "linux, os",
|
|
1324
|
+
"size": "16",
|
|
1325
|
+
"width": 16,
|
|
1326
|
+
"height": 16
|
|
1327
|
+
},
|
|
1328
|
+
{
|
|
1329
|
+
"id": "2668:66",
|
|
1330
|
+
"fileName": "linux-color-24",
|
|
1331
|
+
"iconName": "linux-color",
|
|
1332
|
+
"description": "linux, os",
|
|
1333
|
+
"size": "24",
|
|
1334
|
+
"width": 24,
|
|
1335
|
+
"height": 24
|
|
1336
|
+
},
|
|
1337
|
+
{
|
|
1338
|
+
"id": "2668:79",
|
|
1339
|
+
"fileName": "linux-color-16",
|
|
1340
|
+
"iconName": "linux-color",
|
|
1341
|
+
"description": "linux, os",
|
|
1342
|
+
"size": "16",
|
|
1343
|
+
"width": 16,
|
|
1344
|
+
"height": 16
|
|
1345
|
+
},
|
|
1274
1346
|
{
|
|
1275
1347
|
"id": "707:304",
|
|
1276
1348
|
"fileName": "microsoft-24",
|
|
@@ -1415,6 +1487,42 @@
|
|
|
1415
1487
|
"width": 16,
|
|
1416
1488
|
"height": 16
|
|
1417
1489
|
},
|
|
1490
|
+
{
|
|
1491
|
+
"id": "2517:66",
|
|
1492
|
+
"fileName": "opa-24",
|
|
1493
|
+
"iconName": "opa",
|
|
1494
|
+
"description": "opa, open, policy, agent",
|
|
1495
|
+
"size": "24",
|
|
1496
|
+
"width": 24,
|
|
1497
|
+
"height": 24
|
|
1498
|
+
},
|
|
1499
|
+
{
|
|
1500
|
+
"id": "2517:70",
|
|
1501
|
+
"fileName": "opa-16",
|
|
1502
|
+
"iconName": "opa",
|
|
1503
|
+
"description": "opa, open, policy, agent",
|
|
1504
|
+
"size": "16",
|
|
1505
|
+
"width": 16,
|
|
1506
|
+
"height": 16
|
|
1507
|
+
},
|
|
1508
|
+
{
|
|
1509
|
+
"id": "2517:77",
|
|
1510
|
+
"fileName": "opa-color-24",
|
|
1511
|
+
"iconName": "opa-color",
|
|
1512
|
+
"description": "opa, open, policy, agent",
|
|
1513
|
+
"size": "24",
|
|
1514
|
+
"width": 24,
|
|
1515
|
+
"height": 24
|
|
1516
|
+
},
|
|
1517
|
+
{
|
|
1518
|
+
"id": "2517:81",
|
|
1519
|
+
"fileName": "opa-color-16",
|
|
1520
|
+
"iconName": "opa-color",
|
|
1521
|
+
"description": "opa, open, policy, agent",
|
|
1522
|
+
"size": "16",
|
|
1523
|
+
"width": 16,
|
|
1524
|
+
"height": 16
|
|
1525
|
+
},
|
|
1418
1526
|
{
|
|
1419
1527
|
"id": "1133:268",
|
|
1420
1528
|
"fileName": "pack-24",
|
|
@@ -7049,6 +7157,24 @@
|
|
|
7049
7157
|
"width": 16,
|
|
7050
7158
|
"height": 16
|
|
7051
7159
|
},
|
|
7160
|
+
{
|
|
7161
|
+
"id": "2518:93",
|
|
7162
|
+
"fileName": "pipeline-24",
|
|
7163
|
+
"iconName": "pipeline",
|
|
7164
|
+
"description": "pipeline",
|
|
7165
|
+
"size": "24",
|
|
7166
|
+
"width": 24,
|
|
7167
|
+
"height": 24
|
|
7168
|
+
},
|
|
7169
|
+
{
|
|
7170
|
+
"id": "2518:97",
|
|
7171
|
+
"fileName": "pipeline-16",
|
|
7172
|
+
"iconName": "pipeline",
|
|
7173
|
+
"description": "pipeline",
|
|
7174
|
+
"size": "16",
|
|
7175
|
+
"width": 16,
|
|
7176
|
+
"height": 16
|
|
7177
|
+
},
|
|
7052
7178
|
{
|
|
7053
7179
|
"id": "350:3113",
|
|
7054
7180
|
"fileName": "play-24",
|
|
@@ -8183,6 +8309,24 @@
|
|
|
8183
8309
|
"width": 16,
|
|
8184
8310
|
"height": 16
|
|
8185
8311
|
},
|
|
8312
|
+
{
|
|
8313
|
+
"id": "2519:77",
|
|
8314
|
+
"fileName": "step-24",
|
|
8315
|
+
"iconName": "step",
|
|
8316
|
+
"description": "step, pipeline",
|
|
8317
|
+
"size": "24",
|
|
8318
|
+
"width": 24,
|
|
8319
|
+
"height": 24
|
|
8320
|
+
},
|
|
8321
|
+
{
|
|
8322
|
+
"id": "2519:80",
|
|
8323
|
+
"fileName": "step-16",
|
|
8324
|
+
"iconName": "step",
|
|
8325
|
+
"description": "step, pipeline",
|
|
8326
|
+
"size": "16",
|
|
8327
|
+
"width": 16,
|
|
8328
|
+
"height": 16
|
|
8329
|
+
},
|
|
8186
8330
|
{
|
|
8187
8331
|
"id": "350:3898",
|
|
8188
8332
|
"fileName": "stop-circle-24",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root { --icon-aws-lambda-16: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16"><path fill="%23000" d="M7.983 8.37c-.053.073-.098.133-.141.194L5.775 11.5c-.64.91-1.282 1.82-1.924 2.73a.128.128 0 01-.092.051c-.906-.007-1.813-.017-2.719-.028-.01 0-.02-.003-.04-.006a.455.455 0 01.025-.053 13977.496 13977.496 0 015.446-8.146c.092-.138.188-.273.275-.413a.165.165 0 00.018-.124c-.167-.515-.338-1.03-.508-1.543-.073-.22-.15-.44-.218-.66-.022-.072-.059-.094-.134-.093-.57.002-1.136.001-1.704.001-.108 0-.108 0-.108-.103 0-.674 0-1.347-.002-2.021 0-.075.026-.092.099-.092 1.143.002 2.286.002 3.43 0a.113.113 0 01.076.017.107.107 0 01.045.061 18266.184 18266.184 0 003.92 9.51c.218.53.438 1.059.654 1.59.026.064.053.076.12.056.6-.178 1.2-.352 1.8-.531.075-.023.102-.008.126.064.204.62.412 1.239.62 1.858l.02.073c-.043.015-.083.032-.124.043l-4.085 1.25c-.065.02-.085 0-.106-.054l-1.25-3.048-1.226-2.984-.183-.449c-.01-.026-.023-.048-.043-.087z"/></svg>'); }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root { --icon-aws-lambda-24: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path fill="%23000" d="M12.048 12.523c-.075.104-.139.19-.2.277l-2.912 4.19c-.903 1.3-1.807 2.598-2.712 3.895a.182.182 0 01-.129.073 872.9 872.9 0 01-3.831-.04c-.014 0-.029-.004-.057-.009a.664.664 0 01.036-.076l2.673-4.048 2.372-3.587 2.63-3.986c.129-.196.263-.389.386-.588a.238.238 0 00.026-.177c-.236-.735-.476-1.469-.717-2.202-.103-.315-.21-.627-.307-.943-.03-.101-.082-.132-.188-.132-.803.003-1.6.003-2.4.003-.153 0-.153 0-.153-.147 0-.962 0-1.923-.003-2.884 0-.107.036-.131.139-.131 1.61.002 3.222.002 4.834 0a.158.158 0 01.106.024c.031.021.054.052.064.088l2.549 6.263 2.974 7.303c.308.755.618 1.51.922 2.268.037.092.075.11.17.081.844-.255 1.69-.503 2.535-.759.106-.032.145-.01.178.093.288.884.581 1.766.873 2.65.01.03.018.061.03.104-.06.021-.117.046-.176.061l-5.756 1.785c-.091.028-.119-.002-.15-.078-.585-1.45-1.172-2.9-1.76-4.349l-1.728-4.257c-.087-.213-.172-.427-.258-.64-.014-.037-.033-.069-.06-.125z"/></svg>'); }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root { --icon-aws-lambda-color-16: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16"><path fill="%23FA7E14" d="M7.983 8.37c-.053.073-.098.133-.141.194L5.775 11.5c-.64.91-1.282 1.82-1.924 2.73a.128.128 0 01-.092.051c-.906-.007-1.813-.017-2.719-.028-.01 0-.02-.003-.04-.006a.455.455 0 01.025-.053 13977.496 13977.496 0 015.446-8.146c.092-.138.188-.273.275-.413a.165.165 0 00.018-.124c-.167-.515-.338-1.03-.508-1.543-.073-.22-.15-.44-.218-.66-.022-.072-.059-.094-.134-.093-.57.002-1.136.001-1.704.001-.108 0-.108 0-.108-.103 0-.674 0-1.347-.002-2.021 0-.075.026-.092.099-.092 1.143.002 2.286.002 3.43 0a.113.113 0 01.076.017.107.107 0 01.045.061 18266.184 18266.184 0 003.92 9.51c.218.53.438 1.059.654 1.59.026.064.053.076.12.056.6-.178 1.2-.352 1.8-.531.075-.023.102-.008.126.064.204.62.412 1.239.62 1.858l.02.073c-.043.015-.083.032-.124.043l-4.085 1.25c-.065.02-.085 0-.106-.054l-1.25-3.048-1.226-2.984-.183-.449c-.01-.026-.023-.048-.043-.087z"/></svg>'); }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root { --icon-aws-lambda-color-24: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path fill="%23FA7E14" d="M11.976 12.528c-.076.104-.14.19-.202.277l-2.953 4.196c-.915 1.3-1.831 2.601-2.749 3.9a.183.183 0 01-.13.074 913.41 913.41 0 01-3.885-.04c-.014 0-.029-.005-.057-.01a.653.653 0 01.036-.075l2.71-4.055 2.405-3.59c.889-1.33 1.777-2.661 2.665-3.993.131-.196.268-.389.392-.589a.236.236 0 00.027-.177c-.24-.736-.483-1.47-.727-2.205-.104-.315-.213-.627-.311-.944-.032-.101-.084-.132-.191-.132-.814.003-1.623.002-2.434.002-.154 0-.155 0-.155-.146 0-.963 0-1.926-.003-2.889 0-.107.037-.13.141-.13 1.633.002 3.267.002 4.9 0a.162.162 0 01.109.024c.032.02.054.052.064.087a26142.71 26142.71 0 005.6 13.585c.312.757.626 1.513.935 2.271.037.093.075.11.171.082.857-.256 1.715-.504 2.57-.76.108-.033.147-.01.18.092.293.886.59 1.77.886 2.654.01.03.018.061.03.104-.061.022-.119.046-.178.062-1.946.595-3.89 1.19-5.835 1.787-.093.028-.12-.003-.152-.078-.593-1.452-1.189-2.904-1.785-4.355l-1.752-4.263-.261-.641c-.014-.037-.033-.069-.06-.125z"/></svg>'); }
|
|
@@ -1 +1 @@
|
|
|
1
|
-
:root { --icon-codepen-color-16: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16"><g fill="%23000"><path d="M4.416 7.378v1.244L5.346 8l-.93-.622zM7.627 6.473V4.738L4.712 6.683l1.302.87 1.613-1.08zM11.285 6.683L8.37 4.738v1.735l1.613 1.08 1.302-.87zM4.712 9.32l2.915 1.942V9.527l-1.613-1.08-1.302.873zM8.37 9.527v1.735l2.915-1.942-1.302-.873-1.613 1.08zM8 7.12L6.683 8 8 8.879 9.314 8 8 7.12z"/><path d="M8 1a7 7 0 10.001 14.001A7 7 0 008 1zm4.327 8.32c0 .018 0 .033-.003.047 0 .006-.003.012-.003.015l-.006.033c-.002.006-.002.012-.005.018l-.01.026-.008.018c-.003.009-.01.018-.012.024a.06.06 0 01-.012.017l-.015.024a.065.065 0 01-.012.015c-.005.006-.011.015-.017.02l-.015.015c-.006.006-.015.012-.02.018-.007.003-.013.009-.019.012-.003 0-.003.003-.005.006l-3.96 2.64a.377.377 0 01-.414 0L3.832 9.631c-.003 0-.003-.003-.006-.006l-.018-.012c-.006-.006-.015-.012-.02-.018l-.016-.014a.129.129 0 01-.017-.021c-.003-.006-.01-.012-.012-.015a.064.064 0 01-.015-.024.062.062 0 00-.012-.017l-.012-.024-.009-.018-.008-.026-.006-.018a.106.106 0 01-.006-.033c0-.006-.003-.012-.003-.015-.003-.014-.003-.032-.003-.047V6.686c0-.018 0-.033.003-.048 0-.005.003-.011.003-.014l.006-.033.006-.018.008-.026.01-.018c.002-.009.008-.018.011-.024a.062.062 0 01.012-.017l.015-.024a.065.065 0 01.012-.015c.006-.006.011-.015.017-.02l.015-.015c.006-.006.015-.012.02-.018.007-.003.013-.01.019-.012.003 0 .003-.003.006-.006L7.79 3.741a.372.372 0 01.411 0l3.958 2.637c.002 0 .002.003.005.006l.018.012.021.018.015.014c.006.006.012.012.018.021l.011.015a.065.065 0 01.015.024.06.06 0 00.012.017.087.087 0 01.012.024l.009.018.009.026c.003.006.003.012.005.018.004.009.006.02.006.033 0 .006.003.012.003.014a.251.251 0 01.003.048V9.32h.006z"/><path d="M11.584 8.622V7.378L10.652 8l.932.622z"/></g><path fill="%23fff" fill-rule="evenodd" d="M12.327 9.32c0 .018 0 .033-.003.
|
|
1
|
+
:root { --icon-codepen-color-16: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16"><g fill="%23000"><path d="M4.416 7.378v1.244L5.346 8l-.93-.622zM7.627 6.473V4.738L4.712 6.683l1.302.87 1.613-1.08zM11.285 6.683L8.37 4.738v1.735l1.613 1.08 1.302-.87zM4.712 9.32l2.915 1.942V9.527l-1.613-1.08-1.302.873zM8.37 9.527v1.735l2.915-1.942-1.302-.873-1.613 1.08zM8 7.12L6.683 8 8 8.879 9.314 8 8 7.12z"/><path d="M8 1a7 7 0 10.001 14.001A7 7 0 008 1zm4.327 8.32c0 .018 0 .033-.003.047 0 .006-.003.012-.003.015l-.006.033c-.002.006-.002.012-.005.018l-.01.026-.008.018c-.003.009-.01.018-.012.024a.06.06 0 01-.012.017l-.015.024a.065.065 0 01-.012.015c-.005.006-.011.015-.017.02l-.015.015c-.006.006-.015.012-.02.018-.007.003-.013.009-.019.012-.003 0-.003.003-.005.006l-3.96 2.64a.377.377 0 01-.414 0L3.832 9.631c-.003 0-.003-.003-.006-.006l-.018-.012c-.006-.006-.015-.012-.02-.018l-.016-.014a.129.129 0 01-.017-.021c-.003-.006-.01-.012-.012-.015a.064.064 0 01-.015-.024.062.062 0 00-.012-.017l-.012-.024-.009-.018-.008-.026-.006-.018a.106.106 0 01-.006-.033c0-.006-.003-.012-.003-.015-.003-.014-.003-.032-.003-.047V6.686c0-.018 0-.033.003-.048 0-.005.003-.011.003-.014l.006-.033.006-.018.008-.026.01-.018c.002-.009.008-.018.011-.024a.062.062 0 01.012-.017l.015-.024a.065.065 0 01.012-.015c.006-.006.011-.015.017-.02l.015-.015c.006-.006.015-.012.02-.018.007-.003.013-.01.019-.012.003 0 .003-.003.006-.006L7.79 3.741a.372.372 0 01.411 0l3.958 2.637c.002 0 .002.003.005.006l.018.012.021.018.015.014c.006.006.012.012.018.021l.011.015a.065.065 0 01.015.024.06.06 0 00.012.017.087.087 0 01.012.024l.009.018.009.026c.003.006.003.012.005.018.004.009.006.02.006.033 0 .006.003.012.003.014a.251.251 0 01.003.048V9.32h.006z"/><path d="M11.584 8.622V7.378L10.652 8l.932.622z"/></g><path fill="%23fff" fill-rule="evenodd" d="M12.327 9.32c0 .018 0 .033-.003.048 0 .003 0 .006-.002.01v.004a.14.14 0 00-.004.017c0 .003 0 .007-.002.012v.004a.044.044 0 00-.004.009c0 .002 0 .004-.002.006v.003l-.01.026-.008.018-.009.018-.003.006a.06.06 0 01-.012.017l-.003.006-.004.006a.33.33 0 01-.02.027.129.129 0 00-.008.01l-.01.01-.014.015a.135.135 0 01-.01.01.118.118 0 00-.01.008l-.01.006-.009.006-.003.003-.003.003-3.96 2.64a.377.377 0 01-.414 0L3.832 9.631l-.003-.003-.002-.003-.01-.006-.008-.006a.13.13 0 00-.01-.009.127.127 0 01-.01-.009l-.016-.014a.129.129 0 01-.017-.021.065.065 0 00-.012-.015.064.064 0 01-.015-.024.062.062 0 00-.012-.017l-.009-.018-.003-.006-.009-.018-.009-.026-.003-.01-.002-.008a.106.106 0 01-.006-.033l-.002-.01-.001-.005c-.003-.014-.003-.032-.003-.047V6.686c0-.018 0-.033.003-.047l.001-.01.002-.005.003-.017c0-.003 0-.007.002-.011V6.59l.003-.009.003-.009.01-.026.008-.018a.104.104 0 01.009-.018l.003-.006a.062.062 0 01.012-.017l.007-.012.008-.012a.065.065 0 01.012-.015l.008-.01c.003-.004.006-.008.01-.01l.014-.015a.131.131 0 01.01-.01c.004-.002.008-.005.01-.008l.004-.002.006-.004a.062.062 0 01.009-.006l.003-.003.002-.003L7.79 3.741a.371.371 0 01.411 0l3.957 2.637.004.003.002.003.01.006.005.004.003.002a.091.091 0 00.006.005l.005.004.01.009.015.014.017.021.008.01.004.005a.065.065 0 01.015.024.06.06 0 00.012.017.087.087 0 01.012.024l.009.018.008.026c.002.003.003.006.003.01l.003.008c.003.01.006.02.006.033l.002.01.001.005a.251.251 0 01.003.047V9.32h.006zm-7.911-.698V7.378L5.345 8l-.93.622zm3.211-3.884v1.735l-1.613 1.08-1.302-.87 2.915-1.945zm.743 0l2.915 1.945-1.302.87-1.613-1.08V4.738zm-.743 6.524L4.712 9.32l1.302-.873 1.613 1.08v1.735zm.743 0V9.527l1.613-1.08 1.302.873-2.915 1.942zM8 8.879L6.683 8 8 7.121 9.314 8 8 8.88zm3.584-1.5v1.243L10.652 8l.932-.622z" clip-rule="evenodd"/></svg>'); }
|