@rokkit/icons 1.0.0-next.99 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/README.md +104 -1
  2. package/lib/app/icons.json +114 -114
  3. package/lib/app/index.d.ts +6 -6
  4. package/lib/app/index.js +8 -8
  5. package/lib/app/index.mjs +5 -5
  6. package/lib/app/package.json +1 -2
  7. package/lib/app.json +2 -2
  8. package/lib/auth/icons.json +363 -45
  9. package/lib/auth/index.d.ts +6 -6
  10. package/lib/auth/index.js +8 -8
  11. package/lib/auth/index.mjs +5 -5
  12. package/lib/auth/package.json +1 -2
  13. package/lib/auth.json +333 -15
  14. package/lib/base/icons.json +294 -207
  15. package/lib/base/index.d.ts +6 -6
  16. package/lib/base/index.js +8 -8
  17. package/lib/base/index.mjs +5 -5
  18. package/lib/base/package.json +1 -2
  19. package/lib/base.json +98 -11
  20. package/lib/glyph/icons.json +1931 -0
  21. package/lib/glyph/index.d.ts +8 -0
  22. package/lib/glyph/index.js +9 -0
  23. package/lib/glyph/index.mjs +6 -0
  24. package/lib/{components → glyph}/package.json +3 -4
  25. package/lib/glyph.json +1931 -0
  26. package/lib/light/icons.json +21 -21
  27. package/lib/light/index.d.ts +6 -6
  28. package/lib/light/index.js +8 -8
  29. package/lib/light/index.mjs +5 -5
  30. package/lib/light/package.json +1 -2
  31. package/lib/light.json +2 -2
  32. package/lib/semantic/chars.json +1 -0
  33. package/lib/semantic/icons.json +1196 -0
  34. package/lib/semantic/index.d.ts +8 -0
  35. package/lib/semantic/index.js +9 -0
  36. package/lib/semantic/index.mjs +6 -0
  37. package/lib/semantic/info.json +1 -0
  38. package/lib/semantic/metadata.json +1 -0
  39. package/lib/semantic/package.json +24 -0
  40. package/lib/semantic.json +1196 -0
  41. package/lib/solid/icons.json +42 -42
  42. package/lib/solid/index.d.ts +6 -6
  43. package/lib/solid/index.js +8 -8
  44. package/lib/solid/index.mjs +5 -5
  45. package/lib/solid/package.json +1 -2
  46. package/lib/solid.json +2 -2
  47. package/lib/twotone/icons.json +18 -18
  48. package/lib/twotone/index.d.ts +6 -6
  49. package/lib/twotone/index.js +8 -8
  50. package/lib/twotone/index.mjs +5 -5
  51. package/lib/twotone/package.json +1 -2
  52. package/lib/twotone.json +2 -2
  53. package/package.json +34 -32
  54. package/lib/components/icons.json +0 -92
  55. package/lib/components/index.d.ts +0 -8
  56. package/lib/components/index.js +0 -9
  57. package/lib/components/index.mjs +0 -6
  58. package/lib/components.json +0 -92
  59. package/src/convert.js +0 -96
  60. package/src/index.js +0 -8
  61. /package/lib/{components → glyph}/chars.json +0 -0
  62. /package/lib/{components → glyph}/info.json +0 -0
  63. /package/lib/{components → glyph}/metadata.json +0 -0
@@ -1,8 +1,8 @@
1
- import type { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars } from '@iconify/types'
1
+ import type { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars } from '@iconify/types';
2
2
 
3
- export { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars }
3
+ export { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars };
4
4
 
5
- export declare const icons: IconifyJSON
6
- export declare const info: IconifyInfo
7
- export declare const metadata: IconifyMetaData
8
- export declare const chars: IconifyChars
5
+ export declare const icons: IconifyJSON;
6
+ export declare const info: IconifyInfo;
7
+ export declare const metadata: IconifyMetaData;
8
+ export declare const chars: IconifyChars;
package/lib/base/index.js CHANGED
@@ -1,9 +1,9 @@
1
- const icons = require('./icons.json')
2
- const info = {}
3
- const metadata = {}
4
- const chars = {}
1
+ const icons = require('./icons.json');
2
+ const info = {};
3
+ const metadata = {};
4
+ const chars = {};
5
5
 
6
- exports.icons = icons
7
- exports.info = info
8
- exports.metadata = metadata
9
- exports.chars = chars
6
+ exports.icons = icons;
7
+ exports.info = info;
8
+ exports.metadata = metadata;
9
+ exports.chars = chars;
@@ -1,6 +1,6 @@
1
- import icons from './icons.json' assert { type: 'json' }
1
+ import icons from './icons.json' with { type: 'json' };
2
2
 
3
- const info = {}
4
- const metadata = {}
5
- const chars = {}
6
- export { icons, info, metadata, chars }
3
+ const info = {};
4
+ const metadata = {};
5
+ const chars = {};
6
+ export { icons, info, metadata, chars };
@@ -5,7 +5,6 @@
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",
7
7
  "types": "index.d.ts",
8
- "bugs": "https://github.com/jerrythomas/rokkit/issues",
9
8
  "homepage": "https://github.com/jerrythomas/rokkit",
10
9
  "exports": {
11
10
  "./*": "./*",
@@ -20,6 +19,6 @@
20
19
  "icons": "icons.json"
21
20
  },
22
21
  "dependencies": {
23
- "@iconify/types": "^2.0.0"
22
+ "@iconify/types": "*"
24
23
  }
25
24
  }
package/lib/base.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "prefix": "base",
3
- "lastModified": 1717410887,
3
+ "lastModified": 1775221916,
4
4
  "icons": {
5
5
  "accordion-closed": {
6
6
  "body": "<path fill=\"currentColor\" d=\"M16.5 12 9 19.5l-1.05-1.05L14.4 12 7.95 5.55 9 4.5z\"/>"
@@ -9,20 +9,41 @@
9
9
  "body": "<path fill=\"currentColor\" d=\"M12 16.5 4.5 9l1.05-1.05L12 14.4l6.45-6.45L19.5 9z\"/>"
10
10
  },
11
11
  "action-add": {
12
- "body": "<g fill=\"currentColor\"><path d=\"M12 2a10 10 0 100 20 10 10 0 000-20m0 18a8 8 0 110-16.001A8 8 0 0112 20\"/><path d=\"M15 11h-2V9a1 1 0 00-2 0v2H9a1 1 0 000 2h2v2a1 1 0 002 0v-2h2a1 1 0 000-2\"/></g>"
12
+ "body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M12 22c-4.714 0-7.071 0-8.536-1.465C2 19.072 2 16.714 2 12s0-7.071 1.464-8.536C4.93 2 7.286 2 12 2s7.071 0 8.535 1.464C22 4.93 22 7.286 22 12s0 7.071-1.465 8.535C19.072 22 16.714 22 12 22m0-13.75a.75.75 0 01.75.75v2.25H15a.75.75 0 110 1.5h-2.25V15a.75.75 0 11-1.5 0v-2.25H9a.75.75 0 110-1.5h2.25V9a.75.75 0 01.75-.75\" clip-rule=\"evenodd\"/>"
13
+ },
14
+ "action-cancel": {
15
+ "body": "<g fill=\"currentColor\"><path d=\"M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2m0 18a8 8 0 110-16 8 8 0 010 16\"/><path d=\"M15.536 8.464a1 1 0 00-1.415 0L12 10.586 9.879 8.464A1 1 0 108.464 9.88L10.586 12l-2.122 2.121a1 1 0 101.415 1.415L12 13.414l2.121 2.122a1 1 0 001.415-1.415L13.414 12l2.122-2.121a1 1 0 000-1.415\"/></g>"
16
+ },
17
+ "action-check": {
18
+ "body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M12 22c-4.714 0-7.071 0-8.536-1.465C2 19.072 2 16.714 2 12s0-7.071 1.464-8.536C4.93 2 7.286 2 12 2s7.071 0 8.535 1.464C22 4.93 22 7.286 22 12s0 7.071-1.465 8.535C19.072 22 16.714 22 12 22m4.03-12.03a.75.75 0 00-1.06-1.06l-4.47 4.47-1.47-1.47a.75.75 0 00-1.06 1.06l2 2a.75.75 0 001.06 0z\" clip-rule=\"evenodd\"/>"
13
19
  },
14
20
  "action-clear": {
15
21
  "body": "<path fill=\"currentColor\" d=\"M6 19a2 2 0 002 2h8a2 2 0 002-2V7H6zM8 9h8v10H8zm7.5-5-1-1h-5l-1 1H5v2h14V4z\"/>"
16
22
  },
17
23
  "action-close": {
18
- "body": "<g fill=\"currentColor\"><path d=\"M12 1.5C6.15 1.5 1.5 6.15 1.5 12S6.15 22.5 12 22.5 22.5 17.85 22.5 12 17.85 1.5 12 1.5M12 21c-4.95 0-9-4.05-9-9s4.05-9 9-9 9 4.05 9 9-4.05 9-9 9\"/><path d=\"M16.05 17.25 12 13.2l-4.05 4.05-1.2-1.2L10.8 12 6.75 7.95l1.2-1.2L12 10.8l4.05-4.05 1.2 1.2L13.2 12l4.05 4.05z\"/></g>"
24
+ "body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M12 22c-4.714 0-7.071 0-8.536-1.465C2 19.072 2 16.714 2 12s0-7.071 1.464-8.536C4.93 2 7.286 2 12 2s7.071 0 8.535 1.464C22 4.93 22 7.286 22 12s0 7.071-1.465 8.535C19.072 22 16.714 22 12 22M8.97 8.97a.75.75 0 011.06 0L12 10.94l1.97-1.97a.75.75 0 011.06 1.06L13.06 12l1.97 1.97a.75.75 0 11-1.06 1.06L12 13.06l-1.97 1.97a.75.75 0 11-1.06-1.06L10.94 12l-1.97-1.97a.75.75 0 010-1.06\" clip-rule=\"evenodd\"/>"
25
+ },
26
+ "action-copy": {
27
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><path d=\"M6 11c0-2.828 0-4.243.879-5.121C7.757 5 9.172 5 12 5h3c2.828 0 4.243 0 5.121.879C21 6.757 21 8.172 21 11v5c0 2.828 0 4.243-.879 5.121C19.243 22 17.828 22 15 22h-3c-2.828 0-4.243 0-5.121-.879C6 20.243 6 18.828 6 16z\"/><path d=\"M6 19a3 3 0 01-3-3v-6c0-3.771 0-5.657 1.172-6.828S7.229 2 11 2h4a3 3 0 013 3\" opacity=\".5\"/></g>"
28
+ },
29
+ "action-copysuccess": {
30
+ "body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M7.263 3.259A2.25 2.25 0 019.5 1.25h5a2.25 2.25 0 012.237 2.009c.763.015 1.423.055 1.987.158.758.14 1.403.405 1.928.93.602.602.86 1.36.982 2.26.116.866.116 1.969.116 3.336v6.11c0 1.368 0 2.47-.116 3.337-.122.9-.38 1.658-.982 2.26s-1.36.86-2.26.982c-.867.116-1.97.116-3.337.116h-6.11c-1.367 0-2.47 0-3.337-.116-.9-.121-1.658-.38-2.26-.982s-.86-1.36-.981-2.26c-.117-.867-.117-1.97-.117-3.337v-6.11c0-1.367 0-2.47.117-3.336.12-.9.38-1.658.981-2.26.525-.525 1.17-.79 1.928-.93.564-.103 1.224-.143 1.987-.158m.002 1.5c-.718.015-1.272.052-1.718.134-.566.104-.895.27-1.138.514-.277.277-.457.666-.556 1.4-.101.755-.103 1.756-.103 3.191v6c0 1.436.002 2.437.103 3.192.099.734.28 1.122.556 1.4.277.276.665.457 1.4.555.754.102 1.756.103 3.191.103h6c1.435 0 2.436-.001 3.192-.103.734-.098 1.122-.279 1.399-.556.277-.276.457-.665.556-1.399.101-.755.103-1.756.103-3.192v-6c0-1.435-.002-2.436-.103-3.192-.099-.733-.28-1.122-.556-1.399-.244-.243-.572-.41-1.138-.514-.446-.082-1-.119-1.718-.134A2.25 2.25 0 0114.5 6.75h-5a2.25 2.25 0 01-2.235-1.99M9.5 2.75a.75.75 0 00-.75.75v1c0 .414.336.75.75.75h5a.75.75 0 00.75-.75v-1a.75.75 0 00-.75-.75zm6.048 7.738a.75.75 0 01-.036 1.06l-4.286 4a.75.75 0 01-1.024 0l-1.714-1.6a.75.75 0 111.024-1.096l1.202 1.122 3.774-3.522a.75.75 0 011.06.036\" clip-rule=\"evenodd\"/>"
19
31
  },
20
32
  "action-cross": {
21
33
  "body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M12 11.067 5.974 5 5 5.98 10.98 12 5 18.02l.974.98L12 12.933 18.026 19l.974-.98L13.02 12 19 5.98 18.026 5z\" clip-rule=\"evenodd\"/>"
22
34
  },
35
+ "action-pin": {
36
+ "body": "<path fill=\"currentColor\" d=\"M16 3.5A1.5 1.5 0 0014.5 2h-5A1.5 1.5 0 008 3.5V4c0 .552.177 1.063.475 1.487L7.2 8.838c-.743.96-1.2 2.179-1.2 3.412 0 .414.336.75.75.75h4.5v7.25a.75.75 0 001.5 0V13h4.5a.75.75 0 00.75-.75c0-1.233-.457-2.452-1.2-3.412l-1.275-3.351C15.823 5.063 16 4.552 16 4z\"/>"
37
+ },
23
38
  "action-remove": {
24
39
  "body": "<g fill=\"currentColor\"><path d=\"M12 2a10 10 0 100 20 10 10 0 000-20m0 18a8 8 0 110-16 8 8 0 010 16\"/><path d=\"M15 11H9a1 1 0 000 2h6a1 1 0 000-2\"/></g>"
25
40
  },
41
+ "action-retry": {
42
+ "body": "<path fill=\"currentColor\" d=\"M12 4c-2.21 0-4.21.88-5.66 2.34L4 4v6h6L7.76 7.76A5.98 5.98 0 0112 6c3.31 0 6 2.69 6 6s-2.69 6-6 6c-1.64 0-3.14-.67-4.24-1.76l-1.42 1.42A7.93 7.93 0 0012 20c4.42 0 8-3.58 8-8s-3.58-8-8-8\"/>"
43
+ },
44
+ "action-save": {
45
+ "body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M18.172 2H5a3 3 0 00-3 3v14a3 3 0 003 3h14a3 3 0 003-3V5.828a3 3 0 00-.879-2.121l-.828-.828A3 3 0 0018.172 2M12 18a3 3 0 100-6 3 3 0 000 6M6 4h9v4a1 1 0 01-1 1H7a1 1 0 01-1-1z\" clip-rule=\"evenodd\"/>"
46
+ },
26
47
  "action-search": {
27
48
  "body": "<path fill=\"currentColor\" d=\"M10 2.75a7.25 7.25 0 015.63 11.819l4.9 4.9a.75.75 0 01-.976 1.134l-.084-.073-4.901-4.9A7.25 7.25 0 1110 2.75m0 1.5a5.75 5.75 0 100 11.5 5.75 5.75 0 000-11.5\"/>"
28
49
  },
@@ -32,6 +53,33 @@
32
53
  "action-sort-up": {
33
54
  "body": "<path fill=\"currentColor\" d=\"m12 3 5.25 5.25L16.2 9.3 12 5.1 7.8 9.3 6.75 8.25z\"/>"
34
55
  },
56
+ "action-unpin": {
57
+ "body": "<g fill=\"currentColor\"><path d=\"M16 3.5A1.5 1.5 0 0014.5 2h-5A1.5 1.5 0 008 3.5V4c0 .552.177 1.063.475 1.487L7.2 8.838c-.743.96-1.2 2.179-1.2 3.412 0 .414.336.75.75.75h4.5v7.25a.75.75 0 001.5 0V13h4.5a.75.75 0 00.75-.75c0-1.233-.457-2.452-1.2-3.412l-1.275-3.351C15.823 5.063 16 4.552 16 4z\"/><path d=\"M4.22 3.22a.75.75 0 000 1.06l15.5 15.5a.749.749 0 101.06-1.06L5.28 3.22a.75.75 0 00-1.06 0\"/></g>"
58
+ },
59
+ "alert-clear": {
60
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\"><path d=\"M22 10.5V12c0 4.714 0 7.071-1.465 8.535C19.072 22 16.714 22 12 22s-7.071 0-8.536-1.465C2 19.072 2 16.714 2 12s0-7.071 1.464-8.536C4.93 2 7.286 2 12 2h1.5\" opacity=\".5\"/><path d=\"M7 14h9m-9 3.5h6M22 2l-5 5m0-5 5 5\"/></g>"
61
+ },
62
+ "alert-unread": {
63
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><path stroke-linecap=\"round\" d=\"M22 10.5V12c0 4.714 0 7.071-1.465 8.535C19.072 22 16.714 22 12 22s-7.071 0-8.536-1.465C2 19.072 2 16.714 2 12s0-7.071 1.464-8.536C4.93 2 7.286 2 12 2h1.5\" opacity=\".5\"/><circle cx=\"19\" cy=\"5\" r=\"3\"/><path stroke-linecap=\"round\" d=\"M7 14h9m-9 3.5h6\"/></g>"
64
+ },
65
+ "align-horizontal-center": {
66
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><path stroke-linecap=\"round\" d=\"M12 2v3m0 17v-3m0-5v-4\" opacity=\".5\"/><path d=\"M5 7.5c0-.935 0-1.402.201-1.75a1.5 1.5 0 01.549-.549C6.098 5 6.565 5 7.5 5h9c.935 0 1.402 0 1.75.201a1.5 1.5 0 01.549.549C19 6.098 19 6.565 19 7.5s0 1.402-.201 1.75a1.5 1.5 0 01-.549.549c-.348.201-.815.201-1.75.201h-9c-.935 0-1.402 0-1.75-.201a1.5 1.5 0 01-.549-.549C5 8.902 5 8.435 5 7.5Zm2 9c0-.935 0-1.402.201-1.75a1.5 1.5 0 01.549-.549C8.098 14 8.565 14 9.5 14h5c.935 0 1.402 0 1.75.201a1.5 1.5 0 01.549.549c.201.348.201.815.201 1.75s0 1.402-.201 1.75a1.5 1.5 0 01-.549.549c-.348.201-.815.201-1.75.201h-5c-.935 0-1.402 0-1.75-.201a1.5 1.5 0 01-.549-.549C7 17.902 7 17.435 7 16.5Z\"/></g>"
67
+ },
68
+ "align-horizontal-left": {
69
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><path stroke-linecap=\"round\" d=\"M3 2v20\" opacity=\".5\"/><path d=\"M7 7.5c0-.935 0-1.402.201-1.75a1.5 1.5 0 01.549-.549C8.098 5 8.565 5 9.5 5h9c.935 0 1.402 0 1.75.201a1.5 1.5 0 01.549.549C21 6.098 21 6.565 21 7.5s0 1.402-.201 1.75a1.5 1.5 0 01-.549.549c-.348.201-.815.201-1.75.201h-9c-.935 0-1.402 0-1.75-.201a1.5 1.5 0 01-.549-.549C7 8.902 7 8.435 7 7.5Zm0 9c0-.935 0-1.402.201-1.75a1.5 1.5 0 01.549-.549C8.098 14 8.565 14 9.5 14h6c.935 0 1.402 0 1.75.201a1.5 1.5 0 01.549.549c.201.348.201.815.201 1.75s0 1.402-.201 1.75a1.5 1.5 0 01-.549.549c-.348.201-.815.201-1.75.201h-6c-.935 0-1.402 0-1.75-.201a1.5 1.5 0 01-.549-.549C7 17.902 7 17.435 7 16.5Z\"/></g>"
70
+ },
71
+ "align-horizontal-right": {
72
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><path stroke-linecap=\"round\" d=\"M21 2v20\" opacity=\".5\"/><path d=\"M17 7.5c0-.935 0-1.402-.201-1.75a1.5 1.5 0 00-.549-.549C15.902 5 15.435 5 14.5 5h-9c-.935 0-1.402 0-1.75.201a1.5 1.5 0 00-.549.549C3 6.098 3 6.565 3 7.5s0 1.402.201 1.75a1.5 1.5 0 00.549.549C4.098 10 4.565 10 5.5 10h9c.935 0 1.402 0 1.75-.201a1.5 1.5 0 00.549-.549C17 8.902 17 8.435 17 7.5Zm0 9c0-.935 0-1.402-.201-1.75a1.5 1.5 0 00-.549-.549C15.902 14 15.435 14 14.5 14h-6c-.935 0-1.402 0-1.75.201a1.5 1.5 0 00-.549.549C6 15.098 6 15.565 6 16.5s0 1.402.201 1.75a1.5 1.5 0 00.549.549C7.098 19 7.565 19 8.5 19h6c.935 0 1.402 0 1.75-.201a1.5 1.5 0 00.549-.549c.201-.348.201-.815.201-1.75Z\"/></g>"
73
+ },
74
+ "align-vertical-bottom": {
75
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><path stroke-linecap=\"round\" d=\"M2 21h20\" opacity=\".5\"/><path d=\"M7.5 17c-.935 0-1.402 0-1.75-.201a1.5 1.5 0 01-.549-.549C5 15.902 5 15.435 5 14.5v-9c0-.935 0-1.402.201-1.75a1.5 1.5 0 01.549-.549C6.098 3 6.565 3 7.5 3s1.402 0 1.75.201a1.5 1.5 0 01.549.549C10 4.098 10 4.565 10 5.5v9c0 .935 0 1.402-.201 1.75a1.5 1.5 0 01-.549.549C8.902 17 8.435 17 7.5 17Zm9 0c-.935 0-1.402 0-1.75-.201a1.5 1.5 0 01-.549-.549C14 15.902 14 15.435 14 14.5v-6c0-.935 0-1.402.201-1.75a1.5 1.5 0 01.549-.549C15.098 6 15.565 6 16.5 6s1.402 0 1.75.201a1.5 1.5 0 01.549.549C19 7.098 19 7.565 19 8.5v6c0 .935 0 1.402-.201 1.75a1.5 1.5 0 01-.549.549c-.348.201-.815.201-1.75.201Z\"/></g>"
76
+ },
77
+ "align-vertical-middle": {
78
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><path stroke-linecap=\"round\" d=\"M2 12h3m17 0h-3m-5 0h-4\" opacity=\".5\"/><path d=\"M7.5 5c-.935 0-1.402 0-1.75.201a1.5 1.5 0 00-.549.549C5 6.098 5 6.565 5 7.5v9c0 .935 0 1.402.201 1.75a1.5 1.5 0 00.549.549C6.098 19 6.565 19 7.5 19s1.402 0 1.75-.201a1.5 1.5 0 00.549-.549c.201-.348.201-.815.201-1.75v-9c0-.935 0-1.402-.201-1.75a1.5 1.5 0 00-.549-.549C8.902 5 8.435 5 7.5 5Zm9 2c-.935 0-1.402 0-1.75.201a1.5 1.5 0 00-.549.549C14 8.098 14 8.565 14 9.5v5c0 .935 0 1.402.201 1.75a1.5 1.5 0 00.549.549c.348.201.815.201 1.75.201s1.402 0 1.75-.201a1.5 1.5 0 00.549-.549c.201-.348.201-.815.201-1.75v-5c0-.935 0-1.402-.201-1.75a1.5 1.5 0 00-.549-.549C17.902 7 17.435 7 16.5 7Z\"/></g>"
79
+ },
80
+ "align-vertical-top": {
81
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><path stroke-linecap=\"round\" d=\"M2 3h20\" opacity=\".5\"/><path d=\"M7.5 7c-.935 0-1.402 0-1.75.201a1.5 1.5 0 00-.549.549C5 8.098 5 8.565 5 9.5v9c0 .935 0 1.402.201 1.75a1.5 1.5 0 00.549.549C6.098 21 6.565 21 7.5 21s1.402 0 1.75-.201a1.5 1.5 0 00.549-.549c.201-.348.201-.815.201-1.75v-9c0-.935 0-1.402-.201-1.75a1.5 1.5 0 00-.549-.549C8.902 7 8.435 7 7.5 7Zm9 0c-.935 0-1.402 0-1.75.201a1.5 1.5 0 00-.549.549C14 8.098 14 8.565 14 9.5v6c0 .935 0 1.402.201 1.75a1.5 1.5 0 00.549.549c.348.201.815.201 1.75.201s1.402 0 1.75-.201a1.5 1.5 0 00.549-.549c.201-.348.201-.815.201-1.75v-6c0-.935 0-1.402-.201-1.75a1.5 1.5 0 00-.549-.549C17.902 7 17.435 7 16.5 7Z\"/></g>"
82
+ },
35
83
  "arrow-down": {
36
84
  "body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M18.78 11.22a.75.75 0 010 1.06l-6.25 6.25a.75.75 0 01-1.06 0l-6.25-6.25a.75.75 0 011.06-1.06l4.97 4.97V6.75a.75.75 0 111.5 0v9.44l4.97-4.97a.75.75 0 011.06 0\" clip-rule=\"evenodd\"/>"
37
85
  },
@@ -56,17 +104,23 @@
56
104
  "badge-warn": {
57
105
  "body": "<g fill=\"currentColor\"><path d=\"m14.136 1.2 1.375 1.01c.274.201.593.333.929.384l1.687.259a3.61 3.61 0 013.02 3.021l.259 1.686c.051.336.183.655.384.929l1.01 1.375a3.61 3.61 0 010 4.272l-1.01 1.375a2.1 2.1 0 00-.384.929l-.259 1.687a3.61 3.61 0 01-3.021 3.02l-1.686.259a2.1 2.1 0 00-.929.384l-1.375 1.01a3.61 3.61 0 01-4.272 0l-1.375-1.01a2.1 2.1 0 00-.929-.384l-1.687-.259a3.61 3.61 0 01-3.02-3.021l-.259-1.686a2.1 2.1 0 00-.384-.929L1.2 14.136a3.61 3.61 0 010-4.272l1.01-1.375c.201-.274.333-.593.384-.929l.259-1.687a3.61 3.61 0 013.021-3.02l1.686-.259c.336-.051.655-.183.929-.384L9.864 1.2a3.61 3.61 0 014.272 0m-3.384 1.209-1.375 1.01a3.6 3.6 0 01-1.59.658l-1.686.258a2.11 2.11 0 00-1.766 1.766l-.258 1.686a3.6 3.6 0 01-.658 1.589l-1.01 1.376a2.11 2.11 0 000 2.496l1.01 1.375c.344.469.57 1.015.658 1.59l.258 1.686c.14.911.855 1.626 1.766 1.766l1.686.258a3.6 3.6 0 011.589.658l1.376 1.01a2.11 2.11 0 002.496 0l1.375-1.01a3.6 3.6 0 011.59-.657l1.686-.26a2.11 2.11 0 001.766-1.765l.258-1.686a3.6 3.6 0 01.658-1.589l1.01-1.376a2.11 2.11 0 000-2.496l-1.01-1.375a3.6 3.6 0 01-.657-1.59l-.26-1.686a2.11 2.11 0 00-1.765-1.766l-1.686-.258a3.6 3.6 0 01-1.589-.658l-1.376-1.01a2.11 2.11 0 00-2.496 0\"/><path d=\"M13 16a1 1 0 11-2 0 1 1 0 012 0m-.25-8.25a.75.75 0 10-1.5 0v4.5a.75.75 0 101.5 0z\"/></g>"
58
106
  },
107
+ "calendar": {
108
+ "body": "<g fill=\"none\"><path stroke=\"currentColor\" stroke-width=\"1.5\" d=\"M2 12c0-3.771 0-5.657 1.172-6.828S6.229 4 10 4h4c3.771 0 5.657 0 6.828 1.172S22 8.229 22 12v2c0 3.771 0 5.657-1.172 6.828S17.771 22 14 22h-4c-3.771 0-5.657 0-6.828-1.172S2 17.771 2 14z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\" d=\"M7 4V2.5M17 4V2.5M2.5 9h19\" opacity=\".5\"/><path fill=\"currentColor\" d=\"M18 17a1 1 0 11-2 0 1 1 0 012 0m0-4a1 1 0 11-2 0 1 1 0 012 0m-5 4a1 1 0 11-2 0 1 1 0 012 0m0-4a1 1 0 11-2 0 1 1 0 012 0m-5 4a1 1 0 11-2 0 1 1 0 012 0m0-4a1 1 0 11-2 0 1 1 0 012 0\"/></g>"
109
+ },
110
+ "calendar-mark": {
111
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><path d=\"M2 12c0-3.771 0-5.657 1.172-6.828S6.229 4 10 4h4c3.771 0 5.657 0 6.828 1.172S22 8.229 22 12v2c0 3.771 0 5.657-1.172 6.828S17.771 22 14 22h-4c-3.771 0-5.657 0-6.828-1.172S2 17.771 2 14z\"/><path stroke-linecap=\"round\" d=\"M7 4V2.5M17 4V2.5M2 9h20\" opacity=\".5\"/><circle cx=\"16.5\" cy=\"16.5\" r=\"1.5\"/></g>"
112
+ },
113
+ "calendar-minimal": {
114
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><path d=\"M2 12c0-3.771 0-5.657 1.172-6.828S6.229 4 10 4h4c3.771 0 5.657 0 6.828 1.172S22 8.229 22 12v2c0 3.771 0 5.657-1.172 6.828S17.771 22 14 22h-4c-3.771 0-5.657 0-6.828-1.172S2 17.771 2 14z\"/><path stroke-linecap=\"round\" d=\"M7 4V2.5M17 4V2.5M2 9h20\" opacity=\".5\"/></g>"
115
+ },
59
116
  "checkbox-checked": {
60
- "body": "<path fill=\"currentColor\" d=\"M6.25 3A3.25 3.25 0 003 6.25v11.5A3.25 3.25 0 006.25 21h11.5A3.25 3.25 0 0021 17.75V6.25A3.25 3.25 0 0017.75 3zM4.5 6.25c0-.966.784-1.75 1.75-1.75h11.5c.966 0 1.75.784 1.75 1.75v11.5a1.75 1.75 0 01-1.75 1.75H6.25a1.75 1.75 0 01-1.75-1.75zm12.78 3.03a.75.75 0 10-1.06-1.06l-6.223 6.216L7.78 12.22a.75.75 0 00-1.06 1.06l2.745 2.746a.75.75 0 001.06 0l6.754-6.745z\"/>"
117
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><path d=\"M2 12c0-4.714 0-7.071 1.464-8.536C4.93 2 7.286 2 12 2s7.071 0 8.535 1.464C22 4.93 22 7.286 22 12s0 7.071-1.465 8.535C19.072 22 16.714 22 12 22s-7.071 0-8.536-1.465C2 19.072 2 16.714 2 12Z\"/><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m8.5 12.5 2 2 5-5\"/></g>"
61
118
  },
62
119
  "checkbox-unchecked": {
63
- "body": "<path fill=\"currentColor\" d=\"M3 6.25A3.25 3.25 0 016.25 3h11.5A3.25 3.25 0 0121 6.25v11.5A3.25 3.25 0 0117.75 21H6.25A3.25 3.25 0 013 17.75zM6.25 4.5A1.75 1.75 0 004.5 6.25v11.5c0 .966.784 1.75 1.75 1.75h11.5a1.75 1.75 0 001.75-1.75V6.25a1.75 1.75 0 00-1.75-1.75z\"/>"
64
- },
65
- "checkbox-undefined": {
66
- "body": "<path fill=\"currentColor\" d=\"M6.25 3A3.25 3.25 0 003 6.25v11.5A3.25 3.25 0 006.25 21h11.5A3.25 3.25 0 0021 17.75V6.25A3.25 3.25 0 0017.75 3zM4.5 6.25c0-.966.784-1.75 1.75-1.75h11.5c.966 0 1.75.784 1.75 1.75v11.5a1.75 1.75 0 01-1.75 1.75H6.25a1.75 1.75 0 01-1.75-1.75zM7.25 6C6.56 6 6 6.56 6 7.25v9.5c0 .69.56 1.25 1.25 1.25h9.5c.69 0 1.25-.56 1.25-1.25v-9.5C18 6.56 17.44 6 16.75 6z\"/>"
120
+ "body": "<path fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\" d=\"M2 12c0-4.714 0-7.071 1.464-8.536C4.93 2 7.286 2 12 2s7.071 0 8.535 1.464C22 4.93 22 7.286 22 12s0 7.071-1.465 8.535C19.072 22 16.714 22 12 22s-7.071 0-8.536-1.465C2 19.072 2 16.714 2 12Z\"/>"
67
121
  },
68
122
  "checkbox-unknown": {
69
- "body": "<path fill=\"currentColor\" d=\"M6.25 3A3.25 3.25 0 003 6.25v11.5A3.25 3.25 0 006.25 21h11.5A3.25 3.25 0 0021 17.75V6.25A3.25 3.25 0 0017.75 3zM4.5 6.25c0-.966.784-1.75 1.75-1.75h11.5c.966 0 1.75.784 1.75 1.75v11.5a1.75 1.75 0 01-1.75 1.75H6.25a1.75 1.75 0 01-1.75-1.75zM7.25 6C6.56 6 6 6.56 6 7.25v9.5c0 .69.56 1.25 1.25 1.25h9.5c.69 0 1.25-.56 1.25-1.25v-9.5C18 6.56 17.44 6 16.75 6z\"/>"
123
+ "body": "<g fill=\"currentColor\"><path fill-rule=\"evenodd\" d=\"M3.464 3.464C2 4.93 2 7.286 2 12s0 7.071 1.464 8.535l17.072-17.07C19.07 2 16.714 2 12 2S4.929 2 3.464 3.464\" clip-rule=\"evenodd\"/><path d=\"M3.465 20.536C4.929 22 7.286 22 12 22s7.071 0 8.536-1.464C22 19.07 22 16.714 22 12s0-7.07-1.464-8.535z\" opacity=\".5\"/></g>"
70
124
  },
71
125
  "folder-closed": {
72
126
  "body": "<path fill=\"currentColor\" d=\"M4 20q-.824 0-1.412-.587A1.93 1.93 0 012 18V6q0-.824.588-1.412A1.92 1.92 0 014 4h5.175a1.98 1.98 0 011.4.575L12 6h8q.825 0 1.413.588Q22 7.175 22 8v10q0 .825-.587 1.413A1.93 1.93 0 0120 20z\"/>"
@@ -98,6 +152,18 @@
98
152
  "menu": {
99
153
  "body": "<path fill=\"currentColor\" d=\"M3 4.5h18V6H3zM3 18h18v1.5H3zm0-9h18v1.5H3zm0 4.5h18V15H3z\"/>"
100
154
  },
155
+ "menu-closed": {
156
+ "body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m9 18 6-6-6-6\"/>"
157
+ },
158
+ "menu-dots": {
159
+ "body": "<g fill=\"none\"><path fill=\"currentColor\" d=\"M9 12a1 1 0 11-2 0 1 1 0 012 0m4 0a1 1 0 11-2 0 1 1 0 012 0m4 0a1 1 0 11-2 0 1 1 0 012 0\"/><path stroke=\"currentColor\" stroke-width=\"1.5\" d=\"M2 12c0-4.714 0-7.071 1.464-8.536C4.93 2 7.286 2 12 2s7.071 0 8.535 1.464C22 4.93 22 7.286 22 12s0 7.071-1.465 8.535C19.072 22 16.714 22 12 22s-7.071 0-8.536-1.465C2 19.072 2 16.714 2 12Z\" opacity=\".5\"/></g>"
160
+ },
161
+ "menu-opened": {
162
+ "body": "<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m6 9 6 6 6-6\"/>"
163
+ },
164
+ "menu-sidebar": {
165
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><path d=\"M2 11c0-3.771 0-5.657 1.172-6.828S6.229 3 10 3h4c3.771 0 5.657 0 6.828 1.172S22 7.229 22 11v2c0 3.771 0 5.657-1.172 6.828S17.771 21 14 21h-4c-3.771 0-5.657 0-6.828-1.172S2 16.771 2 13z\"/><path stroke-linecap=\"round\" d=\"M5.5 10h6m-5 4h4\"/><path stroke-linecap=\"round\" d=\"M15 21V3\" opacity=\".5\"/></g>"
166
+ },
101
167
  "minus": {
102
168
  "body": "<g fill=\"currentColor\"><path d=\"M18 3H6a3 3 0 00-3 3v12a3 3 0 003 3h12a3 3 0 003-3V6a3 3 0 00-3-3m1 15a1 1 0 01-1 1H6a1 1 0 01-1-1V6a1 1 0 011-1h12a1 1 0 011 1z\"/><path d=\"M15 11H9a1 1 0 000 2h6a1 1 0 000-2\"/></g>"
103
169
  },
@@ -107,6 +173,9 @@
107
173
  "mode-light": {
108
174
  "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\"><circle cx=\"12\" cy=\"12\" r=\"5\"/><path stroke-linecap=\"round\" d=\"M12 2v2m0 16v2M4 12H2m20 0h-2\"/><path stroke-linecap=\"round\" d=\"m19.778 4.222-2.222 2.032M4.222 4.222l2.222 2.032m0 11.302-2.222 2.222m15.556 0-2.222-2.222\" opacity=\".5\"/></g>"
109
175
  },
176
+ "mode-system": {
177
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><rect width=\"20\" height=\"14\" x=\"2\" y=\"3\" rx=\"2\"/><path d=\"M8 21h8m-4-4v4\"/></g>"
178
+ },
110
179
  "navigate-down": {
111
180
  "body": "<path fill=\"currentColor\" d=\"M12 16.5 4.5 9l1.05-1.05L12 14.4l6.45-6.45L19.5 9z\"/>"
112
181
  },
@@ -128,6 +197,12 @@
128
197
  "palette": {
129
198
  "body": "<path fill=\"currentColor\" d=\"M12 22a9.7 9.7 0 01-3.875-.788 10.1 10.1 0 01-3.187-2.15 10.1 10.1 0 01-2.15-3.187A9.7 9.7 0 012 12q0-2.075.812-3.9a10.1 10.1 0 012.201-3.175Q6.4 3.575 8.25 2.787A10 10 0 0112.2 2q2 0 3.775.688a9.9 9.9 0 013.112 1.9 9.1 9.1 0 012.125 2.875A8.3 8.3 0 0122 11.05q0 2.875-1.75 4.412Q18.5 17 16 17h-1.85q-.225 0-.312.125a.47.47 0 00-.088.275q0 .3.375.862t.375 1.288q0 1.25-.688 1.85T12 22m-5.5-9q.65 0 1.075-.425T8 11.5t-.425-1.075T6.5 10t-1.075.425T5 11.5t.425 1.075T6.5 13m3-4q.65 0 1.075-.425T11 7.5t-.425-1.075T9.5 6t-1.075.425T8 7.5t.425 1.075T9.5 9m5 0q.65 0 1.075-.425T16 7.5t-.425-1.075T14.5 6t-1.075.425T13 7.5t.425 1.075T14.5 9m3 4q.65 0 1.075-.425T19 11.5t-.425-1.075T17.5 10t-1.075.425T16 11.5t.425 1.075T17.5 13\"/>"
130
199
  },
200
+ "palette-hex": {
201
+ "body": "<path fill=\"currentColor\" d=\"M10.44 2.335a.76.76 0 10-1.482.351L9.936 7H5.75a.75.75 0 000 1.5h4.526l.84 4H6.75a.75.75 0 000 1.5h4.706l1.004 4.665a.76.76 0 101.482-.351L13.028 14h3.428l1.004 4.665a.76.76 0 101.482-.351L18.028 14h3.222a.75.75 0 000-1.5h-3.562l-.84-4h3.402a.75.75 0 000-1.5h-3.742L15.44 2.335a.76.76 0 10-1.482.351L14.936 7h-3.428zM11.848 8.5l.84 4h3.428l-.84-4z\"/>"
202
+ },
203
+ "palette-presets": {
204
+ "body": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M3 6.75A.75.75 0 013.75 6h16.5a.75.75 0 010 1.5H3.75A.75.75 0 013 6.75M3 12a.75.75 0 01.75-.75h16.5a.75.75 0 010 1.5H3.75A.75.75 0 013 12m0 5.25a.75.75 0 01.75-.75h16.5a.75.75 0 010 1.5H3.75a.75.75 0 01-.75-.75\" clip-rule=\"evenodd\"/>"
205
+ },
131
206
  "plus": {
132
207
  "body": "<g fill=\"currentColor\"><path d=\"M18 3H6a3 3 0 00-3 3v12a3 3 0 003 3h12a3 3 0 003-3V6a3 3 0 00-3-3m1 15a1 1 0 01-1 1H6a1 1 0 01-1-1V6a1 1 0 011-1h12a1 1 0 011 1z\"/><path d=\"M15 11h-2V9a1 1 0 00-2 0v2H9a1 1 0 000 2h2v2a1 1 0 002 0v-2h2a1 1 0 000-2\"/></g>"
133
208
  },
@@ -167,7 +242,7 @@
167
242
  "sort-descending": {
168
243
  "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.5\"><path d=\"M4 8h9\"/><path d=\"M6 13h7\" opacity=\".7\"/><path d=\"M8 18h5\" opacity=\".4\"/><path stroke-linejoin=\"round\" d=\"M17 20V4l3 4\"/></g>"
169
244
  },
170
- "sort-unsorted": {
245
+ "sort-none": {
171
246
  "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"M16 18V6m0 0 4 4.125M16 6l-4 4.125\" opacity=\".5\"/><path d=\"M8 6v12m0 0 4-4.125M8 18l-4-4.125\"/></g>"
172
247
  },
173
248
  "state-error": {
@@ -191,6 +266,12 @@
191
266
  "themes": {
192
267
  "body": "<path fill=\"currentColor\" d=\"M4 6a2 2 0 00-2 2v12c0 1.1.9 2 2 2h12a2 2 0 002-2H4zm16-4H8a2 2 0 00-2 2v12a2 2 0 002 2h12a2 2 0 002-2V4a2 2 0 00-2-2m-5 14H8V9h7zm5 0h-3V9h3zm0-9H8V4h12z\"/>"
193
268
  },
269
+ "trend-down": {
270
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"m22 18-7.38-7.335c-.997-.991-1.496-1.487-2.115-1.487s-1.117.496-2.115 1.488l-.24.238c-.997.992-1.497 1.489-2.116 1.489s-1.118-.497-2.115-1.49L2 7\" opacity=\".5\"/><path d=\"M22 12.454V18h-5.582\"/></g>"
271
+ },
272
+ "trend-up": {
273
+ "body": "<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"><path d=\"m22 7-7.38 7.335c-.997.991-1.496 1.487-2.115 1.487s-1.117-.496-2.115-1.488l-.24-.238c-.997-.992-1.497-1.489-2.116-1.489s-1.118.497-2.115 1.49L2 18\" opacity=\".5\"/><path d=\"M22 12.546V7h-5.582\"/></g>"
274
+ },
194
275
  "validity-failed": {
195
276
  "body": "<path fill=\"currentColor\" d=\"M12 1.5A10.436 10.436 0 001.5 12 10.435 10.435 0 0012 22.5 10.435 10.435 0 0022.5 12 10.436 10.436 0 0012 1.5m4.084 15.75L6.75 7.917 7.917 6.75l9.333 9.334z\"/>"
196
277
  },
@@ -202,8 +283,14 @@
202
283
  },
203
284
  "validity-warning": {
204
285
  "body": "<path fill=\"currentColor\" d=\"M22.2 17.633 14.002 3.396a2.322 2.322 0 00-4.004 0L1.8 17.633a2.2 2.2 0 000 2.224A2.28 2.28 0 003.802 21h16.397a2.28 2.28 0 002-1.143 2.2 2.2 0 00.001-2.224M11.25 9.75a.75.75 0 111.5 0v3.75a.75.75 0 11-1.5 0zM12 18a1.124 1.124 0 110-2.249A1.124 1.124 0 0112 18\"/>"
286
+ },
287
+ "view-chart": {
288
+ "body": "<path fill=\"currentColor\" d=\"M17.293 2.293C17 2.586 17 3.057 17 4v13c0 .943 0 1.414.293 1.707S18.057 19 19 19s1.414 0 1.707-.293S21 17.943 21 17V4c0-.943 0-1.414-.293-1.707S19.943 2 19 2s-1.414 0-1.707.293M10 7c0-.943 0-1.414.293-1.707S11.057 5 12 5s1.414 0 1.707.293S14 6.057 14 7v10c0 .943 0 1.414-.293 1.707S12.943 19 12 19s-1.414 0-1.707-.293S10 17.943 10 17zM3.293 9.293C3 9.586 3 10.057 3 11v6c0 .943 0 1.414.293 1.707S4.057 19 5 19s1.414 0 1.707-.293S7 17.943 7 17v-6c0-.943 0-1.414-.293-1.707S5.943 9 5 9s-1.414 0-1.707.293M3 21.25a.75.75 0 000 1.5h18a.75.75 0 000-1.5z\"/>"
289
+ },
290
+ "view-code": {
291
+ "body": "<path fill=\"currentColor\" d=\"M14.18 4.276a.75.75 0 01.531.918l-3.973 14.83a.75.75 0 01-1.45-.389l3.974-14.83a.75.75 0 01.919-.53m2.262 3.053a.75.75 0 011.059-.056l1.737 1.564c.737.662 1.347 1.212 1.767 1.71.44.525.754 1.088.754 1.784 0 .695-.313 1.258-.754 1.782-.42.499-1.03 1.049-1.767 1.711l-1.737 1.564a.75.75 0 01-1.004-1.115l1.697-1.527c.788-.709 1.319-1.19 1.663-1.598.33-.393.402-.622.402-.818s-.072-.424-.402-.817c-.344-.409-.875-.89-1.663-1.598l-1.697-1.527a.75.75 0 01-.056-1.06m-8.94 1.06a.75.75 0 10-1.004-1.115L4.761 8.836c-.737.662-1.347 1.212-1.767 1.71-.44.525-.754 1.088-.754 1.784 0 .695.313 1.258.754 1.782.42.499 1.03 1.049 1.767 1.711l1.737 1.564a.75.75 0 001.004-1.115l-1.697-1.527c-.788-.709-1.319-1.19-1.663-1.598-.33-.393-.402-.622-.402-.818s.072-.424.402-.817c.344-.409.875-.89 1.663-1.598z\"/>"
205
292
  }
206
293
  },
207
294
  "width": 24,
208
295
  "height": 24
209
- }
296
+ }