freddyaboulton HF Staff commited on
Commit
fd0e687
·
verified ·
1 Parent(s): d4bb19c

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. 6.0.0/icons/package.json +27 -0
  2. 6.0.0/icons/src/ArrowDown.svelte +14 -0
  3. 6.0.0/icons/src/ArrowUp.svelte +14 -0
  4. 6.0.0/icons/src/Back.svelte +17 -0
  5. 6.0.0/icons/src/Backward.svelte +16 -0
  6. 6.0.0/icons/src/Brush.svelte +10 -0
  7. 6.0.0/icons/src/BrushSize.svelte +10 -0
  8. 6.0.0/icons/src/Calendar.svelte +51 -0
  9. 6.0.0/icons/src/Camera.svelte +17 -0
  10. 6.0.0/icons/src/Chart.svelte +10 -0
  11. 6.0.0/icons/src/Chat.svelte +17 -0
  12. 6.0.0/icons/src/Check.svelte +16 -0
  13. 6.0.0/icons/src/ChevronDown.svelte +13 -0
  14. 6.0.0/icons/src/Circle.svelte +12 -0
  15. 6.0.0/icons/src/Clear.svelte +24 -0
  16. 6.0.0/icons/src/ClosedCaption.svelte +22 -0
  17. 6.0.0/icons/src/Code.svelte +6 -0
  18. 6.0.0/icons/src/Color.svelte +11 -0
  19. 6.0.0/icons/src/ColorPickerSolid.svelte +10 -0
  20. 6.0.0/icons/src/Community.svelte +11 -0
  21. 6.0.0/icons/src/Copy.svelte +12 -0
  22. 6.0.0/icons/src/Crop.svelte +10 -0
  23. 6.0.0/icons/src/Download.svelte +10 -0
  24. 6.0.0/icons/src/DropdownArrow.svelte +17 -0
  25. 6.0.0/icons/src/DropdownCircularArrow.svelte +21 -0
  26. 6.0.0/icons/src/Edit.svelte +14 -0
  27. 6.0.0/icons/src/Erase.svelte +17 -0
  28. 6.0.0/icons/src/Error.svelte +18 -0
  29. 6.0.0/icons/src/Eyedropper.svelte +10 -0
  30. 6.0.0/icons/src/File.svelte +15 -0
  31. 6.0.0/icons/src/Forward.svelte +16 -0
  32. 6.0.0/icons/src/Image.svelte +16 -0
  33. 6.0.0/icons/src/ImagePaste.svelte +10 -0
  34. 6.0.0/icons/src/ImageResize.svelte +10 -0
  35. 6.0.0/icons/src/Info.svelte +18 -0
  36. 6.0.0/icons/src/JSON.svelte +16 -0
  37. 6.0.0/icons/src/Layers.svelte +19 -0
  38. 6.0.0/icons/src/LineChart.svelte +16 -0
  39. 6.0.0/icons/src/Maximize.svelte +17 -0
  40. 6.0.0/icons/src/Microphone.svelte +20 -0
  41. 6.0.0/icons/src/Minimize.svelte +15 -0
  42. 6.0.0/icons/src/Music.svelte +16 -0
  43. 6.0.0/icons/src/Palette.svelte +17 -0
  44. 6.0.0/icons/src/Pan.svelte +10 -0
  45. 6.0.0/icons/src/Paperclip.svelte +17 -0
  46. 6.0.0/icons/src/Pause.svelte +14 -0
  47. 6.0.0/icons/src/Play.svelte +13 -0
  48. 6.0.0/icons/src/Plot.svelte +21 -0
  49. 6.0.0/icons/src/Plus.svelte +14 -0
  50. 6.0.0/icons/src/Prompt.svelte +14 -0
6.0.0/icons/package.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "@gradio/icons",
3
+ "version": "0.15.0",
4
+ "description": "Gradio UI packages",
5
+ "type": "module",
6
+ "main": "src/index.ts",
7
+ "author": "",
8
+ "license": "ISC",
9
+ "private": false,
10
+ "main_changeset": true,
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/gradio-app/gradio.git",
14
+ "directory": "js/icons"
15
+ },
16
+ "peerDependencies": {
17
+ "svelte": "^5.43.4"
18
+ },
19
+ "exports": {
20
+ ".": {
21
+ "gradio": "./src/index.ts",
22
+ "svelte": "./dist/src/index.js",
23
+ "types": "./dist/src/index.d.ts"
24
+ },
25
+ "./package.json": "./package.json"
26
+ }
27
+ }
6.0.0/icons/src/ArrowDown.svelte ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ width="100%"
3
+ height="100%"
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ viewBox="0 0 24 24"
6
+ fill="none"
7
+ stroke="currentColor"
8
+ stroke-width="2"
9
+ stroke-linecap="round"
10
+ stroke-linejoin="round"
11
+ ><line x1="12" y1="5" x2="12" y2="19"></line><polyline
12
+ points="19 12 12 19 5 12"
13
+ ></polyline></svg
14
+ >
6.0.0/icons/src/ArrowUp.svelte ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ width="100%"
3
+ height="100%"
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ viewBox="0 0 24 24"
6
+ fill="none"
7
+ stroke="currentColor"
8
+ stroke-width="2"
9
+ stroke-linecap="round"
10
+ stroke-linejoin="round"
11
+ ><line x1="12" y1="19" x2="12" y2="5"></line><polyline
12
+ points="5 12 12 5 19 12"
13
+ ></polyline></svg
14
+ >
6.0.0/icons/src/Back.svelte ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="12px"
4
+ height="24px"
5
+ fill="currentColor"
6
+ stroke-width="1.5"
7
+ viewBox="0 0 12 24"
8
+ >
9
+ <path
10
+ d="M9 6L3 12L9 18"
11
+ stroke="currentColor"
12
+ stroke-width="2"
13
+ stroke-linecap="round"
14
+ stroke-linejoin="round"
15
+ fill="none"
16
+ />
17
+ </svg>
6.0.0/icons/src/Backward.svelte ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="24px"
4
+ height="24px"
5
+ fill="currentColor"
6
+ stroke-width="1.5"
7
+ viewBox="0 0 24 24"
8
+ color="currentColor"
9
+ ><path
10
+ stroke="currentColor"
11
+ stroke-width="1.5"
12
+ stroke-linecap="round"
13
+ stroke-linejoin="round"
14
+ d="M21.044 5.704a.6.6 0 0 1 .956.483v11.626a.6.6 0 0 1-.956.483l-7.889-5.813a.6.6 0 0 1 0-.966l7.89-5.813ZM10.044 5.704a.6.6 0 0 1 .956.483v11.626a.6.6 0 0 1-.956.483l-7.888-5.813a.6.6 0 0 1 0-.966l7.888-5.813Z"
15
+ /></svg
16
+ >
6.0.0/icons/src/Brush.svelte ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg width="100%" height="100%" viewBox="0 0 32 32">
2
+ <path
3
+ d="M28.828 3.172a4.094 4.094 0 0 0-5.656 0L4.05 22.292A6.954 6.954 0 0 0 2 27.242V30h2.756a6.952 6.952 0 0 0 4.95-2.05L28.828 8.829a3.999 3.999 0 0 0 0-5.657zM10.91 18.26l2.829 2.829l-2.122 2.121l-2.828-2.828zm-2.619 8.276A4.966 4.966 0 0 1 4.756 28H4v-.759a4.967 4.967 0 0 1 1.464-3.535l1.91-1.91l2.829 2.828zM27.415 7.414l-12.261 12.26l-2.829-2.828l12.262-12.26a2.047 2.047 0 0 1 2.828 0a2 2 0 0 1 0 2.828z"
4
+ fill="currentColor"
5
+ />
6
+ <path
7
+ d="M6.5 15a3.5 3.5 0 0 1-2.475-5.974l3.5-3.5a1.502 1.502 0 0 0 0-2.121a1.537 1.537 0 0 0-2.121 0L3.415 5.394L2 3.98l1.99-1.988a3.585 3.585 0 0 1 4.95 0a3.504 3.504 0 0 1 0 4.949L5.439 10.44a1.502 1.502 0 0 0 0 2.121a1.537 1.537 0 0 0 2.122 0l4.024-4.024L13 9.95l-4.025 4.024A3.475 3.475 0 0 1 6.5 15z"
8
+ fill="currentColor"
9
+ />
10
+ </svg>
6.0.0/icons/src/BrushSize.svelte ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 24 24"
6
+ ><path
7
+ fill="currentColor"
8
+ d="M2.753 2.933a.75.75 0 0 1 .814-.68l3.043.272c2.157.205 4.224.452 5.922.732c1.66.273 3.073.594 3.844.983c.197.1.412.233.578.415c.176.192.352.506.28.9c-.067.356-.304.59-.487.729a3.001 3.001 0 0 1-.695.369c-1.02.404-2.952.79-5.984 1.169c-1.442.18-2.489.357-3.214.522c.205.045.43.089.674.132c.992.174 2.241.323 3.568.437a31.21 31.21 0 0 1 3.016.398c.46.087.893.186 1.261.296c.352.105.707.236.971.412c.13.086.304.225.42.437a.988.988 0 0 1 .063.141A1.75 1.75 0 0 0 14.5 12.25v.158c-.758.154-1.743.302-2.986.444c-2.124.243-3.409.55-4.117.859c-.296.128-.442.236-.508.3c.026.037.073.094.156.17c.15.138.369.29.65.45c.56.316 1.282.61 1.979.838l2.637.814a.75.75 0 1 1-.443 1.433l-2.655-.819c-.754-.247-1.58-.578-2.257-.96a5.082 5.082 0 0 1-.924-.65c-.255-.233-.513-.544-.62-.935c-.12-.441-.016-.88.274-1.244c.261-.328.656-.574 1.113-.773c.92-.4 2.387-.727 4.545-.974c1.366-.156 2.354-.313 3.041-.462a16.007 16.007 0 0 0-.552-.114a29.716 29.716 0 0 0-2.865-.378c-1.352-.116-2.649-.27-3.7-.454c-.524-.092-1-.194-1.395-.307c-.376-.106-.75-.241-1.021-.426a1.186 1.186 0 0 1-.43-.49a.934.934 0 0 1 .059-.873c.13-.213.32-.352.472-.442a3.23 3.23 0 0 1 .559-.251c.807-.287 2.222-.562 4.37-.83c2.695-.338 4.377-.666 5.295-.962c-.638-.21-1.623-.427-2.89-.635c-1.65-.273-3.679-.515-5.816-.718l-3.038-.272a.75.75 0 0 1-.68-.814M17 12.25a.75.75 0 0 0-1.5 0v4.19l-.72-.72a.75.75 0 1 0-1.06 1.06l2 2a.75.75 0 0 0 1.06 0l2-2a.75.75 0 1 0-1.06-1.06l-.72.72z"
9
+ /></svg
10
+ >
6.0.0/icons/src/Calendar.svelte ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="24px"
4
+ height="24px"
5
+ viewBox="0 0 24 24"
6
+ >
7
+ <rect
8
+ x="2"
9
+ y="4"
10
+ width="20"
11
+ height="18"
12
+ stroke="currentColor"
13
+ stroke-width="2"
14
+ stroke-linecap="round"
15
+ stroke-linejoin="round"
16
+ fill="none"
17
+ />
18
+ <line
19
+ x1="2"
20
+ y1="9"
21
+ x2="22"
22
+ y2="9"
23
+ stroke="currentColor"
24
+ stroke-width="2"
25
+ stroke-linecap="round"
26
+ stroke-linejoin="round"
27
+ fill="none"
28
+ />
29
+ <line
30
+ x1="7"
31
+ y1="2"
32
+ x2="7"
33
+ y2="6"
34
+ stroke="currentColor"
35
+ stroke-width="2"
36
+ stroke-linecap="round"
37
+ stroke-linejoin="round"
38
+ fill="none"
39
+ />
40
+ <line
41
+ x1="17"
42
+ y1="2"
43
+ x2="17"
44
+ y2="6"
45
+ stroke="currentColor"
46
+ stroke-width="2"
47
+ stroke-linecap="round"
48
+ stroke-linejoin="round"
49
+ fill="none"
50
+ />
51
+ </svg>
6.0.0/icons/src/Camera.svelte ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 24 24"
6
+ fill="none"
7
+ stroke="currentColor"
8
+ stroke-width="1.5"
9
+ stroke-linecap="round"
10
+ stroke-linejoin="round"
11
+ class="feather feather-camera"
12
+ >
13
+ <path
14
+ d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"
15
+ />
16
+ <circle cx="12" cy="13" r="4" />
17
+ </svg>
6.0.0/icons/src/Chart.svelte ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg viewBox="0 0 32 32">
2
+ <path
3
+ d="M28.828 3.172a4.094 4.094 0 0 0-5.656 0L4.05 22.292A6.954 6.954 0 0 0 2 27.242V30h2.756a6.952 6.952 0 0 0 4.95-2.05L28.828 8.829a3.999 3.999 0 0 0 0-5.657zM10.91 18.26l2.829 2.829l-2.122 2.121l-2.828-2.828zm-2.619 8.276A4.966 4.966 0 0 1 4.756 28H4v-.759a4.967 4.967 0 0 1 1.464-3.535l1.91-1.91l2.829 2.828zM27.415 7.414l-12.261 12.26l-2.829-2.828l12.262-12.26a2.047 2.047 0 0 1 2.828 0a2 2 0 0 1 0 2.828z"
4
+ fill="currentColor"
5
+ />
6
+ <path
7
+ d="M6.5 15a3.5 3.5 0 0 1-2.475-5.974l3.5-3.5a1.502 1.502 0 0 0 0-2.121a1.537 1.537 0 0 0-2.121 0L3.415 5.394L2 3.98l1.99-1.988a3.585 3.585 0 0 1 4.95 0a3.504 3.504 0 0 1 0 4.949L5.439 10.44a1.502 1.502 0 0 0 0 2.121a1.537 1.537 0 0 0 2.122 0l4.024-4.024L13 9.95l-4.025 4.024A3.475 3.475 0 0 1 6.5 15z"
8
+ fill="currentColor"
9
+ />
10
+ </svg>
6.0.0/icons/src/Chat.svelte ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ xmlns:xlink="http://www.w3.org/1999/xlink"
4
+ aria-hidden="true"
5
+ role="img"
6
+ class="iconify iconify--carbon"
7
+ width="100%"
8
+ height="100%"
9
+ preserveAspectRatio="xMidYMid meet"
10
+ viewBox="0 0 32 32"
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M17.74 30L16 29l4-7h6a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h9v2H6a4 4 0 0 1-4-4V8a4 4 0 0 1 4-4h20a4 4 0 0 1 4 4v12a4 4 0 0 1-4 4h-4.84Z"
15
+ />
16
+ <path fill="currentColor" d="M8 10h16v2H8zm0 6h10v2H8z" />
17
+ </svg>
6.0.0/icons/src/Check.svelte ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ width="100%"
3
+ height="100%"
4
+ stroke-width="1.5"
5
+ viewBox="0 0 24 24"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ color="currentColor"
9
+ ><path
10
+ d="M5 13L9 17L19 7"
11
+ stroke="currentColor"
12
+ stroke-width="1.5"
13
+ stroke-linecap="round"
14
+ stroke-linejoin="round"
15
+ ></path></svg
16
+ >
6.0.0/icons/src/ChevronDown.svelte ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 16 16"
6
+ fill="none"
7
+ stroke="currentColor"
8
+ stroke-width="2"
9
+ stroke-linecap="round"
10
+ stroke-linejoin="round"
11
+ >
12
+ <path d="M4 6L8 10L12 6" />
13
+ </svg>
6.0.0/icons/src/Circle.svelte ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 24 24"
6
+ stroke-width="1.5"
7
+ stroke-linecap="round"
8
+ stroke-linejoin="round"
9
+ class="feather feather-circle"
10
+ >
11
+ <circle cx="12" cy="12" r="10" />
12
+ </svg>
6.0.0/icons/src/Clear.svelte ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ width="100%"
3
+ height="100%"
4
+ viewBox="0 0 24 24"
5
+ version="1.1"
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ xmlns:xlink="http://www.w3.org/1999/xlink"
8
+ xml:space="preserve"
9
+ stroke="currentColor"
10
+ style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;"
11
+ >
12
+ <g
13
+ transform="matrix(1.14096,-0.140958,-0.140958,1.14096,-0.0559523,0.0559523)"
14
+ >
15
+ <path
16
+ d="M18,6L6.087,17.913"
17
+ style="fill:none;fill-rule:nonzero;stroke-width:2px;"
18
+ />
19
+ </g>
20
+ <path
21
+ d="M4.364,4.364L19.636,19.636"
22
+ style="fill:none;fill-rule:nonzero;stroke-width:2px;"
23
+ />
24
+ </svg>
6.0.0/icons/src/ClosedCaption.svelte ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 24 24"
6
+ fill="none"
7
+ stroke="currentColor"
8
+ stroke-width="1"
9
+ stroke-linecap="round"
10
+ stroke-linejoin="round"
11
+ class="feather feather-closed-caption"
12
+ ><rect x="2" y="6" width="20" height="12" rx="2" ry="2" /><text
13
+ x="12"
14
+ y="15"
15
+ font-family="sans-serif"
16
+ font-size="8"
17
+ font-weight="bold"
18
+ fill="currentColor"
19
+ stroke="none"
20
+ text-anchor="middle">CC</text
21
+ ></svg
22
+ >
6.0.0/icons/src/Code.svelte ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ <svg width="100%" height="100%" viewBox="0 0 32 32"
2
+ ><path
3
+ fill="currentColor"
4
+ d="m31 16l-7 7l-1.41-1.41L28.17 16l-5.58-5.59L24 9l7 7zM1 16l7-7l1.41 1.41L3.83 16l5.58 5.59L8 23l-7-7zm11.42 9.484L17.64 6l1.932.517L14.352 26z"
5
+ />
6
+ </svg>
6.0.0/icons/src/Color.svelte ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg width="100%" height="100%" viewBox="0 0 32 32">
2
+ <circle cx="10" cy="12" r="2" fill="currentColor" />
3
+ <circle cx="16" cy="9" r="2" fill="currentColor" />
4
+ <circle cx="22" cy="12" r="2" fill="currentColor" />
5
+ <circle cx="23" cy="18" r="2" fill="currentColor" />
6
+ <circle cx="19" cy="23" r="2" fill="currentColor" />
7
+ <path
8
+ fill="currentColor"
9
+ d="M16.54 2A14 14 0 0 0 2 16a4.82 4.82 0 0 0 6.09 4.65l1.12-.31a3 3 0 0 1 3.79 2.9V27a3 3 0 0 0 3 3a14 14 0 0 0 14-14.54A14.05 14.05 0 0 0 16.54 2Zm8.11 22.31A11.93 11.93 0 0 1 16 28a1 1 0 0 1-1-1v-3.76a5 5 0 0 0-5-5a5.07 5.07 0 0 0-1.33.18l-1.12.31A2.82 2.82 0 0 1 4 16A12 12 0 0 1 16.47 4A12.18 12.18 0 0 1 28 15.53a11.89 11.89 0 0 1-3.35 8.79Z"
10
+ />
11
+ </svg>
6.0.0/icons/src/ColorPickerSolid.svelte ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 24 24"
6
+ ><path
7
+ fill="currentColor"
8
+ d="M12 22q-2.05 0-3.875-.788t-3.187-2.15t-2.15-3.187T2 12q0-2.075.813-3.9t2.2-3.175T8.25 2.788T12.2 2q2 0 3.775.688t3.113 1.9t2.125 2.875T22 11.05q0 2.875-1.75 4.413T16 17h-1.85q-.225 0-.312.125t-.088.275q0 .3.375.863t.375 1.287q0 1.25-.687 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"
9
+ /></svg
10
+ >
6.0.0/icons/src/Community.svelte ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ id="icon"
3
+ xmlns="http://www.w3.org/2000/svg"
4
+ viewBox="0 0 32 32"
5
+ width="100%"
6
+ height="100%"
7
+ ><path
8
+ d="M23,20a5,5,0,0,0-3.89,1.89L11.8,17.32a4.46,4.46,0,0,0,0-2.64l7.31-4.57A5,5,0,1,0,18,7a4.79,4.79,0,0,0,.2,1.32l-7.31,4.57a5,5,0,1,0,0,6.22l7.31,4.57A4.79,4.79,0,0,0,18,25a5,5,0,1,0,5-5ZM23,4a3,3,0,1,1-3,3A3,3,0,0,1,23,4ZM7,19a3,3,0,1,1,3-3A3,3,0,0,1,7,19Zm16,9a3,3,0,1,1,3-3A3,3,0,0,1,23,28Z"
9
+ fill="currentColor"
10
+ /></svg
11
+ >
6.0.0/icons/src/Copy.svelte ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ viewBox="0 0 33 33"
4
+ color="currentColor"
5
+ aria-hidden="true"
6
+ width="100%"
7
+ height="100%"
8
+ ><path
9
+ fill="currentColor"
10
+ d="M28 10v18H10V10h18m0-2H10a2 2 0 0 0-2 2v18a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2Z"
11
+ /><path fill="currentColor" d="M4 18H2V4a2 2 0 0 1 2-2h14v2H4Z" /></svg
12
+ >
6.0.0/icons/src/Crop.svelte ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 256 256"
6
+ ><path
7
+ fill="currentColor"
8
+ d="M240 192a8 8 0 0 1-8 8h-32v32a8 8 0 0 1-16 0v-32H64a8 8 0 0 1-8-8V72H24a8 8 0 0 1 0-16h32V24a8 8 0 0 1 16 0v160h160a8 8 0 0 1 8 8M96 72h88v88a8 8 0 0 0 16 0V64a8 8 0 0 0-8-8H96a8 8 0 0 0 0 16"
9
+ /></svg
10
+ >
6.0.0/icons/src/Download.svelte ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 32 32"
6
+ ><path
7
+ fill="currentColor"
8
+ d="M26 24v4H6v-4H4v4a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2v-4zm0-10l-1.41-1.41L17 20.17V2h-2v18.17l-7.59-7.58L6 14l10 10l10-10z"
9
+ /></svg
10
+ >
6.0.0/icons/src/DropdownArrow.svelte ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ class="dropdown-arrow"
3
+ xmlns="http://www.w3.org/2000/svg"
4
+ width="100%"
5
+ height="100%"
6
+ viewBox="0 0 18 18"
7
+ >
8
+ <path d="M5 8l4 4 4-4z" />
9
+ </svg>
10
+
11
+ <style>
12
+ .dropdown-arrow {
13
+ fill: currentColor;
14
+ /* margin-right: var(--size-2); */
15
+ /* width: var(--size-5); */
16
+ }
17
+ </style>
6.0.0/icons/src/DropdownCircularArrow.svelte ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ class="dropdown-arrow"
3
+ xmlns="http://www.w3.org/2000/svg"
4
+ width="100%"
5
+ height="100%"
6
+ viewBox="0 0 18 18"
7
+ >
8
+ <circle cx="9" cy="9" r="8" class="circle" />
9
+ <path d="M5 8l4 4 4-4z" />
10
+ </svg>
11
+
12
+ <style>
13
+ .dropdown-arrow {
14
+ fill: currentColor;
15
+ }
16
+
17
+ .circle {
18
+ fill: currentColor;
19
+ opacity: 0.1;
20
+ }
21
+ </style>
6.0.0/icons/src/Edit.svelte ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 24 24"
6
+ fill="none"
7
+ stroke="currentColor"
8
+ stroke-width="1.5"
9
+ stroke-linecap="round"
10
+ stroke-linejoin="round"
11
+ class="feather feather-edit-2"
12
+ >
13
+ <path d="M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z" />
14
+ </svg>
6.0.0/icons/src/Erase.svelte ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 24 24"
6
+ ><g fill="none"
7
+ ><path
8
+ fill="currentColor"
9
+ d="m5.505 11.41l.53.53l-.53-.53ZM3 14.952h-.75H3ZM9.048 21v.75V21ZM11.41 5.505l-.53-.53l.53.53Zm1.831 12.34a.75.75 0 0 0 1.06-1.061l-1.06 1.06ZM7.216 9.697a.75.75 0 1 0-1.06 1.061l1.06-1.06Zm10.749 2.362l-5.905 5.905l1.06 1.06l5.905-5.904l-1.06-1.06Zm-11.93-.12l5.905-5.905l-1.06-1.06l-5.905 5.904l1.06 1.06Zm0 6.025c-.85-.85-1.433-1.436-1.812-1.933c-.367-.481-.473-.79-.473-1.08h-1.5c0 .749.312 1.375.78 1.99c.455.596 1.125 1.263 1.945 2.083l1.06-1.06Zm-1.06-7.086c-.82.82-1.49 1.488-1.945 2.084c-.468.614-.78 1.24-.78 1.99h1.5c0-.29.106-.6.473-1.08c.38-.498.962-1.083 1.812-1.933l-1.06-1.06Zm7.085 7.086c-.85.85-1.435 1.433-1.933 1.813c-.48.366-.79.472-1.08.472v1.5c.75 0 1.376-.312 1.99-.78c.596-.455 1.264-1.125 2.084-1.945l-1.06-1.06Zm-7.085 1.06c.82.82 1.487 1.49 2.084 1.945c.614.468 1.24.78 1.989.78v-1.5c-.29 0-.599-.106-1.08-.473c-.497-.38-1.083-.962-1.933-1.812l-1.06 1.06Zm12.99-12.99c.85.85 1.433 1.436 1.813 1.933c.366.481.472.79.472 1.08h1.5c0-.749-.312-1.375-.78-1.99c-.455-.596-1.125-1.263-1.945-2.083l-1.06 1.06Zm1.06 7.086c.82-.82 1.49-1.488 1.945-2.084c.468-.614.78-1.24.78-1.99h-1.5c0 .29-.106.6-.473 1.08c-.38.498-.962 1.083-1.812 1.933l1.06 1.06Zm0-8.146c-.82-.82-1.487-1.49-2.084-1.945c-.614-.468-1.24-.78-1.989-.78v1.5c.29 0 .599.106 1.08.473c.497.38 1.083.962 1.933 1.812l1.06-1.06Zm-7.085 1.06c.85-.85 1.435-1.433 1.933-1.812c.48-.367.79-.473 1.08-.473v-1.5c-.75 0-1.376.312-1.99.78c-.596.455-1.264 1.125-2.084 1.945l1.06 1.06Zm2.362 10.749L7.216 9.698l-1.06 1.061l7.085 7.085l1.06-1.06Z"
10
+ /><path
11
+ stroke="currentColor"
12
+ stroke-linecap="round"
13
+ stroke-width="1.5"
14
+ d="M9 21h12"
15
+ /></g
16
+ ></svg
17
+ >
6.0.0/icons/src/Error.svelte ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ fill="none"
3
+ stroke="currentColor"
4
+ viewBox="0 0 24 24"
5
+ width="100%"
6
+ height="100%"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ aria-hidden="true"
9
+ stroke-width="2"
10
+ stroke-linecap="round"
11
+ stroke-linejoin="round"
12
+ >
13
+ <path
14
+ stroke-linecap="round"
15
+ stroke-linejoin="round"
16
+ d="M12 9v3.75m9-.75a9 9 0 11-18 0 9 9 0 0118 0zm-9 3.75h.008v.008H12v-.008z"
17
+ />
18
+ </svg>
6.0.0/icons/src/Eyedropper.svelte ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 24 24"
6
+ ><path
7
+ fill="currentColor"
8
+ d="M21.03 2.97a3.578 3.578 0 0 0-5.06 0L14 4.94l-.013-.013a1.75 1.75 0 0 0-2.475 0l-.585.586a1.75 1.75 0 0 0 0 2.475l.012.012l-6.78 6.78a2.25 2.25 0 0 0-.659 1.592v.687l-1.28 2.347c-.836 1.533.841 3.21 2.374 2.375l2.347-1.28h.688a2.25 2.25 0 0 0 1.59-.66L16 13.061l.012.012a1.75 1.75 0 0 0 2.475 0l.586-.585a1.75 1.75 0 0 0 0-2.475L19.061 10l1.97-1.97a3.578 3.578 0 0 0 0-5.06ZM12 9.061l2.94 2.94l-6.78 6.78a.75.75 0 0 1-.531.22H6.75a.75.75 0 0 0-.359.09l-2.515 1.373a.234.234 0 0 1-.159.032a.264.264 0 0 1-.138-.075a.264.264 0 0 1-.075-.138a.234.234 0 0 1 .033-.158l1.372-2.515A.75.75 0 0 0 5 17.25v-.878a.75.75 0 0 1 .22-.53L12 9.06Z"
9
+ /></svg
10
+ >
6.0.0/icons/src/File.svelte ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 24 24"
6
+ fill="none"
7
+ stroke="currentColor"
8
+ stroke-width="1.5"
9
+ stroke-linecap="round"
10
+ stroke-linejoin="round"
11
+ class="feather feather-file"
12
+ >
13
+ <path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z" />
14
+ <polyline points="13 2 13 9 20 9" />
15
+ </svg>
6.0.0/icons/src/Forward.svelte ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="24px"
4
+ height="24px"
5
+ fill="currentColor"
6
+ stroke-width="1.5"
7
+ viewBox="0 0 24 24"
8
+ color="currentColor"
9
+ ><path
10
+ stroke="currentColor"
11
+ stroke-width="1.5"
12
+ stroke-linecap="round"
13
+ stroke-linejoin="round"
14
+ d="M2.956 5.704A.6.6 0 0 0 2 6.187v11.626a.6.6 0 0 0 .956.483l7.889-5.813a.6.6 0 0 0 0-.966l-7.89-5.813ZM13.956 5.704a.6.6 0 0 0-.956.483v11.626a.6.6 0 0 0 .956.483l7.889-5.813a.6.6 0 0 0 0-.966l-7.89-5.813Z"
15
+ /></svg
16
+ >
6.0.0/icons/src/Image.svelte ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 24 24"
6
+ fill="none"
7
+ stroke="currentColor"
8
+ stroke-width="1.5"
9
+ stroke-linecap="round"
10
+ stroke-linejoin="round"
11
+ class="feather feather-image"
12
+ >
13
+ <rect x="3" y="3" width="18" height="18" rx="2" ry="2" />
14
+ <circle cx="8.5" cy="8.5" r="1.5" />
15
+ <polyline points="21 15 16 10 5 21" />
16
+ </svg>
6.0.0/icons/src/ImagePaste.svelte ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 256 256"
6
+ ><path
7
+ fill="currentColor"
8
+ d="M200 32h-36.26a47.92 47.92 0 0 0-71.48 0H56a16 16 0 0 0-16 16v168a16 16 0 0 0 16 16h144a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16m-72 0a32 32 0 0 1 32 32H96a32 32 0 0 1 32-32m72 184H56V48h26.75A47.9 47.9 0 0 0 80 64v8a8 8 0 0 0 8 8h80a8 8 0 0 0 8-8v-8a47.9 47.9 0 0 0-2.75-16H200Z"
9
+ /></svg
10
+ >
6.0.0/icons/src/ImageResize.svelte ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 24 24"
6
+ ><path
7
+ fill="currentColor"
8
+ d="M5.85 18h8q.325 0 .463-.275t-.063-.525l-2.4-3.175q-.15-.2-.4-.2t-.4.2l-1.8 2.425q-.15.2-.4.2t-.4-.2l-.8-1.075q-.15-.2-.4-.2t-.4.2L5.45 17.2q-.2.25-.063.525T5.85 18M5 21q-.825 0-1.413-.587T3 19V9q0-.825.588-1.412T5 7h10q.825 0 1.413.588T17 9v10q0 .825-.587 1.413T15 21zM4 5q-.425 0-.713-.288T3 4t.288-.712T4 3t.713.288T5 4t-.288.713T4 5m4 0q-.425 0-.712-.288T7 4t.288-.712T8 3t.713.288T9 4t-.288.713T8 5m4 0q-.425 0-.712-.288T11 4t.288-.712T12 3t.713.288T13 4t-.288.713T12 5m4 0q-.425 0-.712-.288T15 4t.288-.712T16 3t.713.288T17 4t-.288.713T16 5m4 0q-.425 0-.712-.288T19 4t.288-.712T20 3t.713.288T21 4t-.288.713T20 5m0 4q-.425 0-.712-.288T19 8t.288-.712T20 7t.713.288T21 8t-.288.713T20 9m0 4q-.425 0-.712-.288T19 12t.288-.712T20 11t.713.288T21 12t-.288.713T20 13m0 4q-.425 0-.712-.288T19 16t.288-.712T20 15t.713.288T21 16t-.288.713T20 17m0 4q-.425 0-.712-.288T19 20t.288-.712T20 19t.713.288T21 20t-.288.713T20 21"
9
+ /></svg
10
+ >
6.0.0/icons/src/Info.svelte ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ fill="none"
3
+ stroke="currentColor"
4
+ viewBox="0 0 24 24"
5
+ width="100%"
6
+ height="100%"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ aria-hidden="true"
9
+ stroke-width="2"
10
+ stroke-linecap="round"
11
+ stroke-linejoin="round"
12
+ >
13
+ <path
14
+ stroke-linecap="round"
15
+ stroke-linejoin="round"
16
+ d="M11.25 11.25l.041-.02a.75.75 0 011.063.852l-.708 2.836a.75.75 0 001.063.853l.041-.021M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-9-3.75h.008v.008H12V8.25z"
17
+ />
18
+ </svg>
6.0.0/icons/src/JSON.svelte ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ xmlns:xlink="http://www.w3.org/1999/xlink"
4
+ aria-hidden="true"
5
+ role="img"
6
+ class="iconify iconify--mdi"
7
+ width="100%"
8
+ height="100%"
9
+ preserveAspectRatio="xMidYMid meet"
10
+ viewBox="0 0 24 24"
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M5 3h2v2H5v5a2 2 0 0 1-2 2a2 2 0 0 1 2 2v5h2v2H5c-1.07-.27-2-.9-2-2v-4a2 2 0 0 0-2-2H0v-2h1a2 2 0 0 0 2-2V5a2 2 0 0 1 2-2m14 0a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h1v2h-1a2 2 0 0 0-2 2v4a2 2 0 0 1-2 2h-2v-2h2v-5a2 2 0 0 1 2-2a2 2 0 0 1-2-2V5h-2V3h2m-7 12a1 1 0 0 1 1 1a1 1 0 0 1-1 1a1 1 0 0 1-1-1a1 1 0 0 1 1-1m-4 0a1 1 0 0 1 1 1a1 1 0 0 1-1 1a1 1 0 0 1-1-1a1 1 0 0 1 1-1m8 0a1 1 0 0 1 1 1a1 1 0 0 1-1 1a1 1 0 0 1-1-1a1 1 0 0 1 1-1Z"
15
+ />
16
+ </svg>
6.0.0/icons/src/Layers.svelte ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ width="100%"
3
+ height="100%"
4
+ viewBox="0 0 17 17"
5
+ fill="none"
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ >
8
+ <path
9
+ d="M1.35327 10.9495L6.77663 15.158C7.12221 15.4229 7.50051 15.5553 7.91154 15.5553C8.32258 15.5553 8.70126 15.4229 9.0476 15.158L14.471 10.9495"
10
+ stroke="currentColor"
11
+ stroke-width="1.5"
12
+ stroke-linecap="round"
13
+ />
14
+ <path
15
+ d="M7.23461 11.4324C7.23406 11.432 7.2335 11.4316 7.23295 11.4312L1.81496 7.2268C1.81471 7.22661 1.81446 7.22641 1.8142 7.22621C1.52269 6.99826 1.39429 6.73321 1.39429 6.37014C1.39429 6.00782 1.52236 5.74301 1.81325 5.51507C1.8136 5.5148 1.81394 5.51453 1.81428 5.51426L7.2331 1.30812C7.45645 1.13785 7.67632 1.06653 7.91159 1.06653C8.14692 1.06653 8.36622 1.13787 8.58861 1.30787C8.58915 1.30828 8.58969 1.30869 8.59023 1.30911L14.0082 5.51462C14.0085 5.51485 14.0088 5.51507 14.0091 5.51529C14.3008 5.74345 14.4289 6.00823 14.4289 6.37014C14.4289 6.73356 14.3006 6.99862 14.01 7.22634C14.0096 7.22662 14.0093 7.22689 14.0089 7.22717L8.59007 11.4322C8.36672 11.6024 8.14686 11.6738 7.91159 11.6738C7.67628 11.6738 7.45699 11.6024 7.23461 11.4324Z"
16
+ stroke="currentColor"
17
+ stroke-width="1.5"
18
+ />
19
+ </svg>
6.0.0/icons/src/LineChart.svelte ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ xmlns:xlink="http://www.w3.org/1999/xlink"
4
+ aria-hidden="true"
5
+ role="img"
6
+ class="iconify iconify--carbon"
7
+ width="100%"
8
+ height="100%"
9
+ preserveAspectRatio="xMidYMid meet"
10
+ viewBox="0 0 32 32"
11
+ >
12
+ <path
13
+ fill="currentColor"
14
+ d="M4 2H2v26a2 2 0 0 0 2 2h26v-2H4v-3h22v-8H4v-4h14V5H4Zm20 17v4H4v-4ZM16 7v4H4V7Z"
15
+ />
16
+ </svg>
6.0.0/icons/src/Maximize.svelte ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ viewBox="0 0 24 24"
4
+ fill="none"
5
+ stroke="currentColor"
6
+ stroke-width="2"
7
+ stroke-linecap="round"
8
+ stroke-linejoin="round"
9
+ class="feather feather-maximize"
10
+ width="100%"
11
+ height="100%"
12
+ >
13
+ <path
14
+ d="M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3"
15
+ >
16
+ </path>
17
+ </svg>
6.0.0/icons/src/Microphone.svelte ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 24 24"
6
+ fill="none"
7
+ stroke="currentColor"
8
+ stroke-width="2"
9
+ stroke-linecap="round"
10
+ stroke-linejoin="round"
11
+ class="feather feather-mic"
12
+ ><path d="M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z" /><path
13
+ d="M19 10v2a7 7 0 0 1-14 0v-2"
14
+ /><line x1="12" y1="19" x2="12" y2="23" /><line
15
+ x1="8"
16
+ y1="23"
17
+ x2="16"
18
+ y2="23"
19
+ /></svg
20
+ >
6.0.0/icons/src/Minimize.svelte ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ viewBox="0 0 24 24"
4
+ fill="none"
5
+ stroke="currentColor"
6
+ stroke-width="2"
7
+ stroke-linecap="round"
8
+ stroke-linejoin="round"
9
+ class="feather feather-minimize"
10
+ width="100%"
11
+ height="100%"
12
+ ><path
13
+ d="M8 3v3a2 2 0 0 1-2 2H3m18 0h-3a2 2 0 0 1-2-2V3m0 18v-3a2 2 0 0 1 2-2h3M3 16h3a2 2 0 0 1 2 2v3"
14
+ ></path></svg
15
+ >
6.0.0/icons/src/Music.svelte ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 24 24"
6
+ fill="none"
7
+ stroke="currentColor"
8
+ stroke-width="1.5"
9
+ stroke-linecap="round"
10
+ stroke-linejoin="round"
11
+ class="feather feather-music"
12
+ >
13
+ <path d="M9 18V5l12-2v13" />
14
+ <circle cx="6" cy="18" r="3" />
15
+ <circle cx="18" cy="16" r="3" />
16
+ </svg>
6.0.0/icons/src/Palette.svelte ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 24 24"
6
+ ><g fill="none" stroke="currentColor" stroke-width="1.5"
7
+ ><path
8
+ d="M2 12.026c0 5.146 3.867 9.387 8.847 9.96c.735.085 1.447-.228 1.97-.753a1.68 1.68 0 0 0 0-2.372c-.523-.525-.95-1.307-.555-1.934c1.576-2.508 9.738 3.251 9.738-4.9C22 6.488 17.523 2 12 2S2 6.489 2 12.026Z"
9
+ /><circle cx="17.5" cy="11.5" r=".75" /><circle
10
+ cx="6.5"
11
+ cy="11.5"
12
+ r=".75"
13
+ /><path
14
+ d="M10.335 7a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0Zm4.915 0a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0Z"
15
+ /></g
16
+ ></svg
17
+ >
6.0.0/icons/src/Pan.svelte ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 24 24"
6
+ ><path
7
+ fill="currentColor"
8
+ d="M10.05 23q-.75 0-1.4-.337T7.575 21.7l-5.9-8.65q-.2-.3-.175-.65t.3-.6q.475-.475 1.125-.55t1.175.3L7 13.575V4q0-.425.288-.712T8 3t.713.288T9 4v11.5q0 .6-.537.888t-1.038-.063l-2.125-1.5l3.925 5.725q.125.2.35.325t.475.125H17q.825 0 1.413-.587T19 19V5q0-.425.288-.712T20 4t.713.288T21 5v14q0 1.65-1.175 2.825T17 23zM12 1q.425 0 .713.288T13 2v9q0 .425-.288.713T12 12t-.712-.288T11 11V2q0-.425.288-.712T12 1m4 1q.425 0 .713.288T17 3v8q0 .425-.288.713T16 12t-.712-.288T15 11V3q0-.425.288-.712T16 2m-3.85 14.5"
9
+ /></svg
10
+ >
6.0.0/icons/src/Paperclip.svelte ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ fill="currentColor"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 1920 1920"
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ ><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g
8
+ id="SVGRepo_tracerCarrier"
9
+ stroke-linecap="round"
10
+ stroke-linejoin="round"
11
+ ></g><g id="SVGRepo_iconCarrier">
12
+ <path
13
+ d="M1752.768 221.109C1532.646.986 1174.283.986 954.161 221.109l-838.588 838.588c-154.052 154.165-154.052 404.894 0 558.946 149.534 149.421 409.976 149.308 559.059 0l758.738-758.626c87.982-88.094 87.982-231.417 0-319.51-88.32-88.208-231.642-87.982-319.51 0l-638.796 638.908 79.85 79.849 638.795-638.908c43.934-43.821 115.539-43.934 159.812 0 43.934 44.047 43.934 115.877 0 159.812l-758.739 758.625c-110.23 110.118-289.355 110.005-399.36 0-110.118-110.117-110.005-289.242 0-399.247l838.588-838.588c175.963-175.962 462.382-176.188 638.909 0 176.075 176.188 176.075 462.833 0 638.908l-798.607 798.72 79.849 79.85 798.607-798.72c220.01-220.123 220.01-578.485 0-798.607"
14
+ fill-rule="evenodd"
15
+ ></path>
16
+ </g></svg
17
+ >
6.0.0/icons/src/Pause.svelte ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 24 24"
6
+ fill="currentColor"
7
+ stroke="currentColor"
8
+ stroke-width="1.5"
9
+ stroke-linecap="round"
10
+ stroke-linejoin="round"
11
+ >
12
+ <rect x="6" y="4" width="4" height="16" />
13
+ <rect x="14" y="4" width="4" height="16" />
14
+ </svg>
6.0.0/icons/src/Play.svelte ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="100%"
4
+ height="100%"
5
+ viewBox="0 0 24 24"
6
+ fill="currentColor"
7
+ stroke="currentColor"
8
+ stroke-width="1.5"
9
+ stroke-linecap="round"
10
+ stroke-linejoin="round"
11
+ >
12
+ <polygon points="5 3 19 12 5 21 5 3" />
13
+ </svg>
6.0.0/icons/src/Plot.svelte ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ xmlns:xlink="http://www.w3.org/1999/xlink"
4
+ aria-hidden="true"
5
+ role="img"
6
+ class="iconify iconify--carbon"
7
+ width="100%"
8
+ height="100%"
9
+ preserveAspectRatio="xMidYMid meet"
10
+ viewBox="0 0 32 32"
11
+ >
12
+ <circle cx="20" cy="4" r="2" fill="currentColor" />
13
+ <circle cx="8" cy="16" r="2" fill="currentColor" />
14
+ <circle cx="28" cy="12" r="2" fill="currentColor" />
15
+ <circle cx="11" cy="7" r="2" fill="currentColor" />
16
+ <circle cx="16" cy="24" r="2" fill="currentColor" />
17
+ <path
18
+ fill="currentColor"
19
+ d="M30 3.413L28.586 2L4 26.585V2H2v26a2 2 0 0 0 2 2h26v-2H5.413Z"
20
+ />
21
+ </svg>
6.0.0/icons/src/Plus.svelte ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg
2
+ width="100%"
3
+ height="100%"
4
+ viewBox="0 0 24 24"
5
+ fill="none"
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ ><path
8
+ d="M6 12H12M18 12H12M12 12V6M12 12V18"
9
+ stroke="currentColor"
10
+ stroke-width="1.5"
11
+ stroke-linecap="round"
12
+ stroke-linejoin="round"
13
+ ></path></svg
14
+ >
6.0.0/icons/src/Prompt.svelte ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <script lang="ts">
2
+ export let icon_size = 16;
3
+ </script>
4
+
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ width={icon_size}
8
+ height={icon_size}
9
+ viewBox="0 0 32 32"
10
+ ><path
11
+ fill="currentColor"
12
+ d="M17.74 30L16 29l4-7h6a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h9v2H6a4 4 0 0 1-4-4V8a4 4 0 0 1 4-4h20a4 4 0 0 1 4 4v12a4 4 0 0 1-4 4h-4.84Z"
13
+ /><path fill="currentColor" d="M8 10h16v2H8zm0 6h10v2H8z" /></svg
14
+ >