├── .github ├── FUNDING.yml └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── configs ├── win_lg.build.toml ├── win_rg.build.toml ├── win_xl.build.toml └── x.build.toml ├── package.json ├── pling.txt ├── render.json ├── svg ├── X_cursor.svg ├── all-scroll.svg ├── bottom_left_corner.svg ├── bottom_right_corner.svg ├── bottom_tee.svg ├── center_ptr.svg ├── context-menu.svg ├── copy.svg ├── cross.svg ├── crossed_circle.svg ├── crosshair.svg ├── dnd_no_drop.svg ├── dotbox.svg ├── hand1.svg ├── hand2.svg ├── left_ptr.svg ├── left_ptr_watch │ ├── left_ptr_watch-01.svg │ ├── left_ptr_watch-02.svg │ ├── left_ptr_watch-03.svg │ ├── left_ptr_watch-04.svg │ ├── left_ptr_watch-05.svg │ ├── left_ptr_watch-06.svg │ ├── left_ptr_watch-07.svg │ ├── left_ptr_watch-08.svg │ ├── left_ptr_watch-09.svg │ ├── left_ptr_watch-10.svg │ ├── left_ptr_watch-11.svg │ ├── left_ptr_watch-12.svg │ ├── left_ptr_watch-13.svg │ ├── left_ptr_watch-14.svg │ ├── left_ptr_watch-15.svg │ ├── left_ptr_watch-16.svg │ ├── left_ptr_watch-17.svg │ ├── left_ptr_watch-18.svg │ ├── left_ptr_watch-19.svg │ ├── left_ptr_watch-20.svg │ ├── left_ptr_watch-21.svg │ ├── left_ptr_watch-22.svg │ ├── left_ptr_watch-23.svg │ ├── left_ptr_watch-24.svg │ ├── left_ptr_watch-25.svg │ ├── left_ptr_watch-26.svg │ ├── left_ptr_watch-27.svg │ ├── left_ptr_watch-28.svg │ ├── left_ptr_watch-29.svg │ ├── left_ptr_watch-30.svg │ ├── left_ptr_watch-31.svg │ ├── left_ptr_watch-32.svg │ ├── left_ptr_watch-33.svg │ ├── left_ptr_watch-34.svg │ ├── left_ptr_watch-35.svg │ ├── left_ptr_watch-36.svg │ ├── left_ptr_watch-37.svg │ ├── left_ptr_watch-38.svg │ ├── left_ptr_watch-39.svg │ ├── left_ptr_watch-40.svg │ ├── left_ptr_watch-41.svg │ ├── left_ptr_watch-42.svg │ ├── left_ptr_watch-43.svg │ ├── left_ptr_watch-44.svg │ ├── left_ptr_watch-45.svg │ ├── left_ptr_watch-46.svg │ ├── left_ptr_watch-47.svg │ ├── left_ptr_watch-48.svg │ ├── left_ptr_watch-49.svg │ ├── left_ptr_watch-50.svg │ ├── left_ptr_watch-51.svg │ ├── left_ptr_watch-52.svg │ ├── left_ptr_watch-53.svg │ ├── left_ptr_watch-54.svg │ ├── left_ptr_watch-55.svg │ ├── left_ptr_watch-56.svg │ ├── left_ptr_watch-57.svg │ ├── left_ptr_watch-58.svg │ ├── left_ptr_watch-59.svg │ └── left_ptr_watch-60.svg ├── left_side.svg ├── left_tee.svg ├── link.svg ├── ll_angle.svg ├── lr_angle.svg ├── move.svg ├── pencil.svg ├── person.svg ├── pin.svg ├── plus.svg ├── question_arrow.svg ├── right_ptr.svg ├── right_tee.svg ├── sb_down_arrow.svg ├── sb_h_double_arrow.svg ├── sb_left_arrow.svg ├── sb_right_arrow.svg ├── sb_up_arrow.svg ├── sb_v_double_arrow.svg ├── top_side.svg ├── top_tee.svg ├── ul_angle.svg ├── ur_angle.svg ├── vertical-text.svg ├── wait │ ├── wait-01.svg │ ├── wait-02.svg │ ├── wait-03.svg │ ├── wait-04.svg │ ├── wait-05.svg │ ├── wait-06.svg │ ├── wait-07.svg │ ├── wait-08.svg │ ├── wait-09.svg │ ├── wait-10.svg │ ├── wait-11.svg │ ├── wait-12.svg │ ├── wait-13.svg │ ├── wait-14.svg │ ├── wait-15.svg │ ├── wait-16.svg │ ├── wait-17.svg │ ├── wait-18.svg │ ├── wait-19.svg │ ├── wait-20.svg │ ├── wait-21.svg │ ├── wait-22.svg │ ├── wait-23.svg │ ├── wait-24.svg │ ├── wait-25.svg │ ├── wait-26.svg │ ├── wait-27.svg │ ├── wait-28.svg │ ├── wait-29.svg │ ├── wait-30.svg │ ├── wait-31.svg │ ├── wait-32.svg │ ├── wait-33.svg │ ├── wait-34.svg │ ├── wait-35.svg │ ├── wait-36.svg │ ├── wait-37.svg │ ├── wait-38.svg │ ├── wait-39.svg │ ├── wait-40.svg │ ├── wait-41.svg │ ├── wait-42.svg │ ├── wait-43.svg │ ├── wait-44.svg │ ├── wait-45.svg │ ├── wait-46.svg │ ├── wait-47.svg │ ├── wait-48.svg │ ├── wait-49.svg │ ├── wait-50.svg │ ├── wait-51.svg │ ├── wait-52.svg │ ├── wait-53.svg │ ├── wait-54.svg │ ├── wait-55.svg │ ├── wait-56.svg │ ├── wait-57.svg │ ├── wait-58.svg │ ├── wait-59.svg │ └── wait-60.svg ├── wayland-cursor.svg ├── xterm.svg ├── zoom-in.svg └── zoom-out.svg └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: ful1e5 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/README.md -------------------------------------------------------------------------------- /configs/win_lg.build.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/configs/win_lg.build.toml -------------------------------------------------------------------------------- /configs/win_rg.build.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/configs/win_rg.build.toml -------------------------------------------------------------------------------- /configs/win_xl.build.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/configs/win_xl.build.toml -------------------------------------------------------------------------------- /configs/x.build.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/configs/x.build.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/package.json -------------------------------------------------------------------------------- /pling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/pling.txt -------------------------------------------------------------------------------- /render.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/render.json -------------------------------------------------------------------------------- /svg/X_cursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/X_cursor.svg -------------------------------------------------------------------------------- /svg/all-scroll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/all-scroll.svg -------------------------------------------------------------------------------- /svg/bottom_left_corner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/bottom_left_corner.svg -------------------------------------------------------------------------------- /svg/bottom_right_corner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/bottom_right_corner.svg -------------------------------------------------------------------------------- /svg/bottom_tee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/bottom_tee.svg -------------------------------------------------------------------------------- /svg/center_ptr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/center_ptr.svg -------------------------------------------------------------------------------- /svg/context-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/context-menu.svg -------------------------------------------------------------------------------- /svg/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/copy.svg -------------------------------------------------------------------------------- /svg/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/cross.svg -------------------------------------------------------------------------------- /svg/crossed_circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/crossed_circle.svg -------------------------------------------------------------------------------- /svg/crosshair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/crosshair.svg -------------------------------------------------------------------------------- /svg/dnd_no_drop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/dnd_no_drop.svg -------------------------------------------------------------------------------- /svg/dotbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/dotbox.svg -------------------------------------------------------------------------------- /svg/hand1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/hand1.svg -------------------------------------------------------------------------------- /svg/hand2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/hand2.svg -------------------------------------------------------------------------------- /svg/left_ptr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-01.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-02.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-03.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-04.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-05.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-06.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-07.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-08.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-09.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-10.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-11.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-12.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-13.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-14.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-15.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-16.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-17.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-18.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-19.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-20.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-21.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-22.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-23.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-24.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-25.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-26.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-27.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-27.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-28.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-29.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-29.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-30.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-31.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-31.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-32.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-33.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-33.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-34.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-34.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-35.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-35.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-36.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-36.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-37.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-37.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-38.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-38.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-39.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-39.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-40.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-41.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-41.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-42.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-42.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-43.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-43.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-44.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-44.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-45.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-45.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-46.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-46.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-47.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-47.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-48.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-49.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-49.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-50.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-51.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-51.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-52.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-52.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-53.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-53.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-54.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-54.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-55.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-55.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-56.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-56.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-57.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-57.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-58.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-58.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-59.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-59.svg -------------------------------------------------------------------------------- /svg/left_ptr_watch/left_ptr_watch-60.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_ptr_watch/left_ptr_watch-60.svg -------------------------------------------------------------------------------- /svg/left_side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_side.svg -------------------------------------------------------------------------------- /svg/left_tee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/left_tee.svg -------------------------------------------------------------------------------- /svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/link.svg -------------------------------------------------------------------------------- /svg/ll_angle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/ll_angle.svg -------------------------------------------------------------------------------- /svg/lr_angle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/lr_angle.svg -------------------------------------------------------------------------------- /svg/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/move.svg -------------------------------------------------------------------------------- /svg/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/pencil.svg -------------------------------------------------------------------------------- /svg/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/person.svg -------------------------------------------------------------------------------- /svg/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/pin.svg -------------------------------------------------------------------------------- /svg/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/plus.svg -------------------------------------------------------------------------------- /svg/question_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/question_arrow.svg -------------------------------------------------------------------------------- /svg/right_ptr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/right_ptr.svg -------------------------------------------------------------------------------- /svg/right_tee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/right_tee.svg -------------------------------------------------------------------------------- /svg/sb_down_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/sb_down_arrow.svg -------------------------------------------------------------------------------- /svg/sb_h_double_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/sb_h_double_arrow.svg -------------------------------------------------------------------------------- /svg/sb_left_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/sb_left_arrow.svg -------------------------------------------------------------------------------- /svg/sb_right_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/sb_right_arrow.svg -------------------------------------------------------------------------------- /svg/sb_up_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/sb_up_arrow.svg -------------------------------------------------------------------------------- /svg/sb_v_double_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/sb_v_double_arrow.svg -------------------------------------------------------------------------------- /svg/top_side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/top_side.svg -------------------------------------------------------------------------------- /svg/top_tee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/top_tee.svg -------------------------------------------------------------------------------- /svg/ul_angle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/ul_angle.svg -------------------------------------------------------------------------------- /svg/ur_angle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/ur_angle.svg -------------------------------------------------------------------------------- /svg/vertical-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/vertical-text.svg -------------------------------------------------------------------------------- /svg/wait/wait-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-01.svg -------------------------------------------------------------------------------- /svg/wait/wait-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-02.svg -------------------------------------------------------------------------------- /svg/wait/wait-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-03.svg -------------------------------------------------------------------------------- /svg/wait/wait-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-04.svg -------------------------------------------------------------------------------- /svg/wait/wait-05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-05.svg -------------------------------------------------------------------------------- /svg/wait/wait-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-06.svg -------------------------------------------------------------------------------- /svg/wait/wait-07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-07.svg -------------------------------------------------------------------------------- /svg/wait/wait-08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-08.svg -------------------------------------------------------------------------------- /svg/wait/wait-09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-09.svg -------------------------------------------------------------------------------- /svg/wait/wait-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-10.svg -------------------------------------------------------------------------------- /svg/wait/wait-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-11.svg -------------------------------------------------------------------------------- /svg/wait/wait-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-12.svg -------------------------------------------------------------------------------- /svg/wait/wait-13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-13.svg -------------------------------------------------------------------------------- /svg/wait/wait-14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-14.svg -------------------------------------------------------------------------------- /svg/wait/wait-15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-15.svg -------------------------------------------------------------------------------- /svg/wait/wait-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-16.svg -------------------------------------------------------------------------------- /svg/wait/wait-17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-17.svg -------------------------------------------------------------------------------- /svg/wait/wait-18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-18.svg -------------------------------------------------------------------------------- /svg/wait/wait-19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-19.svg -------------------------------------------------------------------------------- /svg/wait/wait-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-20.svg -------------------------------------------------------------------------------- /svg/wait/wait-21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-21.svg -------------------------------------------------------------------------------- /svg/wait/wait-22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-22.svg -------------------------------------------------------------------------------- /svg/wait/wait-23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-23.svg -------------------------------------------------------------------------------- /svg/wait/wait-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-24.svg -------------------------------------------------------------------------------- /svg/wait/wait-25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-25.svg -------------------------------------------------------------------------------- /svg/wait/wait-26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-26.svg -------------------------------------------------------------------------------- /svg/wait/wait-27.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-27.svg -------------------------------------------------------------------------------- /svg/wait/wait-28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-28.svg -------------------------------------------------------------------------------- /svg/wait/wait-29.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-29.svg -------------------------------------------------------------------------------- /svg/wait/wait-30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-30.svg -------------------------------------------------------------------------------- /svg/wait/wait-31.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-31.svg -------------------------------------------------------------------------------- /svg/wait/wait-32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-32.svg -------------------------------------------------------------------------------- /svg/wait/wait-33.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-33.svg -------------------------------------------------------------------------------- /svg/wait/wait-34.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-34.svg -------------------------------------------------------------------------------- /svg/wait/wait-35.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-35.svg -------------------------------------------------------------------------------- /svg/wait/wait-36.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-36.svg -------------------------------------------------------------------------------- /svg/wait/wait-37.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-37.svg -------------------------------------------------------------------------------- /svg/wait/wait-38.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-38.svg -------------------------------------------------------------------------------- /svg/wait/wait-39.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-39.svg -------------------------------------------------------------------------------- /svg/wait/wait-40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-40.svg -------------------------------------------------------------------------------- /svg/wait/wait-41.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-41.svg -------------------------------------------------------------------------------- /svg/wait/wait-42.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-42.svg -------------------------------------------------------------------------------- /svg/wait/wait-43.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-43.svg -------------------------------------------------------------------------------- /svg/wait/wait-44.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-44.svg -------------------------------------------------------------------------------- /svg/wait/wait-45.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-45.svg -------------------------------------------------------------------------------- /svg/wait/wait-46.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-46.svg -------------------------------------------------------------------------------- /svg/wait/wait-47.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-47.svg -------------------------------------------------------------------------------- /svg/wait/wait-48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-48.svg -------------------------------------------------------------------------------- /svg/wait/wait-49.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-49.svg -------------------------------------------------------------------------------- /svg/wait/wait-50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-50.svg -------------------------------------------------------------------------------- /svg/wait/wait-51.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-51.svg -------------------------------------------------------------------------------- /svg/wait/wait-52.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-52.svg -------------------------------------------------------------------------------- /svg/wait/wait-53.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-53.svg -------------------------------------------------------------------------------- /svg/wait/wait-54.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-54.svg -------------------------------------------------------------------------------- /svg/wait/wait-55.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-55.svg -------------------------------------------------------------------------------- /svg/wait/wait-56.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-56.svg -------------------------------------------------------------------------------- /svg/wait/wait-57.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-57.svg -------------------------------------------------------------------------------- /svg/wait/wait-58.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-58.svg -------------------------------------------------------------------------------- /svg/wait/wait-59.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-59.svg -------------------------------------------------------------------------------- /svg/wait/wait-60.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wait/wait-60.svg -------------------------------------------------------------------------------- /svg/wayland-cursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/wayland-cursor.svg -------------------------------------------------------------------------------- /svg/xterm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/xterm.svg -------------------------------------------------------------------------------- /svg/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/zoom-in.svg -------------------------------------------------------------------------------- /svg/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/svg/zoom-out.svg -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ful1e5/fuchsia-cursor/HEAD/yarn.lock --------------------------------------------------------------------------------