iconograph-ui 1.7.19 → 2.0.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/example/src/routes/{+page.svelte → basic/+page.svelte} +3 -1
- package/example/src/routes/{user → basic/user}/+page.svelte +12 -2
- package/example/src/routes/parabole/+layout.svelte +111 -0
- package/example/src/routes/parabole/+page.svelte +112 -0
- package/example/static/css/testapp.css +8 -3
- package/example/static/icons/discord-logo-icon.svg +22 -0
- package/example/static/icons/icon-add-w.svg +38 -0
- package/example/static/icons/icon-archive-black.svg +1 -0
- package/example/static/icons/icon-archive-grey.svg +38 -0
- package/example/static/icons/icon-beneficiaire-small.svg +50 -0
- package/example/static/icons/icon-beneficiaire.svg +48 -0
- package/example/static/icons/icon-cardlist-black.svg +56 -0
- package/example/static/icons/icon-cardlist-grey.svg +56 -0
- package/example/static/icons/icon-client.png +0 -0
- package/example/static/icons/icon-dashboard.svg +40 -0
- package/example/static/icons/icon-doc.svg +39 -0
- package/example/static/icons/icon-done.svg +1 -0
- package/example/static/icons/icon-edit-g.svg +61 -0
- package/example/static/icons/icon-edit-w.svg +1 -0
- package/example/static/icons/icon-info-100.svg +54 -0
- package/example/static/icons/icon-info-w.svg +39 -0
- package/example/static/icons/icon-kanban-black.svg +65 -0
- package/example/static/icons/icon-kanban-grey.svg +65 -0
- package/example/static/icons/icon-link.svg +47 -0
- package/example/static/icons/icon-list-black.svg +76 -0
- package/example/static/icons/icon-list-grey.svg +76 -0
- package/example/static/icons/icon-member.png +0 -0
- package/example/static/icons/icon-next-w.svg +42 -0
- package/example/static/icons/icon-note.svg +44 -0
- package/example/static/icons/icon-order.svg +61 -0
- package/example/static/icons/icon-out.svg +38 -0
- package/example/static/icons/icon-project.svg +39 -0
- package/example/static/icons/icon-red-star.svg +53 -0
- package/example/static/icons/icon-save-b.png +0 -0
- package/example/static/icons/icon-save-w.png +0 -0
- package/example/static/icons/icon-task.svg +40 -0
- package/example/static/icons/icon-timeline-black.svg +68 -0
- package/example/static/icons/icon-timeline-grey.svg +68 -0
- package/example/static/icons/icon-user-add.svg +41 -0
- package/example/static/icons/icon-user.png +0 -0
- package/example/static/icons/icon-user.svg +39 -0
- package/example/static/icons/loader-ring-w.svg +1 -0
- package/lib/{display → components/display}/Portal.svelte +3 -3
- package/lib/{form → components/form}/ActionButton.svelte +53 -18
- package/lib/{layout → components/layout}/Card.svelte +2 -1
- package/lib/{navigation → components/navigation}/Button.svelte +10 -2
- package/lib/{navigation → components/navigation}/MainMenu.svelte +26 -33
- package/lib/{navigation → components/navigation}/MenuItem.svelte +8 -7
- package/lib/{navigation → components/navigation}/NavBar.svelte +8 -7
- package/lib/network/APIErrors.js +51 -0
- package/lib/network/action.js +21 -0
- package/lib/network/clientFetch.js +50 -0
- package/lib/network/index.js +1 -0
- package/lib/network/requestApi.js +127 -0
- package/lib/network/requestn8n.js +52 -0
- package/lib/utils/flattenType.js +8 -0
- package/lib/utils/transformers/entityTransformer.js +28 -0
- package/lib/utils/transformers/index.js +1 -0
- package/lib/utils/transformers/projectTransformer.js +17 -0
- package/lib/utils/transformers/userTransformer.js +36 -0
- package/package.json +11 -3
- /package/example/src/routes/{+layout.svelte → basic/+layout.svelte} +0 -0
- /package/example/src/routes/{example → basic/example}/+server.js +0 -0
- /package/example/src/routes/{user → basic/user}/+server.js +0 -0
- /package/lib/{display → components/display}/DateStr.svelte +0 -0
- /package/lib/{display → components/display}/Field.svelte +0 -0
- /package/lib/{display → components/display}/Link.svelte +0 -0
- /package/lib/{form → components/form}/Checkbox.svelte +0 -0
- /package/lib/{form → components/form}/FlexForm.svelte +0 -0
- /package/lib/{form → components/form}/Form.svelte +0 -0
- /package/lib/{form → components/form}/FormButton.svelte +0 -0
- /package/lib/{form → components/form}/Input.svelte +0 -0
- /package/lib/{form → components/form}/MultiSelect.svelte +0 -0
- /package/lib/{form → components/form}/SegmentedSwitchInput.svelte +0 -0
- /package/lib/{form → components/form}/SexeChoiceInput.svelte +0 -0
- /package/lib/{inputs → components/form/inputs}/Editor.svelte +0 -0
- /package/lib/{inputs → components/form/inputs}/PasswordInput.svelte +0 -0
- /package/lib/{inputs → components/form/inputs}/SearchSelect.svelte +0 -0
- /package/lib/{layout → components/layout}/BodySection.svelte +0 -0
- /package/lib/{layout → components/layout}/HeadSection.svelte +0 -0
- /package/lib/{layout → components/layout}/Modal.svelte +0 -0
- /package/lib/{layout → components/layout}/SectionContent.svelte +0 -0
- /package/lib/{notification → components/notification}/Notification.svelte +0 -0
- /package/lib/{notification → components/notification}/NotificationWrapper.svelte +0 -0
- /package/lib/{table → components/table}/CellLink.svelte +0 -0
- /package/lib/{table → components/table}/Table.svelte +0 -0
- /package/lib/{table → components/table}/TableColumnFilter.svelte +0 -0
- /package/lib/{table → components/table}/TableFilter.svelte +0 -0
- /package/lib/{table → components/table}/TablePagination.svelte +0 -0
- /package/lib/{table → components/table}/TableRow.svelte +0 -0
- /package/lib/{user → components/user}/SelectUserInput.svelte +0 -0
- /package/lib/{user → components/user}/UserPicture.svelte +0 -0
- /package/lib/utils/{clickOutside.js → ui/clickOutside.js} +0 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
viewBox="0 0 32 32"
|
|
4
|
+
width="96px"
|
|
5
|
+
height="96px"
|
|
6
|
+
version="1.1"
|
|
7
|
+
id="svg4"
|
|
8
|
+
sodipodi:docname="icon-dashboard.svg"
|
|
9
|
+
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
|
10
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
14
|
+
<defs
|
|
15
|
+
id="defs8" />
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
id="namedview6"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#111111"
|
|
20
|
+
borderopacity="1"
|
|
21
|
+
inkscape:pageshadow="0"
|
|
22
|
+
inkscape:pageopacity="0"
|
|
23
|
+
inkscape:pagecheckerboard="1"
|
|
24
|
+
showgrid="false"
|
|
25
|
+
inkscape:zoom="8.4166667"
|
|
26
|
+
inkscape:cx="41.940594"
|
|
27
|
+
inkscape:cy="32.851485"
|
|
28
|
+
inkscape:window-width="3200"
|
|
29
|
+
inkscape:window-height="1721"
|
|
30
|
+
inkscape:window-x="2391"
|
|
31
|
+
inkscape:window-y="-993"
|
|
32
|
+
inkscape:window-maximized="1"
|
|
33
|
+
inkscape:current-layer="svg4" />
|
|
34
|
+
<path
|
|
35
|
+
id="rect855"
|
|
36
|
+
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none"
|
|
37
|
+
d="m 57.103516,8.8457031 c -3.420204,0 -6.263672,2.8434679 -6.263672,6.2636719 v 19.03125 c 0,3.420204 2.843468,6.269531 6.263672,6.269531 h 20.638672 c 3.420204,0 6.269531,-2.849327 6.269531,-6.269531 v -19.03125 c 0,-3.420204 -2.849327,-6.2636719 -6.269531,-6.2636719 z m -41.06836,0.1015625 c -3.25565,0 -5.970703,2.7150534 -5.970703,5.9707034 v 29.382812 c 0,3.255648 2.715053,5.970703 5.970703,5.970703 h 22.638672 c 3.255651,0 5.970703,-2.715055 5.970703,-5.970703 V 14.917969 c 0,-3.25565 -2.715052,-5.9707034 -5.970703,-5.9707034 z m 41.06836,5.8984374 h 20.638672 c 0.19998,0 0.269531,0.06368 0.269531,0.263672 v 19.03125 c 0,0.19998 -0.06955,0.269531 -0.269531,0.269531 H 57.103516 c -0.19998,0 -0.263672,-0.06955 -0.263672,-0.269531 v -19.03125 c 0,-0.199992 0.06369,-0.263673 0.263672,-0.263672 z M 16.064453,14.947266 H 38.644531 V 44.271484 H 16.064453 Z m 41.332031,30.722656 c -3.255648,0 -5.970703,2.715055 -5.970703,5.970703 V 81.029297 C 51.425772,84.284945 54.140836,87 57.396484,87 H 78.035156 C 81.290807,87 84,84.284945 84,81.029297 V 51.640625 c 0,-3.255648 -2.709193,-5.970703 -5.964844,-5.970703 z m 0.0293,6 H 78 V 81 H 57.425781 Z m -41.121093,3.876953 c -3.420205,0 -6.269532,2.843468 -6.269532,6.263672 v 19.03125 c 0,3.420204 2.849327,6.269531 6.269532,6.269531 h 22.072265 c 3.420204,0 6.269531,-2.849327 6.269531,-6.269531 v -19.03125 c 0,-3.420204 -2.849327,-6.263672 -6.269531,-6.263672 z m 0,6 h 22.072265 c 0.19998,0 0.269531,0.06369 0.269531,0.263672 v 19.03125 c 0,0.19998 -0.06955,0.269531 -0.269531,0.269531 H 16.304688 c -0.199992,0 -0.269532,-0.06955 -0.269532,-0.269531 v -19.03125 c 0,-0.19998 0.06954,-0.263672 0.269532,-0.263672 z"
|
|
38
|
+
sodipodi:nodetypes="sssssssssssssssssscsssssssccccccsscsssssscccccsssssssssssssssssss"
|
|
39
|
+
transform="scale(0.33333333)" />
|
|
40
|
+
</svg>
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
viewBox="0 0 32 32"
|
|
4
|
+
width="96px"
|
|
5
|
+
height="96px"
|
|
6
|
+
version="1.1"
|
|
7
|
+
id="svg4"
|
|
8
|
+
sodipodi:docname="icons8-docs.svg"
|
|
9
|
+
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
|
10
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
14
|
+
<defs
|
|
15
|
+
id="defs8" />
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
id="namedview6"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#111111"
|
|
20
|
+
borderopacity="1"
|
|
21
|
+
inkscape:pageshadow="0"
|
|
22
|
+
inkscape:pageopacity="0"
|
|
23
|
+
inkscape:pagecheckerboard="1"
|
|
24
|
+
showgrid="false"
|
|
25
|
+
inkscape:zoom="8.4166667"
|
|
26
|
+
inkscape:cx="93.089109"
|
|
27
|
+
inkscape:cy="61.960396"
|
|
28
|
+
inkscape:window-width="3200"
|
|
29
|
+
inkscape:window-height="1721"
|
|
30
|
+
inkscape:window-x="2391"
|
|
31
|
+
inkscape:window-y="-993"
|
|
32
|
+
inkscape:window-maximized="1"
|
|
33
|
+
inkscape:current-layer="svg4" />
|
|
34
|
+
<path
|
|
35
|
+
d="M 8,3 C 6.90625,3 6,3.90625 6,5 v 22 c 0,1.09375 0.90625,2 2,2 h 16 c 1.09375,0 2,-0.90625 2,-2 V 10.893645 C 26,9.7510728 25.74468,9.3071802 25.070295,8.6327948 L 20.372585,3.9350854 C 19.584522,3.1470225 19.098869,3.0035283 17.978715,3 Z m 0,2 h 9 v 5 c 0,1.09375 0.90625,2 2,2 h 5 V 27 H 8 Z M 19,5.4375 23.5625,10 H 19 Z M 11,15 v 2 h 10 v -2 z m 0,3 v 2 h 10 v -2 z m 0,3 v 2 h 5 v -2 z"
|
|
36
|
+
id="path2"
|
|
37
|
+
sodipodi:nodetypes="ssssssssscsccssccccccccccccccccccccccc"
|
|
38
|
+
style="fill:#ffffff;fill-opacity:1" />
|
|
39
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0,0,256,256" width="52px" height="52px"><g fill="#ffffff" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0" font-family="none" font-weight="none" font-size="none" text-anchor="none" style="mix-blend-mode: normal"><g transform="scale(9.84615,9.84615)"><path d="M22.56641,4.73047l-1.79297,-1.21875c-0.49609,-0.33594 -1.17578,-0.20703 -1.50781,0.28516l-8.78906,12.96094l-4.03906,-4.03906c-0.42187,-0.42187 -1.10937,-0.42187 -1.53125,0l-1.53516,1.53516c-0.42187,0.42188 -0.42187,1.10938 0,1.53516l6.21094,6.21094c0.34766,0.34766 0.89453,0.61328 1.38672,0.61328c0.49219,0 0.98828,-0.30859 1.30859,-0.77344l10.57813,-15.60547c0.33594,-0.49219 0.20703,-1.16797 -0.28906,-1.50391z"></path></g></g></svg>
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
viewBox="0,0,256,256"
|
|
4
|
+
width="48px"
|
|
5
|
+
height="48px"
|
|
6
|
+
fill-rule="nonzero"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg2"
|
|
9
|
+
sodipodi:docname="icon-edit-g.svg"
|
|
10
|
+
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs2" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview2"
|
|
19
|
+
pagecolor="#505050"
|
|
20
|
+
bordercolor="#ffffff"
|
|
21
|
+
borderopacity="1"
|
|
22
|
+
inkscape:showpageshadow="0"
|
|
23
|
+
inkscape:pageopacity="0"
|
|
24
|
+
inkscape:pagecheckerboard="1"
|
|
25
|
+
inkscape:deskcolor="#505050"
|
|
26
|
+
inkscape:zoom="24.4375"
|
|
27
|
+
inkscape:cx="24"
|
|
28
|
+
inkscape:cy="24"
|
|
29
|
+
inkscape:window-width="2560"
|
|
30
|
+
inkscape:window-height="1369"
|
|
31
|
+
inkscape:window-x="1072"
|
|
32
|
+
inkscape:window-y="-3"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:current-layer="svg2" />
|
|
35
|
+
<g
|
|
36
|
+
fill="#ffffff"
|
|
37
|
+
fill-rule="nonzero"
|
|
38
|
+
stroke="none"
|
|
39
|
+
stroke-width="1"
|
|
40
|
+
stroke-linecap="butt"
|
|
41
|
+
stroke-linejoin="miter"
|
|
42
|
+
stroke-miterlimit="10"
|
|
43
|
+
stroke-dasharray=""
|
|
44
|
+
stroke-dashoffset="0"
|
|
45
|
+
font-family="none"
|
|
46
|
+
font-weight="none"
|
|
47
|
+
font-size="none"
|
|
48
|
+
text-anchor="none"
|
|
49
|
+
style="mix-blend-mode:normal;fill:#353435;fill-opacity:1"
|
|
50
|
+
id="g2">
|
|
51
|
+
<g
|
|
52
|
+
transform="scale(10.66667,10.66667)"
|
|
53
|
+
id="g1"
|
|
54
|
+
style="fill:#353435;fill-opacity:1">
|
|
55
|
+
<path
|
|
56
|
+
d="M19.17188,2c-0.72375,0 -1.4475,0.27562 -2,0.82813l-1.17187,1.17188l4,4l1.17188,-1.17187c1.104,-1.104 1.104,-2.895 0,-4c-0.5525,-0.5525 -1.27625,-0.82812 -2,-0.82812zM14.5,5.5l-11.5,11.5v4h4l11.5,-11.5z"
|
|
57
|
+
id="path1"
|
|
58
|
+
style="fill:#353435;fill-opacity:1" />
|
|
59
|
+
</g>
|
|
60
|
+
</g>
|
|
61
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0,0,256,256" width="48px" height="48px" fill-rule="nonzero"><g fill="#ffffff" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0" font-family="none" font-weight="none" font-size="none" text-anchor="none" style="mix-blend-mode: normal"><g transform="scale(10.66667,10.66667)"><path d="M19.17188,2c-0.72375,0 -1.4475,0.27562 -2,0.82813l-1.17187,1.17188l4,4l1.17188,-1.17187c1.104,-1.104 1.104,-2.895 0,-4c-0.5525,-0.5525 -1.27625,-0.82812 -2,-0.82812zM14.5,5.5l-11.5,11.5v4h4l11.5,-11.5z"></path></g></g></svg>
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
viewBox="0 0 24 24"
|
|
4
|
+
width="96px"
|
|
5
|
+
height="96px"
|
|
6
|
+
version="1.1"
|
|
7
|
+
id="svg1"
|
|
8
|
+
sodipodi:docname="icon-info-100.svg"
|
|
9
|
+
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
|
10
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
14
|
+
<defs
|
|
15
|
+
id="defs1" />
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
id="namedview1"
|
|
18
|
+
pagecolor="#505050"
|
|
19
|
+
bordercolor="#ffffff"
|
|
20
|
+
borderopacity="1"
|
|
21
|
+
inkscape:showpageshadow="0"
|
|
22
|
+
inkscape:pageopacity="0"
|
|
23
|
+
inkscape:pagecheckerboard="1"
|
|
24
|
+
inkscape:deskcolor="#505050"
|
|
25
|
+
inkscape:zoom="3.6902135"
|
|
26
|
+
inkscape:cx="56.771783"
|
|
27
|
+
inkscape:cy="52.977965"
|
|
28
|
+
inkscape:window-width="1366"
|
|
29
|
+
inkscape:window-height="697"
|
|
30
|
+
inkscape:window-x="-8"
|
|
31
|
+
inkscape:window-y="-8"
|
|
32
|
+
inkscape:window-maximized="1"
|
|
33
|
+
inkscape:current-layer="svg1" />
|
|
34
|
+
<path
|
|
35
|
+
id="rect855"
|
|
36
|
+
style="color:#000000;fill:#111111;fill-opacity:1;stroke-width:0.75;stroke-linecap:square;-inkscape-stroke:none;paint-order:fill markers stroke"
|
|
37
|
+
d="m 10.909668,2.5390625 c -0.02778,0 -0.05353,0.00457 -0.08105,0.00537 h -0.327636 c -0.9455555,0 -1.7299809,0.7844254 -1.7299809,1.7299805 0,0.3042867 0.00316,0.5935032 0.00586,0.8852539 H 6.1499023 c -0.9455554,0 -1.7299804,0.7844254 -1.7299804,1.7299804 V 20.289062 c 0,0.945556 0.784425,1.731446 1.7299804,1.731446 H 17.735352 c 0.945555,0 1.72998,-0.78589 1.72998,-1.731446 V 18.245605 H 17.96582 v 2.274415 h -0.228027 c -0.0011,1.1e-5 -0.0014,4.88e-4 -0.0024,4.88e-4 H 6.1499023 c -0.0011,0 -0.00193,-4.63e-4 -0.00293,-4.88e-4 H 5.9116211 V 6.659668 h 0.2382812 1.6523438 0.480957 1 5.2700199 0.498047 0.964355 1.719727 0.230468 V 9 h 1.499512 V 7.3291016 6.8896484 c 0,-0.945555 -0.784425,-1.7299804 -1.72998,-1.7299804 H 15.05127 c 0.0026,-0.1301449 -1.17e-4,-0.2728763 -0.0078,-0.4204102 7.5e-4,-0.1571128 0.0024,-0.3066653 0.0024,-0.4672851 0,-0.9455541 -0.784425,-1.7299805 -1.72998,-1.7299805 h -0.268555 c -0.03043,-9.98e-4 -0.06105,-0.00293 -0.0918,-0.00293 z m -0.37207,1.4941406 h 2.737304 c 0.203393,0 0.278321,0.1127591 0.278321,0.2949219 v 0.831543 h -3.27002 V 4.2949219 c 0,-0.1754688 0.101501,-0.2617188 0.254395,-0.2617188 z M 7.8276367,9 v 1.522461 H 9.4980469 V 9 Z m 3.1430663,0 v 1.522461 h 5.058594 V 9 Z m -3.1430663,4.022461 v 1.522461 h 1.6704102 v -1.522461 z m 0,4.022461 v 1.521973 h 1.6704102 v -1.521973 z m 3.1430663,0 v 1.521973 h 5.058594 v -1.521973 z"
|
|
38
|
+
sodipodi:nodetypes="scsscssssssccccsscccccccccccccccssccsscsssssccssccccccccccccccccccccccccc" />
|
|
39
|
+
<rect
|
|
40
|
+
style="fill:#111111;fill-opacity:1;stroke-width:0.161015;paint-order:stroke markers fill"
|
|
41
|
+
id="rect1"
|
|
42
|
+
width="1.499511"
|
|
43
|
+
height="6.1532812"
|
|
44
|
+
x="17.965576"
|
|
45
|
+
y="10.710104" />
|
|
46
|
+
<rect
|
|
47
|
+
style="fill:#111111;fill-opacity:1;stroke-width:0.161015;paint-order:stroke markers fill"
|
|
48
|
+
id="rect1-7"
|
|
49
|
+
width="1.499511"
|
|
50
|
+
height="6.1532812"
|
|
51
|
+
x="13.036989"
|
|
52
|
+
y="-21.779636"
|
|
53
|
+
transform="rotate(90)" />
|
|
54
|
+
</svg>
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
viewBox="0 0 24 24"
|
|
4
|
+
width="96px"
|
|
5
|
+
height="96px"
|
|
6
|
+
version="1.1"
|
|
7
|
+
id="svg1"
|
|
8
|
+
sodipodi:docname="icon-info-w.svg"
|
|
9
|
+
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
|
10
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
14
|
+
<defs
|
|
15
|
+
id="defs1" />
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
id="namedview1"
|
|
18
|
+
pagecolor="#505050"
|
|
19
|
+
bordercolor="#ffffff"
|
|
20
|
+
borderopacity="1"
|
|
21
|
+
inkscape:showpageshadow="0"
|
|
22
|
+
inkscape:pageopacity="0"
|
|
23
|
+
inkscape:pagecheckerboard="1"
|
|
24
|
+
inkscape:deskcolor="#505050"
|
|
25
|
+
inkscape:zoom="3.6902135"
|
|
26
|
+
inkscape:cx="34.279859"
|
|
27
|
+
inkscape:cy="51.081055"
|
|
28
|
+
inkscape:window-width="1366"
|
|
29
|
+
inkscape:window-height="697"
|
|
30
|
+
inkscape:window-x="296"
|
|
31
|
+
inkscape:window-y="1072"
|
|
32
|
+
inkscape:window-maximized="1"
|
|
33
|
+
inkscape:current-layer="svg1" />
|
|
34
|
+
<path
|
|
35
|
+
d="m 11,7 v 2 h 2 V 7 Z m 0,4 v 6 h 2 v -6 z"
|
|
36
|
+
id="path1"
|
|
37
|
+
style="fill:#ffffff;fill-opacity:0.869646"
|
|
38
|
+
sodipodi:nodetypes="cccccccccc" />
|
|
39
|
+
</svg>
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
viewBox="0 0 32 32"
|
|
4
|
+
width="96px"
|
|
5
|
+
height="96px"
|
|
6
|
+
version="1.1"
|
|
7
|
+
id="svg4"
|
|
8
|
+
sodipodi:docname="icon-kanban-black.svg"
|
|
9
|
+
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
|
10
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
14
|
+
<defs
|
|
15
|
+
id="defs8" />
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
id="namedview6"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#111111"
|
|
20
|
+
borderopacity="1"
|
|
21
|
+
inkscape:pageshadow="0"
|
|
22
|
+
inkscape:pageopacity="0"
|
|
23
|
+
inkscape:pagecheckerboard="1"
|
|
24
|
+
showgrid="false"
|
|
25
|
+
inkscape:zoom="5.6568543"
|
|
26
|
+
inkscape:cx="58.071144"
|
|
27
|
+
inkscape:cy="59.662134"
|
|
28
|
+
inkscape:window-width="1366"
|
|
29
|
+
inkscape:window-height="697"
|
|
30
|
+
inkscape:window-x="296"
|
|
31
|
+
inkscape:window-y="1072"
|
|
32
|
+
inkscape:window-maximized="1"
|
|
33
|
+
inkscape:current-layer="svg4"
|
|
34
|
+
inkscape:showpageshadow="0"
|
|
35
|
+
inkscape:deskcolor="#505050" />
|
|
36
|
+
<path
|
|
37
|
+
id="rect855-4-9"
|
|
38
|
+
style="color:#000000;fill:#121212;fill-opacity:1;stroke-width:0.943628;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none"
|
|
39
|
+
d="M 6.0544517,4 C 4.9326423,4 4,4.85771 4,5.889388 V 26.108845 C 4,27.140523 4.9326423,28 6.0544517,28 H 25.943625 C 27.065435,28 28,27.140523 28,26.108845 V 5.889388 C 28,4.85771 27.065435,4 25.943625,4 Z M 25.354167,6.666667 25.333334,25.333334 H 6.6666667 L 6.6875,6.6666667 Z"
|
|
40
|
+
sodipodi:nodetypes="sssssssssccccc" />
|
|
41
|
+
<rect
|
|
42
|
+
style="fill:#121212;fill-opacity:1;stroke-width:1.7087;stroke-linecap:square"
|
|
43
|
+
id="rect1"
|
|
44
|
+
width="2.6666667"
|
|
45
|
+
height="10.606602"
|
|
46
|
+
x="9.333334"
|
|
47
|
+
y="8.9878578"
|
|
48
|
+
ry="0.00097641727" />
|
|
49
|
+
<rect
|
|
50
|
+
style="fill:#121212;fill-opacity:1;stroke-width:1.9648;stroke-linecap:square"
|
|
51
|
+
id="rect1-4"
|
|
52
|
+
width="2.6666667"
|
|
53
|
+
height="14.024284"
|
|
54
|
+
x="20"
|
|
55
|
+
y="8.9878578"
|
|
56
|
+
ry="0.0012910407" />
|
|
57
|
+
<rect
|
|
58
|
+
style="fill:#121212;fill-opacity:1;stroke-width:1.38932;stroke-linecap:square"
|
|
59
|
+
id="rect1-4-3"
|
|
60
|
+
width="2.6666667"
|
|
61
|
+
height="7.0121422"
|
|
62
|
+
x="14.666666"
|
|
63
|
+
y="8.9878578"
|
|
64
|
+
ry="0.00064552028" />
|
|
65
|
+
</svg>
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
viewBox="0 0 32 32"
|
|
4
|
+
width="96px"
|
|
5
|
+
height="96px"
|
|
6
|
+
version="1.1"
|
|
7
|
+
id="svg4"
|
|
8
|
+
sodipodi:docname="icon-kanban.svg"
|
|
9
|
+
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
|
10
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
14
|
+
<defs
|
|
15
|
+
id="defs8" />
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
id="namedview6"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#111111"
|
|
20
|
+
borderopacity="1"
|
|
21
|
+
inkscape:pageshadow="0"
|
|
22
|
+
inkscape:pageopacity="0"
|
|
23
|
+
inkscape:pagecheckerboard="1"
|
|
24
|
+
showgrid="false"
|
|
25
|
+
inkscape:zoom="5.6568543"
|
|
26
|
+
inkscape:cx="58.071144"
|
|
27
|
+
inkscape:cy="59.662134"
|
|
28
|
+
inkscape:window-width="1366"
|
|
29
|
+
inkscape:window-height="697"
|
|
30
|
+
inkscape:window-x="296"
|
|
31
|
+
inkscape:window-y="1072"
|
|
32
|
+
inkscape:window-maximized="1"
|
|
33
|
+
inkscape:current-layer="svg4"
|
|
34
|
+
inkscape:showpageshadow="0"
|
|
35
|
+
inkscape:deskcolor="#505050" />
|
|
36
|
+
<path
|
|
37
|
+
id="rect855-4-9"
|
|
38
|
+
style="color:#000000;fill:#888888;fill-opacity:1;stroke-width:0.943628;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none"
|
|
39
|
+
d="M 6.0544517,4 C 4.9326423,4 4,4.85771 4,5.889388 V 26.108845 C 4,27.140523 4.9326423,28 6.0544517,28 H 25.943625 C 27.065435,28 28,27.140523 28,26.108845 V 5.889388 C 28,4.85771 27.065435,4 25.943625,4 Z M 25.354167,6.666667 25.333334,25.333334 H 6.6666667 L 6.6875,6.6666667 Z"
|
|
40
|
+
sodipodi:nodetypes="sssssssssccccc" />
|
|
41
|
+
<rect
|
|
42
|
+
style="fill:#888888;fill-opacity:1;stroke-width:1.7087;stroke-linecap:square"
|
|
43
|
+
id="rect1"
|
|
44
|
+
width="2.6666667"
|
|
45
|
+
height="10.606602"
|
|
46
|
+
x="9.333334"
|
|
47
|
+
y="8.9878578"
|
|
48
|
+
ry="0.00097641727" />
|
|
49
|
+
<rect
|
|
50
|
+
style="fill:#888888;fill-opacity:1;stroke-width:1.9648;stroke-linecap:square"
|
|
51
|
+
id="rect1-4"
|
|
52
|
+
width="2.6666667"
|
|
53
|
+
height="14.024284"
|
|
54
|
+
x="20"
|
|
55
|
+
y="8.9878578"
|
|
56
|
+
ry="0.0012910407" />
|
|
57
|
+
<rect
|
|
58
|
+
style="fill:#888888;fill-opacity:1;stroke-width:1.38932;stroke-linecap:square"
|
|
59
|
+
id="rect1-4-3"
|
|
60
|
+
width="2.6666667"
|
|
61
|
+
height="7.0121422"
|
|
62
|
+
x="14.666666"
|
|
63
|
+
y="8.9878578"
|
|
64
|
+
ry="0.00064552028" />
|
|
65
|
+
</svg>
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
viewBox="0 0 32 32"
|
|
4
|
+
width="96px"
|
|
5
|
+
height="96px"
|
|
6
|
+
version="1.1"
|
|
7
|
+
id="svg4"
|
|
8
|
+
sodipodi:docname="icon-link.svg"
|
|
9
|
+
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
|
|
10
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
14
|
+
<defs
|
|
15
|
+
id="defs8">
|
|
16
|
+
<pattern
|
|
17
|
+
id="EMFhbasepattern"
|
|
18
|
+
patternUnits="userSpaceOnUse"
|
|
19
|
+
width="6"
|
|
20
|
+
height="6"
|
|
21
|
+
x="0"
|
|
22
|
+
y="0" />
|
|
23
|
+
</defs>
|
|
24
|
+
<sodipodi:namedview
|
|
25
|
+
id="namedview6"
|
|
26
|
+
pagecolor="#ffffff"
|
|
27
|
+
bordercolor="#111111"
|
|
28
|
+
borderopacity="1"
|
|
29
|
+
inkscape:pageshadow="0"
|
|
30
|
+
inkscape:pageopacity="0"
|
|
31
|
+
inkscape:pagecheckerboard="1"
|
|
32
|
+
showgrid="false"
|
|
33
|
+
inkscape:zoom="4.2083334"
|
|
34
|
+
inkscape:cx="148.27723"
|
|
35
|
+
inkscape:cy="63.80198"
|
|
36
|
+
inkscape:window-width="3200"
|
|
37
|
+
inkscape:window-height="1721"
|
|
38
|
+
inkscape:window-x="2391"
|
|
39
|
+
inkscape:window-y="-993"
|
|
40
|
+
inkscape:window-maximized="1"
|
|
41
|
+
inkscape:current-layer="svg4" />
|
|
42
|
+
<path
|
|
43
|
+
id="path824-4"
|
|
44
|
+
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.69198"
|
|
45
|
+
d="M 69.191406 9.4375 C 65.649693 9.4327105 62.181876 10.653682 59.521484 13.365234 L 47.527344 25.589844 C 42.932394 30.273159 42.855313 36.156128 45.392578 41 L 50.974609 35.505859 C 50.07184 33.608314 51.284939 31.55052 52.761719 30.09375 L 64.642578 18.373047 C 67.547751 15.507237 72.899658 16.825629 76.128906 19.824219 C 79.127493 22.592145 80.30304 28.721752 77.388672 31.615234 L 66.4375 42.486328 C 64.723264 44.188273 62.603305 45.297626 61.101562 44.462891 L 55.09375 50.599609 C 61.129441 53.388427 66.684921 51.847555 70.59375 48.115234 L 82.587891 36.662109 C 88.614396 30.907734 87.432529 20.977643 81.666016 14.980469 C 78.422352 11.477313 73.745037 9.4436579 69.191406 9.4375 z M 59.005859 33.380859 C 57.888584 33.40547 56.820106 33.993391 56.017578 34.914062 C 48.867099 41.833881 41.947162 48.984482 35.027344 55.904297 C 33.182059 57.749582 32.543354 59.729953 34.333984 61.671875 C 35.968851 63.444872 38.493223 62.830254 40.332031 60.978516 L 61.238281 39.925781 C 62.915983 38.297423 63.507726 36.243873 61.595703 34.455078 C 60.772189 33.684637 59.874852 33.361718 59.005859 33.380859 z M 34.371094 44.691406 C 30.717358 44.649001 27.442121 46.15418 24.876953 48.603516 L 12.882812 60.056641 C 6.8563057 65.811016 8.0401264 75.741107 13.806641 81.738281 C 19.573153 87.966113 29.868323 89.551351 35.949219 83.353516 L 47.943359 71.128906 C 52.538309 66.445591 52.617343 60.562622 50.080078 55.71875 L 44.498047 61.212891 C 45.400816 63.110436 44.187718 65.16823 42.710938 66.625 L 30.830078 78.345703 C 27.924905 81.211513 22.571045 79.893121 19.341797 76.894531 C 16.343211 74.126605 15.169615 67.996998 18.083984 65.103516 L 29.033203 54.232422 C 30.74744 52.530477 32.869351 51.421124 34.371094 52.255859 L 40.376953 46.119141 C 38.302184 45.160484 36.284955 44.713619 34.371094 44.691406 z "
|
|
46
|
+
transform="scale(0.33333333)" />
|
|
47
|
+
</svg>
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
viewBox="0 0 32 32"
|
|
4
|
+
width="96px"
|
|
5
|
+
height="96px"
|
|
6
|
+
version="1.1"
|
|
7
|
+
id="svg4"
|
|
8
|
+
sodipodi:docname="icon-list-black.svg"
|
|
9
|
+
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
|
10
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
14
|
+
<defs
|
|
15
|
+
id="defs8" />
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
id="namedview6"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#111111"
|
|
20
|
+
borderopacity="1"
|
|
21
|
+
inkscape:pageshadow="0"
|
|
22
|
+
inkscape:pageopacity="0"
|
|
23
|
+
inkscape:pagecheckerboard="1"
|
|
24
|
+
showgrid="false"
|
|
25
|
+
inkscape:zoom="5.6568543"
|
|
26
|
+
inkscape:cx="58.071144"
|
|
27
|
+
inkscape:cy="59.662134"
|
|
28
|
+
inkscape:window-width="2560"
|
|
29
|
+
inkscape:window-height="1369"
|
|
30
|
+
inkscape:window-x="1072"
|
|
31
|
+
inkscape:window-y="-3"
|
|
32
|
+
inkscape:window-maximized="1"
|
|
33
|
+
inkscape:current-layer="svg4"
|
|
34
|
+
inkscape:showpageshadow="0"
|
|
35
|
+
inkscape:deskcolor="#505050" />
|
|
36
|
+
<rect
|
|
37
|
+
style="fill:#121212;fill-opacity:1;stroke-width:1.9648;stroke-linecap:square"
|
|
38
|
+
id="rect1-4-2"
|
|
39
|
+
width="2.6666667"
|
|
40
|
+
height="14.024284"
|
|
41
|
+
x="-14.666667"
|
|
42
|
+
y="11.309049"
|
|
43
|
+
ry="0.0012910407"
|
|
44
|
+
transform="rotate(-90)" />
|
|
45
|
+
<rect
|
|
46
|
+
style="fill:#121212;fill-opacity:1;stroke-width:1.9648;stroke-linecap:square"
|
|
47
|
+
id="rect1-4-4"
|
|
48
|
+
width="2.6666667"
|
|
49
|
+
height="14.024284"
|
|
50
|
+
x="-19.999998"
|
|
51
|
+
y="11.309049"
|
|
52
|
+
ry="0.0012910407"
|
|
53
|
+
transform="rotate(-90)" />
|
|
54
|
+
<rect
|
|
55
|
+
style="fill:#121212;fill-opacity:1;stroke-width:1.9648;stroke-linecap:square"
|
|
56
|
+
id="rect1-4-4-6"
|
|
57
|
+
width="2.6666667"
|
|
58
|
+
height="14.024284"
|
|
59
|
+
x="-25.33333"
|
|
60
|
+
y="11.309049"
|
|
61
|
+
ry="0.0012910407"
|
|
62
|
+
transform="rotate(-90)" />
|
|
63
|
+
<rect
|
|
64
|
+
style="fill:#121212;fill-opacity:1;stroke-width:1.9648;stroke-linecap:square"
|
|
65
|
+
id="rect1-4"
|
|
66
|
+
width="2.6666667"
|
|
67
|
+
height="14.024284"
|
|
68
|
+
x="-9.333333"
|
|
69
|
+
y="11.309049"
|
|
70
|
+
ry="0.0012910407"
|
|
71
|
+
transform="rotate(-90)" />
|
|
72
|
+
<path
|
|
73
|
+
id="rect1"
|
|
74
|
+
style="fill:#121212;fill-opacity:1;stroke-width:1.86667;stroke-linecap:round;paint-order:stroke markers fill"
|
|
75
|
+
d="m 5.6315105,6.6653646 c -7.153e-4,0 -0.0013,5.868e-4 -0.0013,0.0013 v 2.6640625 c 0,7.152e-4 5.868e-4,0.0013 0.0013,0.0013 h 2.890625 V 6.6653646 Z m 0,5.3333334 c -7.153e-4,0 -0.0013,5.87e-4 -0.0013,0.0013 v 2.664062 c 0,7.16e-4 5.868e-4,0.0013 0.0013,0.0013 h 2.890625 v -2.666667 z m 0,5.333333 c -7.153e-4,0 -0.0013,5.87e-4 -0.0013,0.0013 v 2.664063 c 0,7.15e-4 5.868e-4,0.0013 0.0013,0.0013 h 2.890625 v -2.666667 z m 0,5.333334 c -7.153e-4,0 -0.0013,5.86e-4 -0.0013,0.0013 v 2.664062 c 0,7.15e-4 5.868e-4,0.0013 0.0013,0.0013 h 2.890625 v -2.666666 z" />
|
|
76
|
+
</svg>
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
viewBox="0 0 32 32"
|
|
4
|
+
width="96px"
|
|
5
|
+
height="96px"
|
|
6
|
+
version="1.1"
|
|
7
|
+
id="svg4"
|
|
8
|
+
sodipodi:docname="icon-list-grey.svg"
|
|
9
|
+
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
|
10
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
14
|
+
<defs
|
|
15
|
+
id="defs8" />
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
id="namedview6"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#111111"
|
|
20
|
+
borderopacity="1"
|
|
21
|
+
inkscape:pageshadow="0"
|
|
22
|
+
inkscape:pageopacity="0"
|
|
23
|
+
inkscape:pagecheckerboard="1"
|
|
24
|
+
showgrid="false"
|
|
25
|
+
inkscape:zoom="5.6568543"
|
|
26
|
+
inkscape:cx="58.071144"
|
|
27
|
+
inkscape:cy="59.662134"
|
|
28
|
+
inkscape:window-width="2560"
|
|
29
|
+
inkscape:window-height="1369"
|
|
30
|
+
inkscape:window-x="1072"
|
|
31
|
+
inkscape:window-y="-3"
|
|
32
|
+
inkscape:window-maximized="1"
|
|
33
|
+
inkscape:current-layer="svg4"
|
|
34
|
+
inkscape:showpageshadow="0"
|
|
35
|
+
inkscape:deskcolor="#505050" />
|
|
36
|
+
<rect
|
|
37
|
+
style="fill:#888888;fill-opacity:1;stroke-width:1.9648;stroke-linecap:square"
|
|
38
|
+
id="rect1-4-2"
|
|
39
|
+
width="2.6666667"
|
|
40
|
+
height="14.024284"
|
|
41
|
+
x="-14.666667"
|
|
42
|
+
y="11.309049"
|
|
43
|
+
ry="0.0012910407"
|
|
44
|
+
transform="rotate(-90)" />
|
|
45
|
+
<rect
|
|
46
|
+
style="fill:#888888;fill-opacity:1;stroke-width:1.9648;stroke-linecap:square"
|
|
47
|
+
id="rect1-4-4"
|
|
48
|
+
width="2.6666667"
|
|
49
|
+
height="14.024284"
|
|
50
|
+
x="-19.999998"
|
|
51
|
+
y="11.309049"
|
|
52
|
+
ry="0.0012910407"
|
|
53
|
+
transform="rotate(-90)" />
|
|
54
|
+
<rect
|
|
55
|
+
style="fill:#888888;fill-opacity:1;stroke-width:1.9648;stroke-linecap:square"
|
|
56
|
+
id="rect1-4-4-6"
|
|
57
|
+
width="2.6666667"
|
|
58
|
+
height="14.024284"
|
|
59
|
+
x="-25.33333"
|
|
60
|
+
y="11.309049"
|
|
61
|
+
ry="0.0012910407"
|
|
62
|
+
transform="rotate(-90)" />
|
|
63
|
+
<rect
|
|
64
|
+
style="fill:#888888;fill-opacity:1;stroke-width:1.9648;stroke-linecap:square"
|
|
65
|
+
id="rect1-4"
|
|
66
|
+
width="2.6666667"
|
|
67
|
+
height="14.024284"
|
|
68
|
+
x="-9.333333"
|
|
69
|
+
y="11.309049"
|
|
70
|
+
ry="0.0012910407"
|
|
71
|
+
transform="rotate(-90)" />
|
|
72
|
+
<path
|
|
73
|
+
id="rect1"
|
|
74
|
+
style="fill:#888888;fill-opacity:1;stroke-width:1.86667;stroke-linecap:round;paint-order:stroke markers fill"
|
|
75
|
+
d="m 5.6315105,6.6653646 c -7.153e-4,0 -0.0013,5.868e-4 -0.0013,0.0013 v 2.6640625 c 0,7.152e-4 5.868e-4,0.0013 0.0013,0.0013 h 2.890625 V 6.6653646 Z m 0,5.3333334 c -7.153e-4,0 -0.0013,5.87e-4 -0.0013,0.0013 v 2.664062 c 0,7.16e-4 5.868e-4,0.0013 0.0013,0.0013 h 2.890625 v -2.666667 z m 0,5.333333 c -7.153e-4,0 -0.0013,5.87e-4 -0.0013,0.0013 v 2.664063 c 0,7.15e-4 5.868e-4,0.0013 0.0013,0.0013 h 2.890625 v -2.666667 z m 0,5.333334 c -7.153e-4,0 -0.0013,5.86e-4 -0.0013,0.0013 v 2.664062 c 0,7.15e-4 5.868e-4,0.0013 0.0013,0.0013 h 2.890625 v -2.666666 z" />
|
|
76
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
viewBox="0 0 24 24"
|
|
4
|
+
width="96px"
|
|
5
|
+
height="96px"
|
|
6
|
+
version="1.1"
|
|
7
|
+
id="svg1"
|
|
8
|
+
sodipodi:docname="icon-next-w.svg"
|
|
9
|
+
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
|
10
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
14
|
+
<defs
|
|
15
|
+
id="defs1" />
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
id="namedview1"
|
|
18
|
+
pagecolor="#505050"
|
|
19
|
+
bordercolor="#ffffff"
|
|
20
|
+
borderopacity="1"
|
|
21
|
+
inkscape:showpageshadow="0"
|
|
22
|
+
inkscape:pageopacity="0"
|
|
23
|
+
inkscape:pagecheckerboard="1"
|
|
24
|
+
inkscape:deskcolor="#505050"
|
|
25
|
+
inkscape:zoom="3.6902135"
|
|
26
|
+
inkscape:cx="34.279859"
|
|
27
|
+
inkscape:cy="51.081055"
|
|
28
|
+
inkscape:window-width="1366"
|
|
29
|
+
inkscape:window-height="697"
|
|
30
|
+
inkscape:window-x="296"
|
|
31
|
+
inkscape:window-y="1072"
|
|
32
|
+
inkscape:window-maximized="1"
|
|
33
|
+
inkscape:current-layer="svg1" />
|
|
34
|
+
<path
|
|
35
|
+
style="color:#000000;fill:#ffffff;stroke-linecap:square;-inkscape-stroke:none"
|
|
36
|
+
d="M 8.7481553,4.4712861 15.251845,10.974975"
|
|
37
|
+
id="path7" />
|
|
38
|
+
<path
|
|
39
|
+
id="path8"
|
|
40
|
+
style="color:#000000;fill:#ffffff;stroke-width:1.19665;stroke-linecap:square;-inkscape-stroke:none"
|
|
41
|
+
d="M 8.0956441,2.2032465 5.980469,4.3184215 7.0392251,5.3771777 13.762794,12.1025 7.0392251,18.828406 5.980469,19.884825 8.0956441,22 9.1544,20.94358 l 7.780572,-7.782908 1.058756,-1.058756 v -5.85e-4 L 17.729039,11.837226 15.878553,9.98674 15.877969,9.987324 9.1544,3.2620026 Z" />
|
|
42
|
+
</svg>
|