├── .gitignore ├── AUTHORS ├── LICENSE ├── Makefile ├── README.md ├── src ├── _svgo.yml ├── config │ ├── alias.cursor │ ├── all-scroll.cursor │ ├── bottom_left_corner.cursor │ ├── bottom_right_corner.cursor │ ├── bottom_side.cursor │ ├── bottom_tee.cursor │ ├── cell.cursor │ ├── center_ptr.cursor │ ├── col-resize.cursor │ ├── color-picker.cursor │ ├── context-menu.cursor │ ├── copy.cursor │ ├── crosshair.cursor │ ├── default.cursor │ ├── dnd-ask.cursor │ ├── dnd-link.cursor │ ├── dnd-move.cursor │ ├── dnd-no-drop.cursor │ ├── dotbox.cursor │ ├── down-arrow.cursor │ ├── draft.cursor │ ├── fleur.cursor │ ├── help.cursor │ ├── left-arrow.cursor │ ├── left_side.cursor │ ├── left_tee.cursor │ ├── no-drop.cursor │ ├── not-allowed.cursor │ ├── openhand.cursor │ ├── pencil.cursor │ ├── pirate.cursor │ ├── pointer.cursor │ ├── progress.cursor │ ├── right-arrow.cursor │ ├── right_ptr.cursor │ ├── right_side.cursor │ ├── right_tee.cursor │ ├── row-resize.cursor │ ├── size_bdiag.cursor │ ├── size_fdiag.cursor │ ├── size_hor.cursor │ ├── size_ver.cursor │ ├── text.cursor │ ├── top_left_corner.cursor │ ├── top_right_corner.cursor │ ├── top_side.cursor │ ├── top_tee.cursor │ ├── up-arrow.cursor │ ├── vertical-text.cursor │ ├── wait.cursor │ ├── wayland-cursor.cursor │ ├── x-cursor.cursor │ ├── zoom-in.cursor │ └── zoom-out.cursor ├── cursorList ├── material_cursors │ ├── alias.svg │ ├── alias_24.svg │ ├── all-scroll.svg │ ├── all-scroll_24.svg │ ├── bottom_left_corner.svg │ ├── bottom_left_corner_24.svg │ ├── bottom_right_corner.svg │ ├── bottom_right_corner_24.svg │ ├── bottom_side.svg │ ├── bottom_side_24.svg │ ├── bottom_tee.svg │ ├── bottom_tee_24.svg │ ├── cell.svg │ ├── cell_24.svg │ ├── center_ptr.svg │ ├── center_ptr_24.svg │ ├── col-resize.svg │ ├── col-resize_24.svg │ ├── color-picker.svg │ ├── color-picker_24.svg │ ├── context-menu.svg │ ├── context-menu_24.svg │ ├── copy.svg │ ├── copy_24.svg │ ├── crosshair.svg │ ├── crosshair_24.svg │ ├── cursor.theme │ ├── default.svg │ ├── default_24.svg │ ├── dnd-ask.svg │ ├── dnd-ask_24.svg │ ├── dnd-link.svg │ ├── dnd-link_24.svg │ ├── dnd-move.svg │ ├── dnd-move_24.svg │ ├── dnd-no-drop.svg │ ├── dnd-no-drop_24.svg │ ├── dotbox.svg │ ├── dotbox_24.svg │ ├── down-arrow.svg │ ├── down-arrow_24.svg │ ├── draft.svg │ ├── draft_24.svg │ ├── fleur.svg │ ├── fleur_24.svg │ ├── help.svg │ ├── help_24.svg │ ├── index.theme │ ├── left-arrow.svg │ ├── left-arrow_24.svg │ ├── left_side.svg │ ├── left_side_24.svg │ ├── left_tee.svg │ ├── left_tee_24.svg │ ├── no-drop.svg │ ├── no-drop_24.svg │ ├── not-allowed.svg │ ├── not-allowed_24.svg │ ├── openhand.svg │ ├── openhand_24.svg │ ├── pencil.svg │ ├── pencil_24.svg │ ├── pirate.svg │ ├── pirate_24.svg │ ├── pointer.svg │ ├── pointer_24.svg │ ├── progress-01.svg │ ├── progress-01_24.svg │ ├── progress-02.svg │ ├── progress-02_24.svg │ ├── progress-03.svg │ ├── progress-03_24.svg │ ├── progress-04.svg │ ├── progress-04_24.svg │ ├── progress-05.svg │ ├── progress-05_24.svg │ ├── progress-06.svg │ ├── progress-06_24.svg │ ├── progress-07.svg │ ├── progress-07_24.svg │ ├── progress-08.svg │ ├── progress-08_24.svg │ ├── progress-09.svg │ ├── progress-09_24.svg │ ├── progress-10.svg │ ├── progress-10_24.svg │ ├── progress-11.svg │ ├── progress-11_24.svg │ ├── progress-12.svg │ ├── progress-12_24.svg │ ├── progress-13.svg │ ├── progress-13_24.svg │ ├── progress-14.svg │ ├── progress-14_24.svg │ ├── progress-15.svg │ ├── progress-15_24.svg │ ├── progress-16.svg │ ├── progress-16_24.svg │ ├── progress-17.svg │ ├── progress-17_24.svg │ ├── progress-18.svg │ ├── progress-18_24.svg │ ├── progress-19.svg │ ├── progress-19_24.svg │ ├── progress-20.svg │ ├── progress-20_24.svg │ ├── progress-21.svg │ ├── progress-21_24.svg │ ├── progress-22.svg │ ├── progress-22_24.svg │ ├── progress-23.svg │ ├── progress-23_24.svg │ ├── progress-24.svg │ ├── progress-24_24.svg │ ├── right-arrow.svg │ ├── right-arrow_24.svg │ ├── right_ptr.svg │ ├── right_ptr_24.svg │ ├── right_side.svg │ ├── right_side_24.svg │ ├── right_tee.svg │ ├── right_tee_24.svg │ ├── row-resize.svg │ ├── row-resize_24.svg │ ├── size_bdiag.svg │ ├── size_bdiag_24.svg │ ├── size_fdiag.svg │ ├── size_fdiag_24.svg │ ├── size_hor.svg │ ├── size_hor_24.svg │ ├── size_ver.svg │ ├── size_ver_24.svg │ ├── text.svg │ ├── text_24.svg │ ├── top_left_corner.svg │ ├── top_left_corner_24.svg │ ├── top_right_corner.svg │ ├── top_right_corner_24.svg │ ├── top_side.svg │ ├── top_side_24.svg │ ├── top_tee.svg │ ├── top_tee_24.svg │ ├── up-arrow.svg │ ├── up-arrow_24.svg │ ├── vertical-text.svg │ ├── vertical-text_24.svg │ ├── wait-01.svg │ ├── wait-01_24.svg │ ├── wait-02.svg │ ├── wait-02_24.svg │ ├── wait-03.svg │ ├── wait-03_24.svg │ ├── wait-04.svg │ ├── wait-04_24.svg │ ├── wait-05.svg │ ├── wait-05_24.svg │ ├── wait-06.svg │ ├── wait-06_24.svg │ ├── wait-07.svg │ ├── wait-07_24.svg │ ├── wait-08.svg │ ├── wait-08_24.svg │ ├── wait-09.svg │ ├── wait-09_24.svg │ ├── wait-10.svg │ ├── wait-10_24.svg │ ├── wait-11.svg │ ├── wait-11_24.svg │ ├── wait-12.svg │ ├── wait-12_24.svg │ ├── wait-13.svg │ ├── wait-13_24.svg │ ├── wait-14.svg │ ├── wait-14_24.svg │ ├── wait-15.svg │ ├── wait-15_24.svg │ ├── wait-16.svg │ ├── wait-16_24.svg │ ├── wait-17.svg │ ├── wait-17_24.svg │ ├── wait-18.svg │ ├── wait-18_24.svg │ ├── wait-19.svg │ ├── wait-19_24.svg │ ├── wait-20.svg │ ├── wait-20_24.svg │ ├── wait-21.svg │ ├── wait-21_24.svg │ ├── wait-22.svg │ ├── wait-22_24.svg │ ├── wait-23.svg │ ├── wait-23_24.svg │ ├── wait-24.svg │ ├── wait-24_24.svg │ ├── wayland-cursor.svg │ ├── wayland-cursor_24.svg │ ├── x-cursor.svg │ ├── x-cursor_24.svg │ ├── zoom-in.svg │ ├── zoom-in_24.svg │ ├── zoom-out.svg │ └── zoom-out_24.svg ├── material_dark_cursors │ ├── alias.svg │ ├── alias_24.svg │ ├── all-scroll.svg │ ├── all-scroll_24.svg │ ├── bottom_left_corner.svg │ ├── bottom_left_corner_24.svg │ ├── bottom_right_corner.svg │ ├── bottom_right_corner_24.svg │ ├── bottom_side.svg │ ├── bottom_side_24.svg │ ├── bottom_tee.svg │ ├── bottom_tee_24.svg │ ├── cell.svg │ ├── cell_24.svg │ ├── center_ptr.svg │ ├── center_ptr_24.svg │ ├── col-resize.svg │ ├── col-resize_24.svg │ ├── color-picker.svg │ ├── color-picker_24.svg │ ├── context-menu.svg │ ├── context-menu_24.svg │ ├── copy.svg │ ├── copy_24.svg │ ├── crosshair.svg │ ├── crosshair_24.svg │ ├── cursor.theme │ ├── default.svg │ ├── default_24.svg │ ├── dnd-ask.svg │ ├── dnd-ask_24.svg │ ├── dnd-link.svg │ ├── dnd-link_24.svg │ ├── dnd-move.svg │ ├── dnd-move_24.svg │ ├── dnd-no-drop.svg │ ├── dnd-no-drop_24.svg │ ├── dotbox.svg │ ├── dotbox_24.svg │ ├── down-arrow.svg │ ├── down-arrow_24.svg │ ├── draft.svg │ ├── draft_24.svg │ ├── fleur.svg │ ├── fleur_24.svg │ ├── help.svg │ ├── help_24.svg │ ├── index.theme │ ├── left-arrow.svg │ ├── left-arrow_24.svg │ ├── left_side.svg │ ├── left_side_24.svg │ ├── left_tee.svg │ ├── left_tee_24.svg │ ├── no-drop.svg │ ├── no-drop_24.svg │ ├── not-allowed.svg │ ├── not-allowed_24.svg │ ├── openhand.svg │ ├── openhand_24.svg │ ├── pencil.svg │ ├── pencil_24.svg │ ├── pirate.svg │ ├── pirate_24.svg │ ├── pointer.svg │ ├── pointer_24.svg │ ├── progress-01.svg │ ├── progress-01_24.svg │ ├── progress-02.svg │ ├── progress-02_24.svg │ ├── progress-03.svg │ ├── progress-03_24.svg │ ├── progress-04.svg │ ├── progress-04_24.svg │ ├── progress-05.svg │ ├── progress-05_24.svg │ ├── progress-06.svg │ ├── progress-06_24.svg │ ├── progress-07.svg │ ├── progress-07_24.svg │ ├── progress-08.svg │ ├── progress-08_24.svg │ ├── progress-09.svg │ ├── progress-09_24.svg │ ├── progress-10.svg │ ├── progress-10_24.svg │ ├── progress-11.svg │ ├── progress-11_24.svg │ ├── progress-12.svg │ ├── progress-12_24.svg │ ├── progress-13.svg │ ├── progress-13_24.svg │ ├── progress-14.svg │ ├── progress-14_24.svg │ ├── progress-15.svg │ ├── progress-15_24.svg │ ├── progress-16.svg │ ├── progress-16_24.svg │ ├── progress-17.svg │ ├── progress-17_24.svg │ ├── progress-18.svg │ ├── progress-18_24.svg │ ├── progress-19.svg │ ├── progress-19_24.svg │ ├── progress-20.svg │ ├── progress-20_24.svg │ ├── progress-21.svg │ ├── progress-21_24.svg │ ├── progress-22.svg │ ├── progress-22_24.svg │ ├── progress-23.svg │ ├── progress-23_24.svg │ ├── progress-24.svg │ ├── progress-24_24.svg │ ├── right-arrow.svg │ ├── right-arrow_24.svg │ ├── right_ptr.svg │ ├── right_ptr_24.svg │ ├── right_side.svg │ ├── right_side_24.svg │ ├── right_tee.svg │ ├── right_tee_24.svg │ ├── row-resize.svg │ ├── row-resize_24.svg │ ├── size_bdiag.svg │ ├── size_bdiag_24.svg │ ├── size_fdiag.svg │ ├── size_fdiag_24.svg │ ├── size_hor.svg │ ├── size_hor_24.svg │ ├── size_ver.svg │ ├── size_ver_24.svg │ ├── text.svg │ ├── text_24.svg │ ├── top_left_corner.svg │ ├── top_left_corner_24.svg │ ├── top_right_corner.svg │ ├── top_right_corner_24.svg │ ├── top_side.svg │ ├── top_side_24.svg │ ├── top_tee.svg │ ├── top_tee_24.svg │ ├── up-arrow.svg │ ├── up-arrow_24.svg │ ├── vertical-text.svg │ ├── vertical-text_24.svg │ ├── wait-01.svg │ ├── wait-01_24.svg │ ├── wait-02.svg │ ├── wait-02_24.svg │ ├── wait-03.svg │ ├── wait-03_24.svg │ ├── wait-04.svg │ ├── wait-04_24.svg │ ├── wait-05.svg │ ├── wait-05_24.svg │ ├── wait-06.svg │ ├── wait-06_24.svg │ ├── wait-07.svg │ ├── wait-07_24.svg │ ├── wait-08.svg │ ├── wait-08_24.svg │ ├── wait-09.svg │ ├── wait-09_24.svg │ ├── wait-10.svg │ ├── wait-10_24.svg │ ├── wait-11.svg │ ├── wait-11_24.svg │ ├── wait-12.svg │ ├── wait-12_24.svg │ ├── wait-13.svg │ ├── wait-13_24.svg │ ├── wait-14.svg │ ├── wait-14_24.svg │ ├── wait-15.svg │ ├── wait-15_24.svg │ ├── wait-16.svg │ ├── wait-16_24.svg │ ├── wait-17.svg │ ├── wait-17_24.svg │ ├── wait-18.svg │ ├── wait-18_24.svg │ ├── wait-19.svg │ ├── wait-19_24.svg │ ├── wait-20.svg │ ├── wait-20_24.svg │ ├── wait-21.svg │ ├── wait-21_24.svg │ ├── wait-22.svg │ ├── wait-22_24.svg │ ├── wait-23.svg │ ├── wait-23_24.svg │ ├── wait-24.svg │ ├── wait-24_24.svg │ ├── wayland-cursor.svg │ ├── wayland-cursor_24.svg │ ├── x-cursor.svg │ ├── x-cursor_24.svg │ ├── zoom-in.svg │ ├── zoom-in_24.svg │ ├── zoom-out.svg │ └── zoom-out_24.svg └── material_light_cursors │ ├── alias.svg │ ├── alias_24.svg │ ├── all-scroll.svg │ ├── all-scroll_24.svg │ ├── bottom_left_corner.svg │ ├── bottom_left_corner_24.svg │ ├── bottom_right_corner.svg │ ├── bottom_right_corner_24.svg │ ├── bottom_side.svg │ ├── bottom_side_24.svg │ ├── bottom_tee.svg │ ├── bottom_tee_24.svg │ ├── cell.svg │ ├── cell_24.svg │ ├── center_ptr.svg │ ├── center_ptr_24.svg │ ├── col-resize.svg │ ├── col-resize_24.svg │ ├── color-picker.svg │ ├── color-picker_24.svg │ ├── context-menu.svg │ ├── context-menu_24.svg │ ├── copy.svg │ ├── copy_24.svg │ ├── crosshair.svg │ ├── crosshair_24.svg │ ├── cursor.theme │ ├── default.svg │ ├── default_24.svg │ ├── dnd-ask.svg │ ├── dnd-ask_24.svg │ ├── dnd-link.svg │ ├── dnd-link_24.svg │ ├── dnd-move.svg │ ├── dnd-move_24.svg │ ├── dnd-no-drop.svg │ ├── dnd-no-drop_24.svg │ ├── dotbox.svg │ ├── dotbox_24.svg │ ├── down-arrow.svg │ ├── down-arrow_24.svg │ ├── draft.svg │ ├── draft_24.svg │ ├── fleur.svg │ ├── fleur_24.svg │ ├── help.svg │ ├── help_24.svg │ ├── index.theme │ ├── left-arrow.svg │ ├── left-arrow_24.svg │ ├── left_side.svg │ ├── left_side_24.svg │ ├── left_tee.svg │ ├── left_tee_24.svg │ ├── no-drop.svg │ ├── no-drop_24.svg │ ├── not-allowed.svg │ ├── not-allowed_24.svg │ ├── openhand.svg │ ├── openhand_24.svg │ ├── pencil.svg │ ├── pencil_24.svg │ ├── pirate.svg │ ├── pirate_24.svg │ ├── pointer.svg │ ├── pointer_24.svg │ ├── progress-01.svg │ ├── progress-01_24.svg │ ├── progress-02.svg │ ├── progress-02_24.svg │ ├── progress-03.svg │ ├── progress-03_24.svg │ ├── progress-04.svg │ ├── progress-04_24.svg │ ├── progress-05.svg │ ├── progress-05_24.svg │ ├── progress-06.svg │ ├── progress-06_24.svg │ ├── progress-07.svg │ ├── progress-07_24.svg │ ├── progress-08.svg │ ├── progress-08_24.svg │ ├── progress-09.svg │ ├── progress-09_24.svg │ ├── progress-10.svg │ ├── progress-10_24.svg │ ├── progress-11.svg │ ├── progress-11_24.svg │ ├── progress-12.svg │ ├── progress-12_24.svg │ ├── progress-13.svg │ ├── progress-13_24.svg │ ├── progress-14.svg │ ├── progress-14_24.svg │ ├── progress-15.svg │ ├── progress-15_24.svg │ ├── progress-16.svg │ ├── progress-16_24.svg │ ├── progress-17.svg │ ├── progress-17_24.svg │ ├── progress-18.svg │ ├── progress-18_24.svg │ ├── progress-19.svg │ ├── progress-19_24.svg │ ├── progress-20.svg │ ├── progress-20_24.svg │ ├── progress-21.svg │ ├── progress-21_24.svg │ ├── progress-22.svg │ ├── progress-22_24.svg │ ├── progress-23.svg │ ├── progress-23_24.svg │ ├── progress-24.svg │ ├── progress-24_24.svg │ ├── right-arrow.svg │ ├── right-arrow_24.svg │ ├── right_ptr.svg │ ├── right_ptr_24.svg │ ├── right_side.svg │ ├── right_side_24.svg │ ├── right_tee.svg │ ├── right_tee_24.svg │ ├── row-resize.svg │ ├── row-resize_24.svg │ ├── size_bdiag.svg │ ├── size_bdiag_24.svg │ ├── size_fdiag.svg │ ├── size_fdiag_24.svg │ ├── size_hor.svg │ ├── size_hor_24.svg │ ├── size_ver.svg │ ├── size_ver_24.svg │ ├── text.svg │ ├── text_24.svg │ ├── top_left_corner.svg │ ├── top_left_corner_24.svg │ ├── top_right_corner.svg │ ├── top_right_corner_24.svg │ ├── top_side.svg │ ├── top_side_24.svg │ ├── top_tee.svg │ ├── top_tee_24.svg │ ├── up-arrow.svg │ ├── up-arrow_24.svg │ ├── vertical-text.svg │ ├── vertical-text_24.svg │ ├── wait-01.svg │ ├── wait-01_24.svg │ ├── wait-02.svg │ ├── wait-02_24.svg │ ├── wait-03.svg │ ├── wait-03_24.svg │ ├── wait-04.svg │ ├── wait-04_24.svg │ ├── wait-05.svg │ ├── wait-05_24.svg │ ├── wait-06.svg │ ├── wait-06_24.svg │ ├── wait-07.svg │ ├── wait-07_24.svg │ ├── wait-08.svg │ ├── wait-08_24.svg │ ├── wait-09.svg │ ├── wait-09_24.svg │ ├── wait-10.svg │ ├── wait-10_24.svg │ ├── wait-11.svg │ ├── wait-11_24.svg │ ├── wait-12.svg │ ├── wait-12_24.svg │ ├── wait-13.svg │ ├── wait-13_24.svg │ ├── wait-14.svg │ ├── wait-14_24.svg │ ├── wait-15.svg │ ├── wait-15_24.svg │ ├── wait-16.svg │ ├── wait-16_24.svg │ ├── wait-17.svg │ ├── wait-17_24.svg │ ├── wait-18.svg │ ├── wait-18_24.svg │ ├── wait-19.svg │ ├── wait-19_24.svg │ ├── wait-20.svg │ ├── wait-20_24.svg │ ├── wait-21.svg │ ├── wait-21_24.svg │ ├── wait-22.svg │ ├── wait-22_24.svg │ ├── wait-23.svg │ ├── wait-23_24.svg │ ├── wait-24.svg │ ├── wait-24_24.svg │ ├── wayland-cursor.svg │ ├── wayland-cursor_24.svg │ ├── x-cursor.svg │ ├── x-cursor_24.svg │ ├── zoom-in.svg │ ├── zoom-in_24.svg │ ├── zoom-out.svg │ └── zoom-out_24.svg └── windows ├── AppStarting.ani ├── Arrow.cur ├── Cross.cur ├── Hand.cur ├── Handwriting.cur ├── Help.cur ├── IBeam.cur ├── Install.inf ├── NO.cur ├── README.md ├── SizeAll.cur ├── SizeNESW.cur ├── SizeNS.cur ├── SizeNWSE.cur ├── SizeWE.cur ├── UpArrow.cur ├── Wait.ani ├── progress ├── progress-01.cur ├── progress-02.cur ├── progress-03.cur ├── progress-04.cur ├── progress-05.cur ├── progress-06.cur ├── progress-07.cur ├── progress-08.cur ├── progress-09.cur ├── progress-10.cur ├── progress-11.cur ├── progress-12.cur ├── progress-13.cur ├── progress-14.cur ├── progress-15.cur ├── progress-16.cur ├── progress-17.cur ├── progress-18.cur ├── progress-19.cur ├── progress-20.cur ├── progress-21.cur ├── progress-22.cur ├── progress-23.cur └── progress-24.cur └── wait ├── wait-01.cur ├── wait-02.cur ├── wait-03.cur ├── wait-04.cur ├── wait-05.cur ├── wait-06.cur ├── wait-07.cur ├── wait-08.cur ├── wait-09.cur ├── wait-10.cur ├── wait-11.cur ├── wait-12.cur ├── wait-13.cur ├── wait-14.cur ├── wait-15.cur ├── wait-16.cur ├── wait-17.cur ├── wait-18.cur ├── wait-19.cur ├── wait-20.cur ├── wait-21.cur ├── wait-22.cur ├── wait-23.cur └── wait-24.cur /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | *.tar.gz 4 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/README.md -------------------------------------------------------------------------------- /src/_svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/_svgo.yml -------------------------------------------------------------------------------- /src/config/alias.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/alias.cursor -------------------------------------------------------------------------------- /src/config/all-scroll.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/all-scroll.cursor -------------------------------------------------------------------------------- /src/config/bottom_left_corner.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/bottom_left_corner.cursor -------------------------------------------------------------------------------- /src/config/bottom_right_corner.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/bottom_right_corner.cursor -------------------------------------------------------------------------------- /src/config/bottom_side.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/bottom_side.cursor -------------------------------------------------------------------------------- /src/config/bottom_tee.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/bottom_tee.cursor -------------------------------------------------------------------------------- /src/config/cell.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/cell.cursor -------------------------------------------------------------------------------- /src/config/center_ptr.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/center_ptr.cursor -------------------------------------------------------------------------------- /src/config/col-resize.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/col-resize.cursor -------------------------------------------------------------------------------- /src/config/color-picker.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/color-picker.cursor -------------------------------------------------------------------------------- /src/config/context-menu.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/context-menu.cursor -------------------------------------------------------------------------------- /src/config/copy.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/copy.cursor -------------------------------------------------------------------------------- /src/config/crosshair.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/crosshair.cursor -------------------------------------------------------------------------------- /src/config/default.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/default.cursor -------------------------------------------------------------------------------- /src/config/dnd-ask.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/dnd-ask.cursor -------------------------------------------------------------------------------- /src/config/dnd-link.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/dnd-link.cursor -------------------------------------------------------------------------------- /src/config/dnd-move.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/dnd-move.cursor -------------------------------------------------------------------------------- /src/config/dnd-no-drop.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/dnd-no-drop.cursor -------------------------------------------------------------------------------- /src/config/dotbox.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/dotbox.cursor -------------------------------------------------------------------------------- /src/config/down-arrow.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/down-arrow.cursor -------------------------------------------------------------------------------- /src/config/draft.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/draft.cursor -------------------------------------------------------------------------------- /src/config/fleur.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/fleur.cursor -------------------------------------------------------------------------------- /src/config/help.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/help.cursor -------------------------------------------------------------------------------- /src/config/left-arrow.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/left-arrow.cursor -------------------------------------------------------------------------------- /src/config/left_side.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/left_side.cursor -------------------------------------------------------------------------------- /src/config/left_tee.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/left_tee.cursor -------------------------------------------------------------------------------- /src/config/no-drop.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/no-drop.cursor -------------------------------------------------------------------------------- /src/config/not-allowed.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/not-allowed.cursor -------------------------------------------------------------------------------- /src/config/openhand.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/openhand.cursor -------------------------------------------------------------------------------- /src/config/pencil.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/pencil.cursor -------------------------------------------------------------------------------- /src/config/pirate.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/pirate.cursor -------------------------------------------------------------------------------- /src/config/pointer.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/pointer.cursor -------------------------------------------------------------------------------- /src/config/progress.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/progress.cursor -------------------------------------------------------------------------------- /src/config/right-arrow.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/right-arrow.cursor -------------------------------------------------------------------------------- /src/config/right_ptr.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/right_ptr.cursor -------------------------------------------------------------------------------- /src/config/right_side.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/right_side.cursor -------------------------------------------------------------------------------- /src/config/right_tee.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/right_tee.cursor -------------------------------------------------------------------------------- /src/config/row-resize.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/row-resize.cursor -------------------------------------------------------------------------------- /src/config/size_bdiag.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/size_bdiag.cursor -------------------------------------------------------------------------------- /src/config/size_fdiag.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/size_fdiag.cursor -------------------------------------------------------------------------------- /src/config/size_hor.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/size_hor.cursor -------------------------------------------------------------------------------- /src/config/size_ver.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/size_ver.cursor -------------------------------------------------------------------------------- /src/config/text.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/text.cursor -------------------------------------------------------------------------------- /src/config/top_left_corner.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/top_left_corner.cursor -------------------------------------------------------------------------------- /src/config/top_right_corner.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/top_right_corner.cursor -------------------------------------------------------------------------------- /src/config/top_side.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/top_side.cursor -------------------------------------------------------------------------------- /src/config/top_tee.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/top_tee.cursor -------------------------------------------------------------------------------- /src/config/up-arrow.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/up-arrow.cursor -------------------------------------------------------------------------------- /src/config/vertical-text.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/vertical-text.cursor -------------------------------------------------------------------------------- /src/config/wait.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/wait.cursor -------------------------------------------------------------------------------- /src/config/wayland-cursor.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/wayland-cursor.cursor -------------------------------------------------------------------------------- /src/config/x-cursor.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/x-cursor.cursor -------------------------------------------------------------------------------- /src/config/zoom-in.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/zoom-in.cursor -------------------------------------------------------------------------------- /src/config/zoom-out.cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/config/zoom-out.cursor -------------------------------------------------------------------------------- /src/cursorList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/cursorList -------------------------------------------------------------------------------- /src/material_cursors/alias.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/alias.svg -------------------------------------------------------------------------------- /src/material_cursors/alias_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/alias_24.svg -------------------------------------------------------------------------------- /src/material_cursors/all-scroll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/all-scroll.svg -------------------------------------------------------------------------------- /src/material_cursors/all-scroll_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/all-scroll_24.svg -------------------------------------------------------------------------------- /src/material_cursors/bottom_left_corner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/bottom_left_corner.svg -------------------------------------------------------------------------------- /src/material_cursors/bottom_left_corner_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/bottom_left_corner_24.svg -------------------------------------------------------------------------------- /src/material_cursors/bottom_right_corner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/bottom_right_corner.svg -------------------------------------------------------------------------------- /src/material_cursors/bottom_right_corner_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/bottom_right_corner_24.svg -------------------------------------------------------------------------------- /src/material_cursors/bottom_side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/bottom_side.svg -------------------------------------------------------------------------------- /src/material_cursors/bottom_side_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/bottom_side_24.svg -------------------------------------------------------------------------------- /src/material_cursors/bottom_tee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/bottom_tee.svg -------------------------------------------------------------------------------- /src/material_cursors/bottom_tee_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/bottom_tee_24.svg -------------------------------------------------------------------------------- /src/material_cursors/cell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/cell.svg -------------------------------------------------------------------------------- /src/material_cursors/cell_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/cell_24.svg -------------------------------------------------------------------------------- /src/material_cursors/center_ptr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/center_ptr.svg -------------------------------------------------------------------------------- /src/material_cursors/center_ptr_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/center_ptr_24.svg -------------------------------------------------------------------------------- /src/material_cursors/col-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/col-resize.svg -------------------------------------------------------------------------------- /src/material_cursors/col-resize_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/col-resize_24.svg -------------------------------------------------------------------------------- /src/material_cursors/color-picker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/color-picker.svg -------------------------------------------------------------------------------- /src/material_cursors/color-picker_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/color-picker_24.svg -------------------------------------------------------------------------------- /src/material_cursors/context-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/context-menu.svg -------------------------------------------------------------------------------- /src/material_cursors/context-menu_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/context-menu_24.svg -------------------------------------------------------------------------------- /src/material_cursors/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/copy.svg -------------------------------------------------------------------------------- /src/material_cursors/copy_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/copy_24.svg -------------------------------------------------------------------------------- /src/material_cursors/crosshair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/crosshair.svg -------------------------------------------------------------------------------- /src/material_cursors/crosshair_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/crosshair_24.svg -------------------------------------------------------------------------------- /src/material_cursors/cursor.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Inherits=material_cursors 3 | -------------------------------------------------------------------------------- /src/material_cursors/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/default.svg -------------------------------------------------------------------------------- /src/material_cursors/default_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/default_24.svg -------------------------------------------------------------------------------- /src/material_cursors/dnd-ask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/dnd-ask.svg -------------------------------------------------------------------------------- /src/material_cursors/dnd-ask_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/dnd-ask_24.svg -------------------------------------------------------------------------------- /src/material_cursors/dnd-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/dnd-link.svg -------------------------------------------------------------------------------- /src/material_cursors/dnd-link_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/dnd-link_24.svg -------------------------------------------------------------------------------- /src/material_cursors/dnd-move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/dnd-move.svg -------------------------------------------------------------------------------- /src/material_cursors/dnd-move_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/dnd-move_24.svg -------------------------------------------------------------------------------- /src/material_cursors/dnd-no-drop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/dnd-no-drop.svg -------------------------------------------------------------------------------- /src/material_cursors/dnd-no-drop_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/dnd-no-drop_24.svg -------------------------------------------------------------------------------- /src/material_cursors/dotbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/dotbox.svg -------------------------------------------------------------------------------- /src/material_cursors/dotbox_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/dotbox_24.svg -------------------------------------------------------------------------------- /src/material_cursors/down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/down-arrow.svg -------------------------------------------------------------------------------- /src/material_cursors/down-arrow_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/down-arrow_24.svg -------------------------------------------------------------------------------- /src/material_cursors/draft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/draft.svg -------------------------------------------------------------------------------- /src/material_cursors/draft_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/draft_24.svg -------------------------------------------------------------------------------- /src/material_cursors/fleur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/fleur.svg -------------------------------------------------------------------------------- /src/material_cursors/fleur_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/fleur_24.svg -------------------------------------------------------------------------------- /src/material_cursors/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/help.svg -------------------------------------------------------------------------------- /src/material_cursors/help_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/help_24.svg -------------------------------------------------------------------------------- /src/material_cursors/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/index.theme -------------------------------------------------------------------------------- /src/material_cursors/left-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/left-arrow.svg -------------------------------------------------------------------------------- /src/material_cursors/left-arrow_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/left-arrow_24.svg -------------------------------------------------------------------------------- /src/material_cursors/left_side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/left_side.svg -------------------------------------------------------------------------------- /src/material_cursors/left_side_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/left_side_24.svg -------------------------------------------------------------------------------- /src/material_cursors/left_tee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/left_tee.svg -------------------------------------------------------------------------------- /src/material_cursors/left_tee_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/left_tee_24.svg -------------------------------------------------------------------------------- /src/material_cursors/no-drop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/no-drop.svg -------------------------------------------------------------------------------- /src/material_cursors/no-drop_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/no-drop_24.svg -------------------------------------------------------------------------------- /src/material_cursors/not-allowed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/not-allowed.svg -------------------------------------------------------------------------------- /src/material_cursors/not-allowed_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/not-allowed_24.svg -------------------------------------------------------------------------------- /src/material_cursors/openhand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/openhand.svg -------------------------------------------------------------------------------- /src/material_cursors/openhand_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/openhand_24.svg -------------------------------------------------------------------------------- /src/material_cursors/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/pencil.svg -------------------------------------------------------------------------------- /src/material_cursors/pencil_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/pencil_24.svg -------------------------------------------------------------------------------- /src/material_cursors/pirate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/pirate.svg -------------------------------------------------------------------------------- /src/material_cursors/pirate_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/pirate_24.svg -------------------------------------------------------------------------------- /src/material_cursors/pointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/pointer.svg -------------------------------------------------------------------------------- /src/material_cursors/pointer_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/pointer_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-01.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-01_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-01_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-02.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-02_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-02_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-03.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-03_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-03_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-04.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-04_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-04_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-05.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-05_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-05_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-06.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-06_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-06_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-07.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-07_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-07_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-08.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-08_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-08_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-09.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-09_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-09_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-10.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-10_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-10_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-11.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-11_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-11_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-12.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-12_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-12_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-13.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-13_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-13_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-14.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-14_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-14_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-15.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-15_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-15_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-16.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-16_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-16_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-17.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-17_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-17_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-18.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-18_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-18_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-19.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-19_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-19_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-20.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-20_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-20_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-21.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-21_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-21_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-22.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-22_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-22_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-23.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-23_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-23_24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-24.svg -------------------------------------------------------------------------------- /src/material_cursors/progress-24_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/progress-24_24.svg -------------------------------------------------------------------------------- /src/material_cursors/right-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/right-arrow.svg -------------------------------------------------------------------------------- /src/material_cursors/right-arrow_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/right-arrow_24.svg -------------------------------------------------------------------------------- /src/material_cursors/right_ptr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/right_ptr.svg -------------------------------------------------------------------------------- /src/material_cursors/right_ptr_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/right_ptr_24.svg -------------------------------------------------------------------------------- /src/material_cursors/right_side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/right_side.svg -------------------------------------------------------------------------------- /src/material_cursors/right_side_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/right_side_24.svg -------------------------------------------------------------------------------- /src/material_cursors/right_tee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/right_tee.svg -------------------------------------------------------------------------------- /src/material_cursors/right_tee_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/right_tee_24.svg -------------------------------------------------------------------------------- /src/material_cursors/row-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/row-resize.svg -------------------------------------------------------------------------------- /src/material_cursors/row-resize_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/row-resize_24.svg -------------------------------------------------------------------------------- /src/material_cursors/size_bdiag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/size_bdiag.svg -------------------------------------------------------------------------------- /src/material_cursors/size_bdiag_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/size_bdiag_24.svg -------------------------------------------------------------------------------- /src/material_cursors/size_fdiag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/size_fdiag.svg -------------------------------------------------------------------------------- /src/material_cursors/size_fdiag_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/size_fdiag_24.svg -------------------------------------------------------------------------------- /src/material_cursors/size_hor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/size_hor.svg -------------------------------------------------------------------------------- /src/material_cursors/size_hor_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/size_hor_24.svg -------------------------------------------------------------------------------- /src/material_cursors/size_ver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/size_ver.svg -------------------------------------------------------------------------------- /src/material_cursors/size_ver_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/size_ver_24.svg -------------------------------------------------------------------------------- /src/material_cursors/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/text.svg -------------------------------------------------------------------------------- /src/material_cursors/text_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/text_24.svg -------------------------------------------------------------------------------- /src/material_cursors/top_left_corner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/top_left_corner.svg -------------------------------------------------------------------------------- /src/material_cursors/top_left_corner_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/top_left_corner_24.svg -------------------------------------------------------------------------------- /src/material_cursors/top_right_corner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/top_right_corner.svg -------------------------------------------------------------------------------- /src/material_cursors/top_right_corner_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/top_right_corner_24.svg -------------------------------------------------------------------------------- /src/material_cursors/top_side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/top_side.svg -------------------------------------------------------------------------------- /src/material_cursors/top_side_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/top_side_24.svg -------------------------------------------------------------------------------- /src/material_cursors/top_tee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/top_tee.svg -------------------------------------------------------------------------------- /src/material_cursors/top_tee_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/top_tee_24.svg -------------------------------------------------------------------------------- /src/material_cursors/up-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/up-arrow.svg -------------------------------------------------------------------------------- /src/material_cursors/up-arrow_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/up-arrow_24.svg -------------------------------------------------------------------------------- /src/material_cursors/vertical-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/vertical-text.svg -------------------------------------------------------------------------------- /src/material_cursors/vertical-text_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/vertical-text_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-01.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-01_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-01_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-02.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-02_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-02_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-03.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-03_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-03_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-04.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-04_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-04_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-05.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-05_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-05_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-06.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-06_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-06_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-07.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-07_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-07_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-08.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-08_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-08_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-09.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-09_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-09_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-10.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-10_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-10_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-11.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-11_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-11_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-12.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-12_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-12_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-13.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-13_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-13_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-14.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-14_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-14_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-15.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-15_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-15_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-16.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-16_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-16_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-17.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-17_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-17_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-18.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-18_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-18_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-19.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-19_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-19_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-20.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-20_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-20_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-21.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-21_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-21_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-22.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-22_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-22_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-23.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-23_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-23_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-24.svg -------------------------------------------------------------------------------- /src/material_cursors/wait-24_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wait-24_24.svg -------------------------------------------------------------------------------- /src/material_cursors/wayland-cursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wayland-cursor.svg -------------------------------------------------------------------------------- /src/material_cursors/wayland-cursor_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/wayland-cursor_24.svg -------------------------------------------------------------------------------- /src/material_cursors/x-cursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/x-cursor.svg -------------------------------------------------------------------------------- /src/material_cursors/x-cursor_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/x-cursor_24.svg -------------------------------------------------------------------------------- /src/material_cursors/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/zoom-in.svg -------------------------------------------------------------------------------- /src/material_cursors/zoom-in_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/zoom-in_24.svg -------------------------------------------------------------------------------- /src/material_cursors/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/zoom-out.svg -------------------------------------------------------------------------------- /src/material_cursors/zoom-out_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_cursors/zoom-out_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/alias.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/alias.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/alias_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/alias_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/all-scroll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/all-scroll.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/all-scroll_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/all-scroll_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/bottom_left_corner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/bottom_left_corner.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/bottom_left_corner_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/bottom_left_corner_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/bottom_right_corner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/bottom_right_corner.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/bottom_right_corner_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/bottom_right_corner_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/bottom_side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/bottom_side.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/bottom_side_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/bottom_side_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/bottom_tee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/bottom_tee.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/bottom_tee_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/bottom_tee_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/cell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/cell.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/cell_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/cell_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/center_ptr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/center_ptr.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/center_ptr_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/center_ptr_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/col-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/col-resize.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/col-resize_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/col-resize_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/color-picker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/color-picker.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/color-picker_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/color-picker_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/context-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/context-menu.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/context-menu_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/context-menu_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/copy.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/copy_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/copy_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/crosshair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/crosshair.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/crosshair_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/crosshair_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/cursor.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Inherits=material_dark_cursors 3 | -------------------------------------------------------------------------------- /src/material_dark_cursors/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/default.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/default_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/default_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/dnd-ask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/dnd-ask.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/dnd-ask_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/dnd-ask_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/dnd-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/dnd-link.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/dnd-link_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/dnd-link_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/dnd-move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/dnd-move.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/dnd-move_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/dnd-move_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/dnd-no-drop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/dnd-no-drop.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/dnd-no-drop_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/dnd-no-drop_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/dotbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/dotbox.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/dotbox_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/dotbox_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/down-arrow.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/down-arrow_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/down-arrow_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/draft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/draft.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/draft_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/draft_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/fleur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/fleur.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/fleur_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/fleur_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/help.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/help_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/help_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/index.theme -------------------------------------------------------------------------------- /src/material_dark_cursors/left-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/left-arrow.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/left-arrow_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/left-arrow_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/left_side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/left_side.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/left_side_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/left_side_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/left_tee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/left_tee.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/left_tee_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/left_tee_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/no-drop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/no-drop.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/no-drop_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/no-drop_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/not-allowed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/not-allowed.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/not-allowed_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/not-allowed_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/openhand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/openhand.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/openhand_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/openhand_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/pencil.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/pencil_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/pencil_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/pirate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/pirate.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/pirate_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/pirate_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/pointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/pointer.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/pointer_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/pointer_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-01.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-01_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-01_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-02.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-02_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-02_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-03.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-03_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-03_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-04.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-04_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-04_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-05.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-05_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-05_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-06.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-06_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-06_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-07.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-07_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-07_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-08.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-08_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-08_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-09.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-09_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-09_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-10.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-10_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-10_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-11.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-11_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-11_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-12.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-12_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-12_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-13.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-13_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-13_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-14.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-14_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-14_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-15.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-15_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-15_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-16.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-16_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-16_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-17.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-17_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-17_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-18.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-18_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-18_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-19.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-19_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-19_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-20.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-20_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-20_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-21.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-21_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-21_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-22.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-22_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-22_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-23.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-23_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-23_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/progress-24_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/progress-24_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/right-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/right-arrow.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/right-arrow_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/right-arrow_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/right_ptr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/right_ptr.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/right_ptr_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/right_ptr_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/right_side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/right_side.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/right_side_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/right_side_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/right_tee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/right_tee.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/right_tee_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/right_tee_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/row-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/row-resize.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/row-resize_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/row-resize_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/size_bdiag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/size_bdiag.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/size_bdiag_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/size_bdiag_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/size_fdiag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/size_fdiag.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/size_fdiag_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/size_fdiag_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/size_hor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/size_hor.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/size_hor_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/size_hor_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/size_ver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/size_ver.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/size_ver_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/size_ver_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/text.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/text_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/text_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/top_left_corner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/top_left_corner.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/top_left_corner_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/top_left_corner_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/top_right_corner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/top_right_corner.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/top_right_corner_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/top_right_corner_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/top_side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/top_side.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/top_side_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/top_side_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/top_tee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/top_tee.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/top_tee_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/top_tee_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/up-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/up-arrow.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/up-arrow_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/up-arrow_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/vertical-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/vertical-text.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/vertical-text_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/vertical-text_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-01.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-01_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-01_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-02.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-02_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-02_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-03.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-03_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-03_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-04.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-04_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-04_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-05.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-05_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-05_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-06.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-06_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-06_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-07.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-07_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-07_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-08.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-08_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-08_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-09.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-09_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-09_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-10.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-10_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-10_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-11.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-11_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-11_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-12.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-12_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-12_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-13.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-13_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-13_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-14.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-14_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-14_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-15.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-15_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-15_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-16.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-16_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-16_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-17.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-17_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-17_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-18.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-18_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-18_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-19.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-19_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-19_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-20.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-20_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-20_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-21.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-21_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-21_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-22.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-22_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-22_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-23.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-23_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-23_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wait-24_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wait-24_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wayland-cursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wayland-cursor.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/wayland-cursor_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/wayland-cursor_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/x-cursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/x-cursor.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/x-cursor_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/x-cursor_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/zoom-in.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/zoom-in_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/zoom-in_24.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/zoom-out.svg -------------------------------------------------------------------------------- /src/material_dark_cursors/zoom-out_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_dark_cursors/zoom-out_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/alias.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/alias.svg -------------------------------------------------------------------------------- /src/material_light_cursors/alias_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/alias_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/all-scroll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/all-scroll.svg -------------------------------------------------------------------------------- /src/material_light_cursors/all-scroll_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/all-scroll_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/bottom_left_corner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/bottom_left_corner.svg -------------------------------------------------------------------------------- /src/material_light_cursors/bottom_left_corner_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/bottom_left_corner_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/bottom_right_corner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/bottom_right_corner.svg -------------------------------------------------------------------------------- /src/material_light_cursors/bottom_right_corner_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/bottom_right_corner_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/bottom_side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/bottom_side.svg -------------------------------------------------------------------------------- /src/material_light_cursors/bottom_side_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/bottom_side_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/bottom_tee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/bottom_tee.svg -------------------------------------------------------------------------------- /src/material_light_cursors/bottom_tee_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/bottom_tee_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/cell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/cell.svg -------------------------------------------------------------------------------- /src/material_light_cursors/cell_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/cell_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/center_ptr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/center_ptr.svg -------------------------------------------------------------------------------- /src/material_light_cursors/center_ptr_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/center_ptr_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/col-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/col-resize.svg -------------------------------------------------------------------------------- /src/material_light_cursors/col-resize_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/col-resize_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/color-picker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/color-picker.svg -------------------------------------------------------------------------------- /src/material_light_cursors/color-picker_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/color-picker_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/context-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/context-menu.svg -------------------------------------------------------------------------------- /src/material_light_cursors/context-menu_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/context-menu_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/copy.svg -------------------------------------------------------------------------------- /src/material_light_cursors/copy_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/copy_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/crosshair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/crosshair.svg -------------------------------------------------------------------------------- /src/material_light_cursors/crosshair_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/crosshair_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/cursor.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Inherits=material_light_cursors 3 | -------------------------------------------------------------------------------- /src/material_light_cursors/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/default.svg -------------------------------------------------------------------------------- /src/material_light_cursors/default_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/default_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/dnd-ask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/dnd-ask.svg -------------------------------------------------------------------------------- /src/material_light_cursors/dnd-ask_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/dnd-ask_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/dnd-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/dnd-link.svg -------------------------------------------------------------------------------- /src/material_light_cursors/dnd-link_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/dnd-link_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/dnd-move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/dnd-move.svg -------------------------------------------------------------------------------- /src/material_light_cursors/dnd-move_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/dnd-move_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/dnd-no-drop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/dnd-no-drop.svg -------------------------------------------------------------------------------- /src/material_light_cursors/dnd-no-drop_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/dnd-no-drop_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/dotbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/dotbox.svg -------------------------------------------------------------------------------- /src/material_light_cursors/dotbox_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/dotbox_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/down-arrow.svg -------------------------------------------------------------------------------- /src/material_light_cursors/down-arrow_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/down-arrow_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/draft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/draft.svg -------------------------------------------------------------------------------- /src/material_light_cursors/draft_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/draft_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/fleur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/fleur.svg -------------------------------------------------------------------------------- /src/material_light_cursors/fleur_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/fleur_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/help.svg -------------------------------------------------------------------------------- /src/material_light_cursors/help_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/help_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/index.theme -------------------------------------------------------------------------------- /src/material_light_cursors/left-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/left-arrow.svg -------------------------------------------------------------------------------- /src/material_light_cursors/left-arrow_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/left-arrow_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/left_side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/left_side.svg -------------------------------------------------------------------------------- /src/material_light_cursors/left_side_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/left_side_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/left_tee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/left_tee.svg -------------------------------------------------------------------------------- /src/material_light_cursors/left_tee_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/left_tee_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/no-drop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/no-drop.svg -------------------------------------------------------------------------------- /src/material_light_cursors/no-drop_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/no-drop_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/not-allowed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/not-allowed.svg -------------------------------------------------------------------------------- /src/material_light_cursors/not-allowed_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/not-allowed_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/openhand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/openhand.svg -------------------------------------------------------------------------------- /src/material_light_cursors/openhand_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/openhand_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/pencil.svg -------------------------------------------------------------------------------- /src/material_light_cursors/pencil_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/pencil_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/pirate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/pirate.svg -------------------------------------------------------------------------------- /src/material_light_cursors/pirate_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/pirate_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/pointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/pointer.svg -------------------------------------------------------------------------------- /src/material_light_cursors/pointer_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/pointer_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-01.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-01_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-01_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-02.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-02_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-02_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-03.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-03_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-03_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-04.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-04_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-04_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-05.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-05_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-05_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-06.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-06_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-06_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-07.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-07_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-07_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-08.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-08_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-08_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-09.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-09_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-09_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-10.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-10_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-10_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-11.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-11_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-11_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-12.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-12_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-12_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-13.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-13_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-13_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-14.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-14_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-14_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-15.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-15_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-15_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-16.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-16_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-16_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-17.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-17_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-17_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-18.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-18_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-18_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-19.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-19_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-19_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-20.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-20_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-20_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-21.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-21_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-21_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-22.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-22_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-22_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-23.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-23_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-23_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/progress-24_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/progress-24_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/right-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/right-arrow.svg -------------------------------------------------------------------------------- /src/material_light_cursors/right-arrow_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/right-arrow_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/right_ptr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/right_ptr.svg -------------------------------------------------------------------------------- /src/material_light_cursors/right_ptr_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/right_ptr_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/right_side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/right_side.svg -------------------------------------------------------------------------------- /src/material_light_cursors/right_side_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/right_side_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/right_tee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/right_tee.svg -------------------------------------------------------------------------------- /src/material_light_cursors/right_tee_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/right_tee_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/row-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/row-resize.svg -------------------------------------------------------------------------------- /src/material_light_cursors/row-resize_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/row-resize_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/size_bdiag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/size_bdiag.svg -------------------------------------------------------------------------------- /src/material_light_cursors/size_bdiag_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/size_bdiag_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/size_fdiag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/size_fdiag.svg -------------------------------------------------------------------------------- /src/material_light_cursors/size_fdiag_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/size_fdiag_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/size_hor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/size_hor.svg -------------------------------------------------------------------------------- /src/material_light_cursors/size_hor_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/size_hor_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/size_ver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/size_ver.svg -------------------------------------------------------------------------------- /src/material_light_cursors/size_ver_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/size_ver_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/text.svg -------------------------------------------------------------------------------- /src/material_light_cursors/text_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/text_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/top_left_corner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/top_left_corner.svg -------------------------------------------------------------------------------- /src/material_light_cursors/top_left_corner_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/top_left_corner_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/top_right_corner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/top_right_corner.svg -------------------------------------------------------------------------------- /src/material_light_cursors/top_right_corner_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/top_right_corner_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/top_side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/top_side.svg -------------------------------------------------------------------------------- /src/material_light_cursors/top_side_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/top_side_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/top_tee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/top_tee.svg -------------------------------------------------------------------------------- /src/material_light_cursors/top_tee_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/top_tee_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/up-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/up-arrow.svg -------------------------------------------------------------------------------- /src/material_light_cursors/up-arrow_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/up-arrow_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/vertical-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/vertical-text.svg -------------------------------------------------------------------------------- /src/material_light_cursors/vertical-text_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/vertical-text_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-01.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-01_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-01_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-02.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-02_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-02_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-03.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-03_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-03_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-04.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-04_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-04_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-05.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-05_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-05_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-06.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-06_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-06_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-07.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-07_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-07_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-08.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-08_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-08_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-09.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-09_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-09_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-10.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-10_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-10_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-11.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-11_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-11_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-12.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-12_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-12_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-13.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-13_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-13_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-14.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-14_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-14_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-15.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-15_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-15_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-16.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-16_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-16_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-17.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-17_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-17_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-18.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-18_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-18_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-19.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-19_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-19_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-20.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-20_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-20_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-21.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-21_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-21_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-22.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-22_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-22_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-23.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-23_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-23_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wait-24_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wait-24_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wayland-cursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wayland-cursor.svg -------------------------------------------------------------------------------- /src/material_light_cursors/wayland-cursor_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/wayland-cursor_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/x-cursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/x-cursor.svg -------------------------------------------------------------------------------- /src/material_light_cursors/x-cursor_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/x-cursor_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/zoom-in.svg -------------------------------------------------------------------------------- /src/material_light_cursors/zoom-in_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/zoom-in_24.svg -------------------------------------------------------------------------------- /src/material_light_cursors/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/zoom-out.svg -------------------------------------------------------------------------------- /src/material_light_cursors/zoom-out_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/src/material_light_cursors/zoom-out_24.svg -------------------------------------------------------------------------------- /windows/AppStarting.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/AppStarting.ani -------------------------------------------------------------------------------- /windows/Arrow.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/Arrow.cur -------------------------------------------------------------------------------- /windows/Cross.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/Cross.cur -------------------------------------------------------------------------------- /windows/Hand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/Hand.cur -------------------------------------------------------------------------------- /windows/Handwriting.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/Handwriting.cur -------------------------------------------------------------------------------- /windows/Help.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/Help.cur -------------------------------------------------------------------------------- /windows/IBeam.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/IBeam.cur -------------------------------------------------------------------------------- /windows/Install.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/Install.inf -------------------------------------------------------------------------------- /windows/NO.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/NO.cur -------------------------------------------------------------------------------- /windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/README.md -------------------------------------------------------------------------------- /windows/SizeAll.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/SizeAll.cur -------------------------------------------------------------------------------- /windows/SizeNESW.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/SizeNESW.cur -------------------------------------------------------------------------------- /windows/SizeNS.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/SizeNS.cur -------------------------------------------------------------------------------- /windows/SizeNWSE.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/SizeNWSE.cur -------------------------------------------------------------------------------- /windows/SizeWE.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/SizeWE.cur -------------------------------------------------------------------------------- /windows/UpArrow.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/UpArrow.cur -------------------------------------------------------------------------------- /windows/Wait.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/Wait.ani -------------------------------------------------------------------------------- /windows/progress/progress-01.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-01.cur -------------------------------------------------------------------------------- /windows/progress/progress-02.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-02.cur -------------------------------------------------------------------------------- /windows/progress/progress-03.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-03.cur -------------------------------------------------------------------------------- /windows/progress/progress-04.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-04.cur -------------------------------------------------------------------------------- /windows/progress/progress-05.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-05.cur -------------------------------------------------------------------------------- /windows/progress/progress-06.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-06.cur -------------------------------------------------------------------------------- /windows/progress/progress-07.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-07.cur -------------------------------------------------------------------------------- /windows/progress/progress-08.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-08.cur -------------------------------------------------------------------------------- /windows/progress/progress-09.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-09.cur -------------------------------------------------------------------------------- /windows/progress/progress-10.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-10.cur -------------------------------------------------------------------------------- /windows/progress/progress-11.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-11.cur -------------------------------------------------------------------------------- /windows/progress/progress-12.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-12.cur -------------------------------------------------------------------------------- /windows/progress/progress-13.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-13.cur -------------------------------------------------------------------------------- /windows/progress/progress-14.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-14.cur -------------------------------------------------------------------------------- /windows/progress/progress-15.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-15.cur -------------------------------------------------------------------------------- /windows/progress/progress-16.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-16.cur -------------------------------------------------------------------------------- /windows/progress/progress-17.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-17.cur -------------------------------------------------------------------------------- /windows/progress/progress-18.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-18.cur -------------------------------------------------------------------------------- /windows/progress/progress-19.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-19.cur -------------------------------------------------------------------------------- /windows/progress/progress-20.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-20.cur -------------------------------------------------------------------------------- /windows/progress/progress-21.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-21.cur -------------------------------------------------------------------------------- /windows/progress/progress-22.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-22.cur -------------------------------------------------------------------------------- /windows/progress/progress-23.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-23.cur -------------------------------------------------------------------------------- /windows/progress/progress-24.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/progress/progress-24.cur -------------------------------------------------------------------------------- /windows/wait/wait-01.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-01.cur -------------------------------------------------------------------------------- /windows/wait/wait-02.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-02.cur -------------------------------------------------------------------------------- /windows/wait/wait-03.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-03.cur -------------------------------------------------------------------------------- /windows/wait/wait-04.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-04.cur -------------------------------------------------------------------------------- /windows/wait/wait-05.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-05.cur -------------------------------------------------------------------------------- /windows/wait/wait-06.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-06.cur -------------------------------------------------------------------------------- /windows/wait/wait-07.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-07.cur -------------------------------------------------------------------------------- /windows/wait/wait-08.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-08.cur -------------------------------------------------------------------------------- /windows/wait/wait-09.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-09.cur -------------------------------------------------------------------------------- /windows/wait/wait-10.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-10.cur -------------------------------------------------------------------------------- /windows/wait/wait-11.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-11.cur -------------------------------------------------------------------------------- /windows/wait/wait-12.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-12.cur -------------------------------------------------------------------------------- /windows/wait/wait-13.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-13.cur -------------------------------------------------------------------------------- /windows/wait/wait-14.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-14.cur -------------------------------------------------------------------------------- /windows/wait/wait-15.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-15.cur -------------------------------------------------------------------------------- /windows/wait/wait-16.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-16.cur -------------------------------------------------------------------------------- /windows/wait/wait-17.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-17.cur -------------------------------------------------------------------------------- /windows/wait/wait-18.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-18.cur -------------------------------------------------------------------------------- /windows/wait/wait-19.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-19.cur -------------------------------------------------------------------------------- /windows/wait/wait-20.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-20.cur -------------------------------------------------------------------------------- /windows/wait/wait-21.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-21.cur -------------------------------------------------------------------------------- /windows/wait/wait-22.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-22.cur -------------------------------------------------------------------------------- /windows/wait/wait-23.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-23.cur -------------------------------------------------------------------------------- /windows/wait/wait-24.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/material-cursors/HEAD/windows/wait/wait-24.cur --------------------------------------------------------------------------------