├── src ├── dark │ ├── svgs │ │ ├── wait-01.svg │ │ ├── fleur.svg │ │ ├── progress-01.svg │ │ ├── center_ptr.svg │ │ ├── default.svg │ │ ├── right_ptr.svg │ │ ├── not-allowed.svg │ │ ├── wait.svg │ │ ├── wait-19.svg │ │ ├── wait-07.svg │ │ ├── wait-13.svg │ │ ├── top_tee.svg │ │ ├── wait-22.svg │ │ ├── bottom_tee.svg │ │ ├── wait-04.svg │ │ ├── wait-16.svg │ │ ├── wait-10.svg │ │ ├── wait-21.svg │ │ ├── wait-23.svg │ │ ├── wait-03.svg │ │ ├── wait-05.svg │ │ ├── wait-15.svg │ │ ├── wait-17.svg │ │ ├── wait-09.svg │ │ ├── wait-11.svg │ │ ├── wait-20.svg │ │ ├── wait-24.svg │ │ ├── wait-02.svg │ │ ├── wait-18.svg │ │ ├── wait-06.svg │ │ ├── wait-14.svg │ │ ├── wait-08.svg │ │ ├── wait-12.svg │ │ ├── text.svg │ │ ├── copy.svg │ │ ├── left-arrow.svg │ │ ├── right_side.svg │ │ ├── top_side.svg │ │ ├── bottom_side.svg │ │ ├── left_side.svg │ │ ├── top_left_corner.svg │ │ ├── bottom_left_corner.svg │ │ ├── right-arrow.svg │ │ ├── top_right_corner.svg │ │ ├── up-arrow.svg │ │ ├── bottom_right_corner.svg │ │ ├── alias.svg │ │ ├── down-arrow.svg │ │ └── vertical-text.svg │ └── cursor.theme ├── light │ ├── svgs │ │ ├── fleur.svg │ │ ├── wait-01.svg │ │ ├── progress-01.svg │ │ ├── center_ptr.svg │ │ ├── default.svg │ │ ├── right_ptr.svg │ │ ├── not-allowed.svg │ │ ├── wait.svg │ │ ├── wait-19.svg │ │ ├── wait-07.svg │ │ ├── wait-13.svg │ │ ├── top_tee.svg │ │ ├── bottom_tee.svg │ │ ├── wait-22.svg │ │ ├── wait-04.svg │ │ ├── wait-16.svg │ │ ├── wait-10.svg │ │ ├── wait-21.svg │ │ ├── wait-03.svg │ │ ├── wait-23.svg │ │ ├── wait-05.svg │ │ ├── wait-15.svg │ │ ├── wait-17.svg │ │ ├── wait-09.svg │ │ ├── wait-11.svg │ │ ├── wait-20.svg │ │ ├── wait-24.svg │ │ ├── wait-02.svg │ │ ├── wait-18.svg │ │ ├── wait-06.svg │ │ ├── wait-14.svg │ │ ├── wait-08.svg │ │ ├── wait-12.svg │ │ ├── text.svg │ │ ├── copy.svg │ │ ├── left-arrow.svg │ │ ├── right_side.svg │ │ ├── top_side.svg │ │ ├── bottom_side.svg │ │ ├── left_side.svg │ │ ├── top_left_corner.svg │ │ ├── bottom_left_corner.svg │ │ ├── right-arrow.svg │ │ ├── top_right_corner.svg │ │ ├── up-arrow.svg │ │ ├── bottom_right_corner.svg │ │ ├── alias.svg │ │ └── down-arrow.svg │ └── cursor.theme └── config │ ├── copy.cursor │ ├── help.cursor │ ├── alias.cursor │ ├── cell.cursor │ ├── draft.cursor │ ├── text.cursor │ ├── default.cursor │ ├── fleur.cursor │ ├── no-drop.cursor │ ├── pencil.cursor │ ├── pirate.cursor │ ├── pointer.cursor │ ├── top_side.cursor │ ├── top_tee.cursor │ ├── up-arrow.cursor │ ├── zoom-in.cursor │ ├── bottom_tee.cursor │ ├── center_ptr.cursor │ ├── crosshair.cursor │ ├── dnd-move.cursor │ ├── left-arrow.cursor │ ├── left_side.cursor │ ├── openhand.cursor │ ├── right_ptr.cursor │ ├── size_hor.cursor │ ├── size_ver.cursor │ ├── x-cursor.cursor │ ├── zoom-out.cursor │ ├── all-scroll.cursor │ ├── bottom_side.cursor │ ├── col-resize.cursor │ ├── context-menu.cursor │ ├── dnd-no-drop.cursor │ ├── down-arrow.cursor │ ├── not-allowed.cursor │ ├── right-arrow.cursor │ ├── right_side.cursor │ ├── row-resize.cursor │ ├── size_bdiag.cursor │ ├── size_fdiag.cursor │ ├── color-picker.cursor │ ├── top_left_corner.cursor │ ├── vertical-text.cursor │ ├── wayland-cursor.cursor │ ├── top_right_corner.cursor │ ├── bottom_left_corner.cursor │ ├── bottom_right_corner.cursor │ ├── wait.cursor │ └── progress.cursor ├── .gitignore └── README.md /src/dark/svgs/wait-01.svg: -------------------------------------------------------------------------------- 1 | wait.svg -------------------------------------------------------------------------------- /src/dark/svgs/fleur.svg: -------------------------------------------------------------------------------- 1 | all-scroll.svg -------------------------------------------------------------------------------- /src/light/svgs/fleur.svg: -------------------------------------------------------------------------------- 1 | all-scroll.svg -------------------------------------------------------------------------------- /src/light/svgs/wait-01.svg: -------------------------------------------------------------------------------- 1 | wait.svg -------------------------------------------------------------------------------- /src/dark/svgs/progress-01.svg: -------------------------------------------------------------------------------- 1 | progress.svg -------------------------------------------------------------------------------- /src/light/svgs/progress-01.svg: -------------------------------------------------------------------------------- 1 | progress.svg -------------------------------------------------------------------------------- /src/dark/cursor.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=Numix-Cursor 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/* 2 | Numix-Cursor/* 3 | Numix-Cursor-Light/* 4 | -------------------------------------------------------------------------------- /src/config/copy.cursor: -------------------------------------------------------------------------------- 1 | 24 4 4 x1/copy.png 2 | 48 8 8 x2/copy.png 3 | -------------------------------------------------------------------------------- /src/config/help.cursor: -------------------------------------------------------------------------------- 1 | 24 4 4 x1/help.png 2 | 48 8 8 x2/help.png 3 | -------------------------------------------------------------------------------- /src/light/cursor.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=Numix-Cursor-Light 3 | -------------------------------------------------------------------------------- /src/config/alias.cursor: -------------------------------------------------------------------------------- 1 | 24 4 4 x1/alias.png 2 | 48 8 8 x2/alias.png 3 | -------------------------------------------------------------------------------- /src/config/cell.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/cell.png 2 | 48 32 32 x2/cell.png 3 | -------------------------------------------------------------------------------- /src/config/draft.cursor: -------------------------------------------------------------------------------- 1 | 24 4 29 x1/draft.png 2 | 48 8 58 x2/draft.png 3 | -------------------------------------------------------------------------------- /src/config/text.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/text.png 2 | 48 32 32 x2/text.png 3 | -------------------------------------------------------------------------------- /src/config/default.cursor: -------------------------------------------------------------------------------- 1 | 24 4 4 x1/default.png 2 | 48 8 8 x2/default.png 3 | -------------------------------------------------------------------------------- /src/config/fleur.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/fleur.png 2 | 48 32 32 x2/fleur.png 3 | -------------------------------------------------------------------------------- /src/config/no-drop.cursor: -------------------------------------------------------------------------------- 1 | 24 4 4 x1/no-drop.png 2 | 48 8 8 x2/no-drop.png 3 | -------------------------------------------------------------------------------- /src/config/pencil.cursor: -------------------------------------------------------------------------------- 1 | 24 4 29 x1/pencil.png 2 | 48 8 58 x2/pencil.png 3 | -------------------------------------------------------------------------------- /src/config/pirate.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/pirate.png 2 | 48 32 32 x2/pirate.png 3 | -------------------------------------------------------------------------------- /src/config/pointer.cursor: -------------------------------------------------------------------------------- 1 | 24 16 4 x1/pointer.png 2 | 48 32 8 x2/pointer.png 3 | -------------------------------------------------------------------------------- /src/config/top_side.cursor: -------------------------------------------------------------------------------- 1 | 24 16 4 x1/top_side.png 2 | 48 32 8 x2/top_side.png 3 | -------------------------------------------------------------------------------- /src/config/top_tee.cursor: -------------------------------------------------------------------------------- 1 | 24 4 26 x1/top_tee.png 2 | 48 8 52 x2/top_tee.png 3 | -------------------------------------------------------------------------------- /src/config/up-arrow.cursor: -------------------------------------------------------------------------------- 1 | 24 16 4 x1/up-arrow.png 2 | 48 32 8 x2/up-arrow.png 3 | -------------------------------------------------------------------------------- /src/config/zoom-in.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/zoom-in.png 2 | 48 32 32 x2/zoom-in.png 3 | -------------------------------------------------------------------------------- /src/config/bottom_tee.cursor: -------------------------------------------------------------------------------- 1 | 24 4 26 x1/bottom_tee.png 2 | 48 8 52 x2/bottom_tee.png 3 | -------------------------------------------------------------------------------- /src/config/center_ptr.cursor: -------------------------------------------------------------------------------- 1 | 24 20 4 x1/center_ptr.png 2 | 48 40 8 x2/center_ptr.png 3 | -------------------------------------------------------------------------------- /src/config/crosshair.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/crosshair.png 2 | 48 32 32 x2/crosshair.png 3 | -------------------------------------------------------------------------------- /src/config/dnd-move.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/dnd-move.png 2 | 48 32 32 x2/dnd-move.png 3 | -------------------------------------------------------------------------------- /src/config/left-arrow.cursor: -------------------------------------------------------------------------------- 1 | 24 4 16 x1/left-arrow.png 2 | 48 8 32 x2/left-arrow.png 3 | -------------------------------------------------------------------------------- /src/config/left_side.cursor: -------------------------------------------------------------------------------- 1 | 24 4 16 x1/left_side.png 2 | 48 8 32 x2/left_side.png 3 | -------------------------------------------------------------------------------- /src/config/openhand.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/openhand.png 2 | 48 32 32 x2/openhand.png 3 | -------------------------------------------------------------------------------- /src/config/right_ptr.cursor: -------------------------------------------------------------------------------- 1 | 24 28 4 x1/right_ptr.png 2 | 48 56 8 x2/right_ptr.png 3 | -------------------------------------------------------------------------------- /src/config/size_hor.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/size_hor.png 2 | 48 32 32 x2/size_hor.png 3 | -------------------------------------------------------------------------------- /src/config/size_ver.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/size_ver.png 2 | 48 32 32 x2/size_ver.png 3 | -------------------------------------------------------------------------------- /src/config/x-cursor.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/x-cursor.png 2 | 48 32 32 x2/x-cursor.png 3 | -------------------------------------------------------------------------------- /src/config/zoom-out.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/zoom-out.png 2 | 48 32 32 x2/zoom-out.png 3 | -------------------------------------------------------------------------------- /src/config/all-scroll.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/all-scroll.png 2 | 48 32 32 x2/all-scroll.png 3 | -------------------------------------------------------------------------------- /src/config/bottom_side.cursor: -------------------------------------------------------------------------------- 1 | 24 16 28 x1/bottom_side.png 2 | 48 32 56 x2/bottom_side.png 3 | -------------------------------------------------------------------------------- /src/config/col-resize.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/col-resize.png 2 | 48 32 32 x2/col-resize.png 3 | -------------------------------------------------------------------------------- /src/config/context-menu.cursor: -------------------------------------------------------------------------------- 1 | 24 4 4 x1/context-menu.png 2 | 48 8 8 x2/context-menu.png 3 | -------------------------------------------------------------------------------- /src/config/dnd-no-drop.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/dnd-no-drop.png 2 | 48 32 32 x2/dnd-no-drop.png 3 | -------------------------------------------------------------------------------- /src/config/down-arrow.cursor: -------------------------------------------------------------------------------- 1 | 24 16 28 x1/down-arrow.png 2 | 48 32 56 x2/down-arrow.png 3 | -------------------------------------------------------------------------------- /src/config/not-allowed.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/not-allowed.png 2 | 48 32 32 x2/not-allowed.png 3 | -------------------------------------------------------------------------------- /src/config/right-arrow.cursor: -------------------------------------------------------------------------------- 1 | 24 28 16 x1/right-arrow.png 2 | 48 56 32 x2/right-arrow.png 3 | -------------------------------------------------------------------------------- /src/config/right_side.cursor: -------------------------------------------------------------------------------- 1 | 24 28 16 x1/right_side.png 2 | 48 56 32 x2/right_side.png 3 | -------------------------------------------------------------------------------- /src/config/row-resize.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/row-resize.png 2 | 48 32 32 x2/row-resize.png 3 | -------------------------------------------------------------------------------- /src/config/size_bdiag.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/size_bdiag.png 2 | 48 32 32 x2/size_bdiag.png 3 | -------------------------------------------------------------------------------- /src/config/size_fdiag.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/size_fdiag.png 2 | 48 32 32 x2/size_fdiag.png 3 | -------------------------------------------------------------------------------- /src/config/color-picker.cursor: -------------------------------------------------------------------------------- 1 | 24 4 29 x1/color-picker.png 2 | 48 8 58 x2/color-picker.png 3 | -------------------------------------------------------------------------------- /src/config/top_left_corner.cursor: -------------------------------------------------------------------------------- 1 | 24 5 4 x1/top_left_corner.png 2 | 48 10 8 x2/top_left_corner.png 3 | -------------------------------------------------------------------------------- /src/config/vertical-text.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/vertical-text.png 2 | 48 32 32 x2/vertical-text.png 3 | -------------------------------------------------------------------------------- /src/config/wayland-cursor.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/wayland-cursor.png 2 | 48 32 32 x2/wayland-cursor.png 3 | -------------------------------------------------------------------------------- /src/config/top_right_corner.cursor: -------------------------------------------------------------------------------- 1 | 24 26 4 x1/top_right_corner.png 2 | 48 52 8 x2/top_right_corner.png 3 | -------------------------------------------------------------------------------- /src/config/bottom_left_corner.cursor: -------------------------------------------------------------------------------- 1 | 24 4 26 x1/bottom_left_corner.png 2 | 48 8 52 x2/bottom_left_corner.png 3 | -------------------------------------------------------------------------------- /src/config/bottom_right_corner.cursor: -------------------------------------------------------------------------------- 1 | 24 26 26 x1/bottom_right_corner.png 2 | 48 52 52 x2/bottom_right_corner.png 3 | -------------------------------------------------------------------------------- /src/config/wait.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/wait-01.png 30 2 | 24 16 16 x1/wait-02.png 30 3 | 24 16 16 x1/wait-03.png 30 4 | 24 16 16 x1/wait-04.png 30 5 | 24 16 16 x1/wait-05.png 30 6 | 24 16 16 x1/wait-06.png 30 7 | 24 16 16 x1/wait-07.png 30 8 | 24 16 16 x1/wait-08.png 30 9 | 24 16 16 x1/wait-09.png 30 10 | 24 16 16 x1/wait-10.png 30 11 | 24 16 16 x1/wait-11.png 30 12 | 24 16 16 x1/wait-12.png 30 13 | 24 16 16 x1/wait-13.png 30 14 | 24 16 16 x1/wait-14.png 30 15 | 24 16 16 x1/wait-15.png 30 16 | 24 16 16 x1/wait-16.png 30 17 | 24 16 16 x1/wait-17.png 30 18 | 24 16 16 x1/wait-18.png 30 19 | 24 16 16 x1/wait-19.png 30 20 | 24 16 16 x1/wait-20.png 30 21 | 24 16 16 x1/wait-21.png 30 22 | 24 16 16 x1/wait-22.png 30 23 | 24 16 16 x1/wait-23.png 30 24 | 48 32 32 x2/wait-01.png 30 25 | 48 32 32 x2/wait-02.png 30 26 | 48 32 32 x2/wait-03.png 30 27 | 48 32 32 x2/wait-04.png 30 28 | 48 32 32 x2/wait-05.png 30 29 | 48 32 32 x2/wait-06.png 30 30 | 48 32 32 x2/wait-07.png 30 31 | 48 32 32 x2/wait-08.png 30 32 | 48 32 32 x2/wait-09.png 30 33 | 48 32 32 x2/wait-10.png 30 34 | 48 32 32 x2/wait-11.png 30 35 | 48 32 32 x2/wait-12.png 30 36 | 48 32 32 x2/wait-13.png 30 37 | 48 32 32 x2/wait-14.png 30 38 | 48 32 32 x2/wait-15.png 30 39 | 48 32 32 x2/wait-16.png 30 40 | 48 32 32 x2/wait-17.png 30 41 | 48 32 32 x2/wait-18.png 30 42 | 48 32 32 x2/wait-19.png 30 43 | 48 32 32 x2/wait-20.png 30 44 | 48 32 32 x2/wait-21.png 30 45 | 48 32 32 x2/wait-22.png 30 46 | 48 32 32 x2/wait-23.png 30 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Numix Cursor Theme 2 | 3 | A cursor theme based on icons from the [Numix icon theme](https://github.com/numixproject/numix-icon-theme). Code and assets licensed GPL v3+. 4 | 5 | ## Installing 6 | 7 | Download and extract the [latest release](https://github.com/numixproject/numix-cursor-theme/releases/latest) from GitHub. Then copy the `Numix-Cursor` and `Numix-Cursor-Light` folders to `/usr/share/icons`. Set the cursor theme using either your system settings or a terminal as follows: 8 | 9 | ```bash 10 | gsettings set org.gnome.desktop.interface cursor-theme 'Numix-Cursor{-Light}' 11 | ``` 12 | 13 | For system-wide change run the following: 14 | 15 | ```bash 16 | sudo update-alternatives --install /usr/share/icons/default/index.theme x-cursor-theme /usr/share/icons/Numix-Cursor{-Light}/cursor.theme 55 17 | sudo update-alternatives --set x-cursor-theme /usr/share/icons/Numix-Cursor{-Light}/cursor.theme 18 | ``` 19 | 20 | Restart or log out and back in for the changes to take effect. 21 | 22 | ## Building 23 | 24 | To build the themes from source you'll need [Inkscape](https://inkscape.org/) (v1.1 or above) and [xcursorgen](https://manpages.ubuntu.com/manpages/man1/xcursorgen.1.html) installed. Then run the following in a terminal: 25 | 26 | ```bash 27 | git clone https://github.com/numixproject/numix-cursor-theme.git 28 | cd numix-cursor-theme/ 29 | ./build.sh 30 | ``` 31 | 32 | The respective cursor icons are then generated and saved to both the `Numix-Cursor{-Light}` folders. 33 | -------------------------------------------------------------------------------- /src/config/progress.cursor: -------------------------------------------------------------------------------- 1 | 24 4 4 x1/progress-01.png 30 2 | 24 4 4 x1/progress-02.png 30 3 | 24 4 4 x1/progress-03.png 30 4 | 24 4 4 x1/progress-04.png 30 5 | 24 4 4 x1/progress-05.png 30 6 | 24 4 4 x1/progress-06.png 30 7 | 24 4 4 x1/progress-07.png 30 8 | 24 4 4 x1/progress-08.png 30 9 | 24 4 4 x1/progress-09.png 30 10 | 24 4 4 x1/progress-10.png 30 11 | 24 4 4 x1/progress-11.png 30 12 | 24 4 4 x1/progress-12.png 30 13 | 24 4 4 x1/progress-13.png 30 14 | 24 4 4 x1/progress-14.png 30 15 | 24 4 4 x1/progress-15.png 30 16 | 24 4 4 x1/progress-16.png 30 17 | 24 4 4 x1/progress-17.png 30 18 | 24 4 4 x1/progress-18.png 30 19 | 24 4 4 x1/progress-19.png 30 20 | 24 4 4 x1/progress-20.png 30 21 | 24 4 4 x1/progress-21.png 30 22 | 24 4 4 x1/progress-22.png 30 23 | 24 4 4 x1/progress-23.png 30 24 | 24 4 4 x1/progress-24.png 30 25 | 48 8 8 x2/progress-01.png 30 26 | 48 8 8 x2/progress-02.png 30 27 | 48 8 8 x2/progress-03.png 30 28 | 48 8 8 x2/progress-04.png 30 29 | 48 8 8 x2/progress-05.png 30 30 | 48 8 8 x2/progress-06.png 30 31 | 48 8 8 x2/progress-07.png 30 32 | 48 8 8 x2/progress-08.png 30 33 | 48 8 8 x2/progress-09.png 30 34 | 48 8 8 x2/progress-10.png 30 35 | 48 8 8 x2/progress-11.png 30 36 | 48 8 8 x2/progress-12.png 30 37 | 48 8 8 x2/progress-13.png 30 38 | 48 8 8 x2/progress-14.png 30 39 | 48 8 8 x2/progress-15.png 30 40 | 48 8 8 x2/progress-16.png 30 41 | 48 8 8 x2/progress-17.png 30 42 | 48 8 8 x2/progress-18.png 30 43 | 48 8 8 x2/progress-19.png 30 44 | 48 8 8 x2/progress-20.png 30 45 | 48 8 8 x2/progress-21.png 30 46 | 48 8 8 x2/progress-22.png 30 47 | 48 8 8 x2/progress-23.png 30 48 | 48 8 8 x2/progress-24.png 30 49 | -------------------------------------------------------------------------------- /src/dark/svgs/center_ptr.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /src/light/svgs/center_ptr.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /src/dark/svgs/default.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /src/dark/svgs/right_ptr.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /src/light/svgs/default.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /src/light/svgs/right_ptr.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /src/dark/svgs/not-allowed.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 49 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /src/dark/svgs/wait.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/not-allowed.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 49 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /src/light/svgs/wait.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-19.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-19.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-07.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-07.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-13.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-13.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/top_tee.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 60 | 61 | -------------------------------------------------------------------------------- /src/dark/svgs/top_tee.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 60 | 61 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-22.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/bottom_tee.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 60 | 61 | -------------------------------------------------------------------------------- /src/dark/svgs/bottom_tee.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 60 | 61 | -------------------------------------------------------------------------------- /src/light/svgs/wait-22.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-04.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-16.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-04.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-16.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-10.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-21.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-23.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-10.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-21.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-23.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-05.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-15.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-17.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-05.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-15.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-17.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-09.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-09.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-20.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-24.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-20.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-24.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-18.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-18.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-06.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-14.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-06.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-14.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-08.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/wait-12.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-08.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/light/svgs/wait-12.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/dark/svgs/text.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 50 | 53 | 54 | 57 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/light/svgs/text.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 50 | 53 | 54 | 57 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/dark/svgs/copy.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 50 | 53 | 54 | 59 | 64 | 65 | -------------------------------------------------------------------------------- /src/dark/svgs/left-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 62 | 67 | 68 | -------------------------------------------------------------------------------- /src/dark/svgs/right_side.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 61 | 66 | 67 | -------------------------------------------------------------------------------- /src/dark/svgs/top_side.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 61 | 66 | 67 | -------------------------------------------------------------------------------- /src/light/svgs/copy.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 50 | 53 | 54 | 59 | 64 | 65 | -------------------------------------------------------------------------------- /src/light/svgs/left-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 62 | 67 | 68 | -------------------------------------------------------------------------------- /src/light/svgs/right_side.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 61 | 66 | 67 | -------------------------------------------------------------------------------- /src/light/svgs/top_side.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 61 | 66 | 67 | -------------------------------------------------------------------------------- /src/dark/svgs/bottom_side.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 61 | 66 | 67 | -------------------------------------------------------------------------------- /src/dark/svgs/left_side.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 61 | 66 | 67 | -------------------------------------------------------------------------------- /src/light/svgs/bottom_side.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 61 | 66 | 67 | -------------------------------------------------------------------------------- /src/light/svgs/left_side.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 61 | 66 | 67 | -------------------------------------------------------------------------------- /src/dark/svgs/top_left_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 61 | 66 | 67 | -------------------------------------------------------------------------------- /src/light/svgs/top_left_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 61 | 66 | 67 | -------------------------------------------------------------------------------- /src/dark/svgs/bottom_left_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 61 | 66 | 67 | -------------------------------------------------------------------------------- /src/dark/svgs/right-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 63 | 68 | 69 | -------------------------------------------------------------------------------- /src/dark/svgs/top_right_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 61 | 66 | 67 | -------------------------------------------------------------------------------- /src/dark/svgs/up-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 63 | 68 | 69 | -------------------------------------------------------------------------------- /src/light/svgs/bottom_left_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 61 | 66 | 67 | -------------------------------------------------------------------------------- /src/light/svgs/right-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 63 | 68 | 69 | -------------------------------------------------------------------------------- /src/light/svgs/top_right_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 61 | 66 | 67 | -------------------------------------------------------------------------------- /src/light/svgs/up-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 63 | 68 | 69 | -------------------------------------------------------------------------------- /src/dark/svgs/bottom_right_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 61 | 66 | 67 | -------------------------------------------------------------------------------- /src/light/svgs/bottom_right_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 61 | 66 | 67 | -------------------------------------------------------------------------------- /src/dark/svgs/alias.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 49 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /src/light/svgs/alias.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 30 | 42 | 44 | 49 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /src/dark/svgs/down-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 63 | 68 | 69 | -------------------------------------------------------------------------------- /src/light/svgs/down-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 63 | 68 | 69 | -------------------------------------------------------------------------------- /src/dark/svgs/vertical-text.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | 22 | image/svg+xml 23 | 25 | 26 | 27 | 28 | 29 | 31 | 51 | 54 | 55 | 59 | 65 | 66 | 67 | --------------------------------------------------------------------------------