novelWriter 2.6.3__py3-none-any.whl → 2.7b1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- novelwriter/__init__.py +84 -74
- novelwriter/assets/i18n/project_en_GB.json +1 -0
- novelwriter/assets/icons/font_awesome.icons +109 -0
- novelwriter/assets/icons/material_filled_bold.icons +109 -0
- novelwriter/assets/icons/material_filled_normal.icons +109 -0
- novelwriter/assets/icons/material_filled_thin.icons +109 -0
- novelwriter/assets/icons/material_rounded_bold.icons +109 -0
- novelwriter/assets/icons/material_rounded_normal.icons +109 -0
- novelwriter/assets/icons/material_rounded_thin.icons +109 -0
- novelwriter/assets/icons/remix_filled.icons +108 -0
- novelwriter/assets/icons/remix_outline.icons +108 -0
- novelwriter/assets/manual.pdf +0 -0
- novelwriter/assets/{manual_fr_FR.pdf → manual_fr.pdf} +0 -0
- novelwriter/assets/sample.zip +0 -0
- novelwriter/assets/syntax/cyberpunk_night.conf +1 -1
- novelwriter/assets/text/credits_en.htm +6 -6
- novelwriter/assets/themes/cyberpunk_night.conf +23 -7
- novelwriter/assets/themes/default_dark.conf +20 -4
- novelwriter/assets/themes/default_light.conf +21 -5
- novelwriter/assets/themes/dracula.conf +20 -4
- novelwriter/assets/themes/solarized_dark.conf +24 -8
- novelwriter/assets/themes/solarized_light.conf +22 -6
- novelwriter/common.py +33 -26
- novelwriter/config.py +118 -127
- novelwriter/constants.py +50 -36
- novelwriter/core/buildsettings.py +23 -16
- novelwriter/core/coretools.py +11 -7
- novelwriter/core/docbuild.py +19 -13
- novelwriter/core/document.py +2 -2
- novelwriter/core/index.py +142 -432
- novelwriter/core/indexdata.py +403 -0
- novelwriter/core/item.py +35 -28
- novelwriter/core/itemmodel.py +27 -26
- novelwriter/core/novelmodel.py +223 -0
- novelwriter/core/options.py +1 -1
- novelwriter/core/project.py +10 -11
- novelwriter/core/projectdata.py +5 -5
- novelwriter/core/projectxml.py +1 -1
- novelwriter/core/sessions.py +3 -2
- novelwriter/core/spellcheck.py +4 -3
- novelwriter/core/status.py +12 -15
- novelwriter/core/storage.py +1 -1
- novelwriter/core/tree.py +46 -8
- novelwriter/dialogs/about.py +19 -22
- novelwriter/dialogs/docmerge.py +21 -23
- novelwriter/dialogs/docsplit.py +20 -23
- novelwriter/dialogs/editlabel.py +9 -13
- novelwriter/dialogs/preferences.py +111 -48
- novelwriter/dialogs/projectsettings.py +48 -54
- novelwriter/dialogs/quotes.py +14 -19
- novelwriter/dialogs/wordlist.py +25 -30
- novelwriter/enum.py +8 -0
- novelwriter/error.py +16 -16
- novelwriter/extensions/configlayout.py +18 -18
- novelwriter/extensions/eventfilters.py +9 -5
- novelwriter/extensions/modified.py +34 -15
- novelwriter/extensions/novelselector.py +18 -5
- novelwriter/extensions/pagedsidebar.py +39 -49
- novelwriter/extensions/progressbars.py +10 -8
- novelwriter/extensions/statusled.py +6 -13
- novelwriter/extensions/switch.py +19 -30
- novelwriter/extensions/switchbox.py +7 -3
- novelwriter/extensions/versioninfo.py +4 -4
- novelwriter/formats/shared.py +1 -1
- novelwriter/formats/todocx.py +14 -10
- novelwriter/formats/tohtml.py +7 -5
- novelwriter/formats/tokenizer.py +36 -33
- novelwriter/formats/tomarkdown.py +6 -2
- novelwriter/formats/toodt.py +27 -22
- novelwriter/formats/toqdoc.py +19 -14
- novelwriter/formats/toraw.py +6 -2
- novelwriter/gui/doceditor.py +216 -265
- novelwriter/gui/dochighlight.py +46 -45
- novelwriter/gui/docviewer.py +102 -104
- novelwriter/gui/docviewerpanel.py +47 -51
- novelwriter/gui/editordocument.py +8 -5
- novelwriter/gui/itemdetails.py +11 -14
- novelwriter/gui/mainmenu.py +146 -145
- novelwriter/gui/noveltree.py +239 -405
- novelwriter/gui/outline.py +133 -72
- novelwriter/gui/projtree.py +138 -132
- novelwriter/gui/search.py +33 -31
- novelwriter/gui/sidebar.py +13 -18
- novelwriter/gui/statusbar.py +13 -15
- novelwriter/gui/theme.py +533 -430
- novelwriter/guimain.py +27 -29
- novelwriter/shared.py +32 -23
- novelwriter/text/comments.py +70 -0
- novelwriter/text/patterns.py +4 -4
- novelwriter/tools/dictionaries.py +20 -29
- novelwriter/tools/lipsum.py +16 -17
- novelwriter/tools/manusbuild.py +39 -42
- novelwriter/tools/manuscript.py +101 -114
- novelwriter/tools/manussettings.py +78 -83
- novelwriter/tools/noveldetails.py +51 -64
- novelwriter/tools/welcome.py +56 -75
- novelwriter/tools/writingstats.py +44 -57
- novelwriter/types.py +5 -7
- {novelWriter-2.6.3.dist-info → novelwriter-2.7b1.dist-info}/METADATA +6 -6
- novelwriter-2.7b1.dist-info/RECORD +159 -0
- {novelWriter-2.6.3.dist-info → novelwriter-2.7b1.dist-info}/WHEEL +1 -1
- novelWriter-2.6.3.dist-info/RECORD +0 -363
- novelwriter/assets/icons/typicons_dark/README.md +0 -29
- novelwriter/assets/icons/typicons_dark/icons.conf +0 -134
- novelwriter/assets/icons/typicons_dark/mixed_copy.svg +0 -4
- novelwriter/assets/icons/typicons_dark/mixed_document-chapter.svg +0 -12
- novelwriter/assets/icons/typicons_dark/mixed_document-new.svg +0 -6
- novelwriter/assets/icons/typicons_dark/mixed_document-note.svg +0 -12
- novelwriter/assets/icons/typicons_dark/mixed_document-scene.svg +0 -12
- novelwriter/assets/icons/typicons_dark/mixed_document-section.svg +0 -12
- novelwriter/assets/icons/typicons_dark/mixed_document-title.svg +0 -12
- novelwriter/assets/icons/typicons_dark/mixed_edit.svg +0 -4
- novelwriter/assets/icons/typicons_dark/mixed_import.svg +0 -5
- novelwriter/assets/icons/typicons_dark/mixed_input-checked.svg +0 -5
- novelwriter/assets/icons/typicons_dark/mixed_input-none.svg +0 -5
- novelwriter/assets/icons/typicons_dark/mixed_input-unchecked.svg +0 -5
- novelwriter/assets/icons/typicons_dark/mixed_margin-bottom.svg +0 -6
- novelwriter/assets/icons/typicons_dark/mixed_margin-left.svg +0 -6
- novelwriter/assets/icons/typicons_dark/mixed_margin-right.svg +0 -6
- novelwriter/assets/icons/typicons_dark/mixed_margin-top.svg +0 -6
- novelwriter/assets/icons/typicons_dark/mixed_search-replace.svg +0 -6
- novelwriter/assets/icons/typicons_dark/mixed_size-height.svg +0 -6
- novelwriter/assets/icons/typicons_dark/mixed_size-width.svg +0 -6
- novelwriter/assets/icons/typicons_dark/nw_deco-h0.svg +0 -4
- novelwriter/assets/icons/typicons_dark/nw_deco-h1.svg +0 -4
- novelwriter/assets/icons/typicons_dark/nw_deco-h2-narrow.svg +0 -4
- novelwriter/assets/icons/typicons_dark/nw_deco-h2.svg +0 -4
- novelwriter/assets/icons/typicons_dark/nw_deco-h3-narrow.svg +0 -4
- novelwriter/assets/icons/typicons_dark/nw_deco-h3.svg +0 -4
- novelwriter/assets/icons/typicons_dark/nw_deco-h4-narrow.svg +0 -4
- novelwriter/assets/icons/typicons_dark/nw_deco-h4.svg +0 -4
- novelwriter/assets/icons/typicons_dark/nw_deco-note.svg +0 -4
- novelwriter/assets/icons/typicons_dark/nw_deco-noveltree-more.svg +0 -4
- novelwriter/assets/icons/typicons_dark/nw_font.svg +0 -4
- novelwriter/assets/icons/typicons_dark/nw_panel.svg +0 -4
- novelwriter/assets/icons/typicons_dark/nw_quote.svg +0 -4
- novelwriter/assets/icons/typicons_dark/nw_search-case.svg +0 -4
- novelwriter/assets/icons/typicons_dark/nw_search-preserve.svg +0 -4
- novelwriter/assets/icons/typicons_dark/nw_search-regex.svg +0 -4
- novelwriter/assets/icons/typicons_dark/nw_search-word.svg +0 -4
- novelwriter/assets/icons/typicons_dark/nw_tb-bold-md.svg +0 -4
- novelwriter/assets/icons/typicons_dark/nw_tb-bold.svg +0 -6
- novelwriter/assets/icons/typicons_dark/nw_tb-italic-md.svg +0 -4
- novelwriter/assets/icons/typicons_dark/nw_tb-italic.svg +0 -6
- novelwriter/assets/icons/typicons_dark/nw_tb-mark.svg +0 -7
- novelwriter/assets/icons/typicons_dark/nw_tb-strike-md.svg +0 -4
- novelwriter/assets/icons/typicons_dark/nw_tb-strike.svg +0 -6
- novelwriter/assets/icons/typicons_dark/nw_tb-subscript.svg +0 -7
- novelwriter/assets/icons/typicons_dark/nw_tb-superscript.svg +0 -7
- novelwriter/assets/icons/typicons_dark/nw_tb-underline.svg +0 -7
- novelwriter/assets/icons/typicons_dark/nw_toolbar.svg +0 -5
- novelwriter/assets/icons/typicons_dark/typ_arrow-down-thick-grey.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_arrow-forward.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_arrow-maximise.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_arrow-minimise.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_arrow-repeat-grey.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_book-grey.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_book.svg +0 -6
- novelwriter/assets/icons/typicons_dark/typ_bookmark.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_calendar.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_cancel-grey.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_cancel.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_chart-bar-grey.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_chevron-down.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_chevron-left.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_chevron-right.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_chevron-up.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_cog.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_delete-full.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_delete.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_directions-full.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_document-add.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_document-text.svg +0 -8
- novelwriter/assets/icons/typicons_dark/typ_document.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_export-grey.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_export.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_eye.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_flag.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_folder-open.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_folder.svg +0 -5
- novelwriter/assets/icons/typicons_dark/typ_globe-grey.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_key.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_lightbulb-full.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_location.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_media-pause-grey.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_media-record-outline.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_media-record.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_minus.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_pencil.svg +0 -5
- novelwriter/assets/icons/typicons_dark/typ_pin-outline.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_pin.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_plus.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_puzzle-outline.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_puzzle.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_refresh-flipped.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_refresh.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_search-grey.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_search.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_star.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_stopwatch-grey.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_th-dot-menu.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_th-dot-more.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_th-list-grey.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_th-list.svg +0 -9
- novelwriter/assets/icons/typicons_dark/typ_times.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_trash.svg +0 -5
- novelwriter/assets/icons/typicons_dark/typ_unfold-hidden.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_unfold-visible.svg +0 -4
- novelwriter/assets/icons/typicons_dark/typ_user.svg +0 -5
- novelwriter/assets/icons/typicons_dark/typ_warning-full.svg +0 -4
- novelwriter/assets/icons/typicons_light/README.md +0 -29
- novelwriter/assets/icons/typicons_light/icons.conf +0 -134
- novelwriter/assets/icons/typicons_light/mixed_copy.svg +0 -4
- novelwriter/assets/icons/typicons_light/mixed_document-chapter.svg +0 -12
- novelwriter/assets/icons/typicons_light/mixed_document-new.svg +0 -6
- novelwriter/assets/icons/typicons_light/mixed_document-note.svg +0 -12
- novelwriter/assets/icons/typicons_light/mixed_document-scene.svg +0 -12
- novelwriter/assets/icons/typicons_light/mixed_document-section.svg +0 -12
- novelwriter/assets/icons/typicons_light/mixed_document-title.svg +0 -12
- novelwriter/assets/icons/typicons_light/mixed_edit.svg +0 -4
- novelwriter/assets/icons/typicons_light/mixed_import.svg +0 -5
- novelwriter/assets/icons/typicons_light/mixed_input-checked.svg +0 -5
- novelwriter/assets/icons/typicons_light/mixed_input-none.svg +0 -5
- novelwriter/assets/icons/typicons_light/mixed_input-unchecked.svg +0 -5
- novelwriter/assets/icons/typicons_light/mixed_margin-bottom.svg +0 -6
- novelwriter/assets/icons/typicons_light/mixed_margin-left.svg +0 -6
- novelwriter/assets/icons/typicons_light/mixed_margin-right.svg +0 -6
- novelwriter/assets/icons/typicons_light/mixed_margin-top.svg +0 -6
- novelwriter/assets/icons/typicons_light/mixed_search-replace.svg +0 -6
- novelwriter/assets/icons/typicons_light/mixed_size-height.svg +0 -6
- novelwriter/assets/icons/typicons_light/mixed_size-width.svg +0 -6
- novelwriter/assets/icons/typicons_light/nw_deco-h0.svg +0 -4
- novelwriter/assets/icons/typicons_light/nw_deco-h1.svg +0 -4
- novelwriter/assets/icons/typicons_light/nw_deco-h2-narrow.svg +0 -4
- novelwriter/assets/icons/typicons_light/nw_deco-h2.svg +0 -4
- novelwriter/assets/icons/typicons_light/nw_deco-h3-narrow.svg +0 -4
- novelwriter/assets/icons/typicons_light/nw_deco-h3.svg +0 -4
- novelwriter/assets/icons/typicons_light/nw_deco-h4-narrow.svg +0 -4
- novelwriter/assets/icons/typicons_light/nw_deco-h4.svg +0 -4
- novelwriter/assets/icons/typicons_light/nw_deco-note.svg +0 -4
- novelwriter/assets/icons/typicons_light/nw_deco-noveltree-more.svg +0 -4
- novelwriter/assets/icons/typicons_light/nw_font.svg +0 -4
- novelwriter/assets/icons/typicons_light/nw_panel.svg +0 -4
- novelwriter/assets/icons/typicons_light/nw_quote.svg +0 -4
- novelwriter/assets/icons/typicons_light/nw_search-case.svg +0 -4
- novelwriter/assets/icons/typicons_light/nw_search-preserve.svg +0 -4
- novelwriter/assets/icons/typicons_light/nw_search-regex.svg +0 -4
- novelwriter/assets/icons/typicons_light/nw_search-word.svg +0 -4
- novelwriter/assets/icons/typicons_light/nw_tb-bold-md.svg +0 -4
- novelwriter/assets/icons/typicons_light/nw_tb-bold.svg +0 -6
- novelwriter/assets/icons/typicons_light/nw_tb-italic-md.svg +0 -4
- novelwriter/assets/icons/typicons_light/nw_tb-italic.svg +0 -6
- novelwriter/assets/icons/typicons_light/nw_tb-mark.svg +0 -7
- novelwriter/assets/icons/typicons_light/nw_tb-strike-md.svg +0 -4
- novelwriter/assets/icons/typicons_light/nw_tb-strike.svg +0 -6
- novelwriter/assets/icons/typicons_light/nw_tb-subscript.svg +0 -7
- novelwriter/assets/icons/typicons_light/nw_tb-superscript.svg +0 -7
- novelwriter/assets/icons/typicons_light/nw_tb-underline.svg +0 -7
- novelwriter/assets/icons/typicons_light/nw_toolbar.svg +0 -5
- novelwriter/assets/icons/typicons_light/typ_arrow-down-thick-grey.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_arrow-forward.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_arrow-maximise.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_arrow-minimise.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_arrow-repeat-grey.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_book-grey.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_book.svg +0 -6
- novelwriter/assets/icons/typicons_light/typ_bookmark.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_calendar.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_cancel-grey.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_cancel.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_chart-bar-grey.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_chevron-down.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_chevron-left.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_chevron-right.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_chevron-up.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_cog.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_delete-full.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_delete.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_directions-full.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_document-add.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_document-text.svg +0 -5
- novelwriter/assets/icons/typicons_light/typ_document.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_export-grey.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_export.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_eye.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_flag.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_folder-open.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_folder.svg +0 -5
- novelwriter/assets/icons/typicons_light/typ_globe-grey.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_key.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_lightbulb-full.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_location.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_media-pause-grey.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_media-record-outline.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_media-record.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_minus.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_pencil.svg +0 -5
- novelwriter/assets/icons/typicons_light/typ_pin-outline.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_pin.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_plus.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_puzzle-outline.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_puzzle.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_refresh-flipped.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_refresh.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_search-grey.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_search.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_star.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_stopwatch-grey.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_th-dot-menu.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_th-dot-more.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_th-list-grey.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_th-list.svg +0 -9
- novelwriter/assets/icons/typicons_light/typ_times.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_trash.svg +0 -5
- novelwriter/assets/icons/typicons_light/typ_unfold-hidden.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_unfold-visible.svg +0 -4
- novelwriter/assets/icons/typicons_light/typ_user.svg +0 -5
- novelwriter/assets/icons/typicons_light/typ_warning-full.svg +0 -4
- {novelWriter-2.6.3.dist-info → novelwriter-2.7b1.dist-info}/entry_points.txt +0 -0
- {novelWriter-2.6.3.dist-info → novelwriter-2.7b1.dist-info/licenses}/LICENSE.md +0 -0
- {novelWriter-2.6.3.dist-info → novelwriter-2.7b1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,109 @@
|
|
1
|
+
# This file is automatically generated. Do not edit.
|
2
|
+
|
3
|
+
# Meta
|
4
|
+
meta:name = Material Symbols - Filled Bold
|
5
|
+
meta:author = Google Inc
|
6
|
+
meta:license = Apache 2.0
|
7
|
+
|
8
|
+
# Icons
|
9
|
+
icon:alert_error = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M479.87-260.78q23.91 0 40.22-16.18 16.3-16.17 16.3-40.08 0-23.92-16.17-40.5-16.18-16.59-40.09-16.59-23.91 0-40.22 16.59-16.3 16.58-16.3 40.5 0 23.91 16.17 40.08 16.18 16.18 40.09 16.18Zm.13-178.09q22.09 0 37.54-15.46Q533-469.78 533-491.87v-147q0-22.09-15.46-37.54-15.45-15.46-37.54-15.46t-37.54 15.46Q427-660.96 427-638.87v147q0 22.09 15.46 37.54 15.45 15.46 37.54 15.46Zm0 378.09q-87.52 0-163.91-32.96-76.38-32.96-132.88-89.47-56.51-56.5-89.47-132.88Q60.78-392.48 60.78-480t32.96-163.91q32.96-76.38 89.47-132.88 56.5-56.51 132.88-89.47 76.39-32.96 163.91-32.96t163.91 32.96q76.38 32.96 132.88 89.47 56.51 56.5 89.47 132.88 32.96 76.39 32.96 163.91t-32.96 163.91q-32.96 76.38-89.47 132.88-56.5 56.51-132.88 89.47Q567.52-60.78 480-60.78Z" /></svg>
|
10
|
+
icon:alert_info = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-271.52q20.6 0 34.54-13.94 13.94-13.94 13.94-34.54v-151.52q0-20.6-13.94-34.54Q500.6-520 480-520t-34.54 13.94q-13.94 13.94-13.94 34.54V-320q0 20.6 13.94 34.54 13.94 13.94 34.54 13.94Zm0-317.18q21.8 0 36.55-14.75Q531.3-618.2 531.3-640q0-21.8-14.75-36.55Q501.8-691.3 480-691.3q-21.8 0-36.55 14.75Q428.7-661.8 428.7-640q0 21.8 14.75 36.55Q458.2-588.7 480-588.7Zm0 527.92q-87.52 0-163.91-32.96-76.38-32.96-132.88-89.47-56.51-56.5-89.47-132.88Q60.78-392.48 60.78-480t32.96-163.91q32.96-76.38 89.47-132.88 56.5-56.51 132.88-89.47 76.39-32.96 163.91-32.96t163.91 32.96q76.38 32.96 132.88 89.47 56.51 56.5 89.47 132.88 32.96 76.39 32.96 163.91t-32.96 163.91q-32.96 76.38-89.47 132.88-56.5 56.51-132.88 89.47Q567.52-60.78 480-60.78Z" /></svg>
|
11
|
+
icon:alert_question = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M476.3-240q23.27 0 39.74-16.48 16.48-16.48 16.48-39.82t-16.48-39.45q-16.47-16.12-39.74-16.12-23.26 0-39.74 16.12-16.47 16.11-16.47 39.45 0 23.34 16.47 39.82Q453.04-240 476.3-240ZM480-60.78q-87.52 0-163.91-32.96-76.38-32.96-132.88-89.47-56.51-56.5-89.47-132.88Q60.78-392.48 60.78-480t32.96-163.91q32.96-76.38 89.47-132.88 56.5-56.51 132.88-89.47 76.39-32.96 163.91-32.96t163.91 32.96q76.38 32.96 132.88 89.47 56.51 56.5 89.47 132.88 32.96 76.39 32.96 163.91t-32.96 163.91q-32.96 76.38-89.47 132.88-56.5 56.51-132.88 89.47Q567.52-60.78 480-60.78Zm2.3-579.35q20.45 0 35.57 13.42Q533-613.3 533-593.17q0 19.17-11.52 34.47-11.52 15.31-26.26 28.05-23 20-40.79 44.56-17.78 24.57-17.78 54.57 0 15.92 12.04 26.72Q460.74-394 476.8-394q17.2 0 29.4-11.41 12.19-11.42 17.45-28.11 5.13-18.74 17.15-33.26 12.03-14.52 26.33-27.83 23-21.43 38.37-48.28 15.37-26.85 15.37-58.28 0-52.13-40.65-86.05-40.65-33.91-95.09-33.91-40.26 0-75.61 17.13t-55.61 51.26q-8.13 13.7-5.1 29.44 3.03 15.75 16.36 23.91 15.7 9.69 33.24 5.85 17.55-3.85 29.81-18.98 9.87-12.74 24.17-20.18 14.31-7.43 29.91-7.43Z" /></svg>
|
12
|
+
icon:alert_warn = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M115.22-110.39q-14.96 0-26.83-7.37-11.88-7.36-18.48-19.41-6.69-11.83-7.19-25.78-.5-13.94 7.19-27.22L433.7-820q7.69-13.39 20.36-19.8 12.66-6.42 26-6.42 13.33 0 25.94 6.42 12.61 6.41 20.3 19.8l363.79 629.83q7.69 13.28 7.19 27.22-.5 13.95-7.19 25.78-6.7 11.82-18.52 19.3-11.83 7.48-26.79 7.48H115.22ZM480-241.7q17.57 0 30.2-12.63 12.63-12.63 12.63-30.19 0-17.57-12.63-29.92-12.63-12.34-30.2-12.34t-30.2 12.34q-12.63 12.35-12.63 29.92 0 17.56 12.63 30.19 12.63 12.63 30.2 12.63Zm0-118.3q17 0 28.5-11.5T520-400v-113.78q0-17-11.5-28.5t-28.5-11.5q-17 0-28.5 11.5t-11.5 28.5V-400q0 17 11.5 28.5T480-360Z" /></svg>
|
13
|
+
icon:cls_archive = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M206.78-100.78q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-471.87q0-19.09 6.48-36.33t18.3-31.63l66.4-77.39q14.39-17.39 34.84-26.31 20.46-8.91 42.42-8.91h421.56q21.96 0 42.42 8.91 20.45 8.92 34.84 26.31l66.4 77.39q11.82 14.39 18.3 31.63t6.48 36.33v471.87q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H206.78Zm29-613h488.44l-34-40H269.78l-34 40ZM480-556.04q-19.83 0-33.59 13.76-13.76 13.76-13.76 33.58v93.52l-21.3-21.3q-13.26-13.26-32.52-12.98-19.26.29-33.09 14.68-13.26 13.82-12.98 33.37.28 19.54 13.54 32.8l96.09 96.09q15.96 15.39 37.33 15.67 21.37.28 37.32-15.67l97.22-97.22q13.26-13.26 13.26-32.8 0-19.55-14.39-33.94-12.7-13.26-31.96-13.26t-32.52 13.26l-21.3 21.3v-93.52q0-19.82-13.76-33.58-13.76-13.76-33.59-13.76Z" /></svg>
|
14
|
+
icon:cls_character = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M22.48-263.52q0-39.09 20.32-72.11 20.33-33.02 54.42-50.28 63.69-31.57 129.95-47.63 66.26-16.07 134.53-16.07 69.39 0 135.65 15.78 66.26 15.79 128.82 47.35 34.09 17.26 54.42 50 20.32 32.74 20.32 72.96v26.35q0 44.3-30.84 75.15-30.85 30.85-75.16 30.85H128.48q-44.31 0-75.15-30.85-30.85-30.85-30.85-75.15v-26.35Zm724.56 132.35q17.22-23.09 25.55-50.09 8.32-27 8.32-55.91V-267q0-47.96-24.5-96.09T679-445.3q47.04 6.56 93.46 22.47 46.41 15.92 84.84 36.35 38.27 20 59.24 51 20.98 31 20.98 67.35v30.96q0 44.3-30.85 75.15-30.84 30.85-75.15 30.85h-84.48ZM361.7-489.61q-70.53 0-120.07-49.54-49.54-49.55-49.54-120.07t49.54-120.06q49.54-49.55 120.07-49.55 70.52 0 120.06 49.55 49.54 49.54 49.54 120.06 0 70.52-49.54 120.07-49.54 49.54-120.06 49.54Zm427.69-169.61q0 69.96-49.82 119.78-49.83 49.83-119.79 49.83-11.56 0-28-2.78-16.43-2.78-29.69-6.91 28.13-33.14 42.91-74.4 14.78-41.26 14.78-85.52T605-744.74q-14.78-41.26-42.91-74.39 14.56-5.57 28.56-7.63 14-2.07 29.13-2.07 69.96 0 119.79 49.83 49.82 49.82 49.82 119.78Z" /></svg>
|
15
|
+
icon:cls_custom = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M815.48-418.74 677.87-224.39q-14.39 21.09-37.26 32.35-22.87 11.26-48.52 11.26H206.78q-43.74 0-74.87-31.13-31.13-31.13-31.13-74.87v-386.44q0-43.74 31.13-74.87 31.13-31.13 74.87-31.13h385.31q25.65 0 48.52 11.55 22.87 11.54 37.26 32.06l137.61 194.35Q835-513.48 835-480t-19.52 61.26Z" /></svg>
|
16
|
+
icon:cls_entity = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M200-94q-44.3 0-75.15-30.85Q94-155.7 94-200v-400q0-44.3 30.85-75.15Q155.7-706 200-706h54v-54q0-44.3 30.85-75.15Q315.7-866 360-866h240q44.3 0 75.15 30.85Q706-804.3 706-760v214h54q44.3 0 75.15 30.85Q866-484.3 866-440v240q0 44.3-30.85 75.15Q804.3-94 760-94H520v-186h-80v186H200Zm0-106h80v-80h-80v80Zm0-160h80v-80h-80v80Zm0-160h80v-80h-80v80Zm160 160h80v-80h-80v80Zm0-160h80v-80h-80v80Zm0-160h80v-80h-80v80Zm160 320h80v-80h-80v80Zm0-160h80v-80h-80v80Zm0-160h80v-80h-80v80Zm160 480h80v-80h-80v80Zm0-160h80v-80h-80v80Z" /></svg>
|
17
|
+
icon:cls_none = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-405.91 293.04-218.96Q278.09-204 256-204t-37.04-14.96Q204-233.91 204-256t14.96-37.04L405.91-480 218.96-666.96Q204-681.91 204-704t14.96-37.04Q233.91-756 256-756t37.04 14.96L480-554.09l186.96-186.95Q681.91-756 704-756t37.04 14.96Q756-726.09 756-704t-14.96 37.04L554.09-480l186.95 186.96Q756-278.09 756-256t-14.96 37.04Q726.09-204 704-204t-37.04-14.96L480-405.91Z" /></svg>
|
18
|
+
icon:cls_novel = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M290.96-60.78q-62.53 0-106.35-43.83-43.83-43.82-43.83-106.35v-538.08q0-62.53 43.83-106.35 43.82-43.83 106.35-43.83h422.26q44.3 0 75.15 30.85 30.85 30.85 30.85 75.15v508.35q0 9.7-6.22 17.89-6.22 8.2-19.82 14.5-11.18 5.31-17.48 16.33-6.31 11.02-6.31 25.19 0 14.18 6.31 25.42 6.3 11.24 17.48 16.11 12.3 5.43 19.17 17.06 6.87 11.63 6.87 27.59v13.39q0 20.96-14.61 35.78Q790-60.78 769.04-60.78H290.96ZM371.3-361.7q20.96 0 35.57-14.6 14.61-14.61 14.61-35.57V-748.7q0-20.95-14.61-35.56-14.61-14.61-35.57-14.61-20.95 0-35.56 14.61-14.61 14.61-14.61 35.56v336.83q0 20.96 14.61 35.57 14.61 14.6 35.56 14.6Zm-80.34 200.57h387.13q-4.31-11.74-6.68-23.98t-2.37-25.85q0-13.17 2.16-25.63 2.15-12.45 6.89-24.19H290.96q-21.48 0-35.66 14.67-14.17 14.68-14.17 35.15 0 21.48 14.17 35.66 14.18 14.17 35.66 14.17Z" /></svg>
|
19
|
+
icon:cls_object = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M280-360q-50 0-85-35t-35-85q0-50 35-85t85-35q50 0 85 35t35 85q0 50-35 85t-85 35Zm0 137.52q80.96 0 147.48-45.98 66.52-45.97 93.78-123.06h10.61l38.43 39q8.27 7.69 17.81 11.04 9.54 3.35 19.8 3.35 10.26 0 19.53-3.35 9.26-3.35 17.52-11.61L693-401.13l57 49.35q8.26 7.26 17.74 10.89 9.48 3.63 19.74 3.19 10.26-.43 19.3-4.21 9.05-3.79 16.87-12.05l83.22-89.43q7.83-8.26 11.17-17.52 3.35-9.26 3.35-19.52 0-10.27-3.56-19.59-3.57-9.33-11.39-17.15l-36.48-35.92q-7.7-7.69-17.18-11.54-9.48-3.85-20.3-3.85H520.7q-24.57-73.09-90.16-121.06-65.58-47.98-150.54-47.98-107.35 0-182.44 75.08Q22.48-587.35 22.48-480q0 106.78 75.37 182.15T280-222.48Z" /></svg>
|
20
|
+
icon:cls_plot = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M362.17-100.78H200q-40.93 0-70.07-29.15-29.15-29.14-29.15-70.07v-162.17q42.35 0 72.7-27.96 30.34-27.96 30.34-69.87 0-41.91-30.34-69.87-30.35-27.96-72.7-27.96V-720q0-40.93 29.15-70.07 29.14-29.15 70.07-29.15h143.61q6.22-45.39 39.17-74.67 32.96-29.29 77.22-29.29t77.22 29.29q32.95 29.28 39.17 74.67H720q40.93 0 70.07 29.15 29.15 29.14 29.15 70.07v143.61q45.39 6.22 74.67 39.17 29.29 32.96 29.29 77.22t-29.29 77.22q-29.28 32.95-74.67 39.17V-200q0 40.93-29.15 70.07-29.14 29.15-70.07 29.15H557.83q0-46.61-28.54-79.07Q500.76-212.3 460-212.3q-40.76 0-69.29 32.52-28.54 32.53-28.54 79Z" /></svg>
|
21
|
+
icon:cls_template = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M166.78-140.78q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-466.44q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h181q21.23 0 40.46 7.98 19.24 7.98 34.19 22.94L480-730.74h313.22q44.3 0 75.15 30.85 30.85 30.85 30.85 75.15v377.96q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H166.78ZM280-315.48h240q17 0 28.5-11.5t11.5-28.5q0-17-11.5-28.5t-28.5-11.5H280q-17 0-28.5 11.5t-11.5 28.5q0 17 11.5 28.5t28.5 11.5Zm0-160h400q17 0 28.5-11.5t11.5-28.5q0-17-11.5-28.5t-28.5-11.5H280q-17 0-28.5 11.5t-11.5 28.5q0 17 11.5 28.5t28.5 11.5Z" /></svg>
|
22
|
+
icon:cls_timeline = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M326.78-166.78h306.44V-280q0-63.74-44.74-108.48T480-433.22q-63.74 0-108.48 44.74T326.78-280v113.22Zm153.22-360q63.74 0 108.48-44.74T633.22-680v-113.22H326.78V-680q0 63.74 44.74 108.48T480-526.78Zm-286.22 466q-22.08 0-37.54-15.46t-15.46-37.54q0-22.09 15.46-37.55 15.46-15.45 37.54-15.45h27V-280q0-58.74 25.39-111.67 25.39-52.94 71.31-88.33-45.92-35.39-71.31-88.33-25.39-52.93-25.39-111.67v-113.22h-27q-22.08 0-37.54-15.45-15.46-15.46-15.46-37.55 0-22.08 15.46-37.54t37.54-15.46h572.44q22.08 0 37.54 15.46t15.46 37.54q0 22.09-15.46 37.55-15.46 15.45-37.54 15.45h-27V-680q0 58.74-25.11 111.67Q689-515.39 642.52-480q46.48 35.39 71.59 88.33 25.11 52.93 25.11 111.67v113.22h27q22.08 0 37.54 15.45 15.46 15.46 15.46 37.55 0 22.08-15.46 37.54t-37.54 15.46H193.78Z" /></svg>
|
23
|
+
icon:cls_trash = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M273.78-100.78q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-507q-22.09 0-37.54-15.46-15.46-15.46-15.46-37.54 0-22.09 15.46-37.55 15.45-15.45 37.54-15.45H347q0-22.09 15.46-37.55 15.45-15.45 37.54-15.45h158.87q22.09 0 37.54 15.45 15.46 15.46 15.46 37.55h180.35q22.09 0 37.54 15.45 15.46 15.46 15.46 37.55 0 22.08-15.46 37.54-15.45 15.46-37.54 15.46v507q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H273.78Zm122.83-179.79q19.26 0 32.74-13.47 13.48-13.48 13.48-32.74v-267.57q0-19.26-13.48-32.74t-32.74-13.48q-19.26 0-33.02 13.48-13.76 13.48-13.76 32.74v267.57q0 19.26 13.76 32.74 13.76 13.47 33.02 13.47Zm167.35 0q19.26 0 32.74-13.47 13.47-13.48 13.47-32.74v-267.57q0-19.26-13.47-32.74-13.48-13.48-32.74-13.48t-33.03 13.48q-13.76 13.48-13.76 32.74v267.57q0 19.26 13.76 32.74 13.77 13.47 33.03 13.47Z" /></svg>
|
24
|
+
icon:cls_world = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-60.78q-87.52 0-163.91-32.96-76.38-32.96-132.88-89.47-56.51-56.5-89.47-132.88Q60.78-392.48 60.78-480t32.96-163.91q32.96-76.38 89.47-132.88 56.5-56.51 132.88-89.47 76.39-32.96 163.91-32.96t163.91 32.96q76.38 32.96 132.88 89.47 56.51 56.5 89.47 132.88 32.96 76.39 32.96 163.91t-32.96 163.91q-32.96 76.38-89.47 132.88-56.5 56.51-132.88 89.47Q567.52-60.78 480-60.78Zm0-106q121.56 0 208.63-78.31 87.06-78.3 100.07-194.78 0-3.04-.22-6.3t-.22-5.44q-8.96 19.39-27.56 31.33-18.61 11.93-42.4 11.93h-76.04q-35.8 0-61.29-25.49-25.49-25.49-25.49-61.29v-43.39H381.91v-82.26q0-36.03 25.49-61.69 25.5-25.66 61.3-25.66h43.39q0-26.59 13.91-46.81 13.91-20.23 34.17-27.84-19.44-4.75-39.37-7.59-19.93-2.85-40.8-2.85-131.74 0-222.48 90.74-90.74 90.74-90.74 222.48 0 2.83.29 5.65.28 2.83.28 5.65h165.52q72.22 0 122.89 50.68 50.67 50.67 50.67 122.66v43.62H376.26v66.48q24.52 8.96 50.27 13.72 25.74 4.76 53.47 4.76Z" /></svg>
|
25
|
+
icon:prj_folder = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M166.78-140.78q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-466.44q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h181q21.09 0 40.39 7.98 19.31 7.98 34.26 22.94L480-730.74h313.22q44.3 0 75.15 30.85 30.85 30.85 30.85 75.15v377.96q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H166.78Z" /></svg>
|
26
|
+
icon:prj_document = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M206.78-100.78q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-546.44q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h389.48q21.09 0 40.39 7.98 19.31 7.98 34.26 22.94L828.3-670.91q14.96 14.95 22.94 34.26 7.98 19.3 7.98 40.39v389.48q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H206.78Zm377.39-652.44v116.05q0 22.08 15.46 37.54t37.54 15.46h116.05L584.17-753.22Zm60.35 468.7q17.57 0 29.63-12.35 12.07-12.35 12.07-29.91 0-17.57-12.07-29.63-12.06-12.07-29.63-12.07H315.48q-17.57 0-29.63 12.07-12.07 12.06-12.07 29.63 0 17.56 12.35 29.91 12.35 12.35 29.91 12.35h328.48ZM455.26-587q17.57 0 29.91-12.35 12.35-12.35 12.35-29.91 0-17.57-12.35-29.91-12.34-12.35-29.91-12.35H316.04q-17.56 0-29.91 12.35-12.35 12.34-12.35 29.91 0 17.56 12.35 29.91Q298.48-587 316.04-587h139.22Zm188.7 151.52q17.56 0 29.91-12.35 12.35-12.34 12.35-29.91 0-17.56-12.35-29.91Q661.52-520 643.96-520H316.04q-17.56 0-29.91 12.35-12.35 12.35-12.35 29.91 0 17.57 12.35 29.91 12.35 12.35 29.91 12.35h327.92Z" /></svg>
|
27
|
+
icon:prj_title = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M206.78-100.78q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-546.44q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h389.48q21.09 0 40.39 7.98 19.31 7.98 34.26 22.94L828.3-670.91q14.96 14.95 22.94 34.26 7.98 19.3 7.98 40.39v389.48q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H206.78Zm377.39-652.44v116.05q0 22.08 15.46 37.54t37.54 15.46h116.05L584.17-753.22Zm60.35 468.7q17.57 0 29.63-12.35 12.07-12.35 12.07-29.91 0-17.57-12.07-29.63-12.06-12.07-29.63-12.07H315.48q-17.57 0-29.63 12.07-12.07 12.06-12.07 29.63 0 17.56 12.35 29.91 12.35 12.35 29.91 12.35h328.48ZM455.26-587q17.57 0 29.91-12.35 12.35-12.35 12.35-29.91 0-17.57-12.35-29.91-12.34-12.35-29.91-12.35H316.04q-17.56 0-29.91 12.35-12.35 12.34-12.35 29.91 0 17.56 12.35 29.91Q298.48-587 316.04-587h139.22Zm188.7 151.52q17.56 0 29.91-12.35 12.35-12.34 12.35-29.91 0-17.56-12.35-29.91Q661.52-520 643.96-520H316.04q-17.56 0-29.91 12.35-12.35 12.35-12.35 29.91 0 17.57 12.35 29.91 12.35 12.35 29.91 12.35h327.92Z" /></svg>
|
28
|
+
icon:prj_chapter = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M206.78-100.78q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-546.44q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h389.48q21.09 0 40.39 7.98 19.31 7.98 34.26 22.94L828.3-670.91q14.96 14.95 22.94 34.26 7.98 19.3 7.98 40.39v389.48q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H206.78Zm377.39-652.44v116.05q0 22.08 15.46 37.54t37.54 15.46h116.05L584.17-753.22Zm60.35 468.7q17.57 0 29.63-12.35 12.07-12.35 12.07-29.91 0-17.57-12.07-29.63-12.06-12.07-29.63-12.07H315.48q-17.57 0-29.63 12.07-12.07 12.06-12.07 29.63 0 17.56 12.35 29.91 12.35 12.35 29.91 12.35h328.48ZM455.26-587q17.57 0 29.91-12.35 12.35-12.35 12.35-29.91 0-17.57-12.35-29.91-12.34-12.35-29.91-12.35H316.04q-17.56 0-29.91 12.35-12.35 12.34-12.35 29.91 0 17.56 12.35 29.91Q298.48-587 316.04-587h139.22Zm188.7 151.52q17.56 0 29.91-12.35 12.35-12.34 12.35-29.91 0-17.56-12.35-29.91Q661.52-520 643.96-520H316.04q-17.56 0-29.91 12.35-12.35 12.35-12.35 29.91 0 17.57 12.35 29.91 12.35 12.35 29.91 12.35h327.92Z" /></svg>
|
29
|
+
icon:prj_scene = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M206.78-100.78q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-546.44q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h389.48q21.09 0 40.39 7.98 19.31 7.98 34.26 22.94L828.3-670.91q14.96 14.95 22.94 34.26 7.98 19.3 7.98 40.39v389.48q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H206.78Zm377.39-652.44v116.05q0 22.08 15.46 37.54t37.54 15.46h116.05L584.17-753.22Zm60.35 468.7q17.57 0 29.63-12.35 12.07-12.35 12.07-29.91 0-17.57-12.07-29.63-12.06-12.07-29.63-12.07H315.48q-17.57 0-29.63 12.07-12.07 12.06-12.07 29.63 0 17.56 12.35 29.91 12.35 12.35 29.91 12.35h328.48ZM455.26-587q17.57 0 29.91-12.35 12.35-12.35 12.35-29.91 0-17.57-12.35-29.91-12.34-12.35-29.91-12.35H316.04q-17.56 0-29.91 12.35-12.35 12.34-12.35 29.91 0 17.56 12.35 29.91Q298.48-587 316.04-587h139.22Zm188.7 151.52q17.56 0 29.91-12.35 12.35-12.34 12.35-29.91 0-17.56-12.35-29.91Q661.52-520 643.96-520H316.04q-17.56 0-29.91 12.35-12.35 12.35-12.35 29.91 0 17.57 12.35 29.91 12.35 12.35 29.91 12.35h327.92Z" /></svg>
|
30
|
+
icon:prj_note = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="m553.22-206.78 200-200h-147q-22.09 0-37.55 15.45-15.45 15.46-15.45 37.55v147Zm-346.44 106q-43.72 0-74.86-31.14t-31.14-74.86v-546.44q0-43.72 31.14-74.86t74.86-31.14h546.44q43.72 0 74.86 31.14t31.14 74.86v352.31q0 21.22-7.98 40.46-7.98 19.23-22.94 34.19L633.74-131.7q-14.96 14.96-34.19 22.94-19.24 7.98-40.46 7.98H206.78Zm123.96-292.44h107q18.68 0 31.32-12.8t12.64-31.72q0-18.68-12.64-31.32t-31.32-12.64H331.3q-18.92 0-31.72 12.64-12.8 12.65-12.8 31.33 0 18.69 12.64 31.6t31.32 12.91Zm0-168.48h298.52q18.68 0 31.32-12.8t12.64-31.72q0-18.68-12.64-31.32-12.64-12.63-31.32-12.63H331.3q-18.92 0-31.72 12.64-12.8 12.64-12.8 31.32 0 18.69 12.64 31.6t31.32 12.91Z" /></svg>
|
31
|
+
icon:fmt_bold = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M349.74-181.35q-44.31 0-75.15-30.85-30.85-30.84-30.85-75.15v-385.87q0-44.3 30.85-75.15 30.84-30.85 75.15-30.85h161.35q72.35 0 128.76 44.81 56.41 44.8 56.41 118.06 0 44.22-20.17 75.96-20.18 31.74-48.65 46.56v1.7q35.74 14.96 62.28 50.61t26.54 88.87q0 83.35-63.3 127.32-63.31 43.98-135 43.98H349.74Zm34.22-122.17h118.13q36.69 0 52.84-20.83 16.16-20.82 16.16-40.87 0-20.04-16.16-41.15-16.15-21.11-54.15-21.11H383.96v123.96Zm0-242.7h108.26q28.48 0 45.45-16.72 16.98-16.71 16.98-39.41 0-24-17.85-39.85-17.84-15.84-43.71-15.84H383.96v111.82Z" /></svg>
|
32
|
+
icon:fmt_italic = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M248.87-181.35q-26.09 0-44.54-18.45-18.46-18.46-18.46-44.55 0-26.08 18.46-44.54 18.45-18.46 44.54-18.46h100.39l114.91-344.17h-91.91q-26.09 0-44.54-18.46-18.46-18.45-18.46-44.54t18.46-44.55q18.45-18.45 44.54-18.45h300q26.09 0 44.54 18.45 18.46 18.46 18.46 44.55 0 26.09-18.46 44.54-18.45 18.46-44.54 18.46h-80.39L476.96-307.35h71.91q26.09 0 44.54 18.46 18.46 18.46 18.46 44.54 0 26.09-18.46 44.55-18.45 18.45-44.54 18.45h-300Z" /></svg>
|
33
|
+
icon:fmt_mark = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M168.48 0q-36.96 0-62.72-26.04Q80-52.09 80-89.04q0-36.96 26.04-62.72 26.05-25.76 63-25.76h622.48q36.96 0 62.72 25.76Q880-126 880-89.04q0 36.95-26.04 63Q827.91 0 790.96 0H168.48Zm278.13-701.61 250.48 251.48-162.26 162.26q-30.78 30.78-74.59 30.78-43.8 0-74.59-30.78l-2.17 1.74q-14.96 13.52-33.33 21.06-18.37 7.55-38.58 7.55h-94.31q-17.95 0-24.87-16.24-6.91-16.24 5.92-29.07l86.91-85.91q-31.35-31.35-32.07-75.02-.71-43.68 30.63-75.03l162.83-162.82Zm57.13-57.57 118.17-117.73q31.92-31.92 74.87-31.92 42.96 0 74.87 31.92l101.18 101.3q31.91 31.91 31.91 74.87 0 42.96-31.91 74.87L754.66-507.7 503.74-759.18Z" /></svg>
|
34
|
+
icon:fmt_strike = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M490.52-138.52q-66.39 0-123.28-34.91-56.89-34.92-89.02-93.74-10.13-18.26-2.5-38.59 7.63-20.33 26.89-31.02 20.82-11.7 43.72-4.35 22.89 7.35 36.71 28.17 18 28.31 46.81 45.74 28.8 17.44 62.11 17.44 38.34 0 67.17-23.33 28.83-23.32 28.83-59.67v-5.65q-.57-23.4 15.97-40.22 16.55-16.83 39.94-17.39 23.39-.57 40.15 15.69 16.76 16.26 17.89 39.65 0 3.57.29 6.85.28 3.29.28 6.85 0 82.39-63.35 135.44-63.35 53.04-148.61 53.04ZM120-475.48q-18.7 0-31.61-12.91T75.48-520q0-18.7 12.91-31.61T120-564.52h720q18.7 0 31.61 12.91T884.52-520q0 18.7-12.91 31.61T840-475.48H120Zm203.48-176.3q-20.39-12.26-26.68-35.16-6.28-22.89 5.98-43.28 27.26-47.56 75.96-71.56 48.69-24 104.39-24 49.13 0 93.04 20 43.92 20 74.05 58.56 12.69 15.7 7.85 35.39-4.85 19.7-21.55 32.39-19.82 14.83-43.56 11.27-23.74-3.57-41.7-20.7-13.87-13.04-31.04-19.35-17.18-6.3-36.22-6.3-24.74 0-47.2 10.15-22.45 10.15-34.89 31.46-12.26 20.82-35.15 27.11-22.89 6.28-43.28-5.98Z" /></svg>
|
35
|
+
icon:fmt_subscript = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M824.31-140.78q-18.69 0-31.32-12.57-12.64-12.58-12.64-31.16v-43.73q0-18.59 12.64-31.22 12.63-12.63 31.32-12.63h66.99v-28.69H806q-10.82 0-18.24-7.41-7.41-7.42-7.41-18.24 0-10.83 7.41-18.24 7.42-7.42 18.24-7.42h92.65q18.68 0 31.32 12.58 12.64 12.57 12.64 31.15v43.73q0 18.59-12.64 31.22-12.64 12.63-31.32 12.63h-67v28.69h85.31q10.82 0 18.24 7.42 7.41 7.41 7.41 18.24 0 10.82-7.41 18.24-7.42 7.41-18.24 7.41h-92.65Zm-510.14-80q-33.45 0-48.94-28.65-15.49-28.66 1.9-56.74l143.26-225.4-130.26-203.82q-17.39-27.09-1.86-55.46 15.52-28.37 47.82-28.37 14.91 0 27.17 6.91 12.26 6.92 19.96 19.18l105.91 171.65h1.74L586.35-793.7q7.13-12.15 19.61-18.83 12.47-6.69 26.09-6.69 33.43 0 48.82 28.37t-2 56.46L548.61-531.57l144.26 225.96q17.39 28.09 1.85 56.46-15.55 28.37-48.2 28.37-15.08 0-27.64-6.83-12.56-6.84-20.1-19.26L480.87-436.65h-1.74L360.65-246.87q-7.13 12.42-19.61 19.26-12.47 6.83-26.87 6.83Z" /></svg>
|
36
|
+
icon:fmt_superscript = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M824.31-607.91q-18.69 0-31.32-12.58-12.64-12.57-12.64-31.15v-43.73q0-18.59 12.64-31.22 12.63-12.63 31.32-12.63h66.99v-28.69H806q-10.82 0-18.24-7.42-7.41-7.41-7.41-18.24 0-10.82 7.41-18.24 7.42-7.41 18.24-7.41h92.65q18.68 0 31.32 12.57 12.64 12.58 12.64 31.16v43.73q0 18.59-12.64 31.22-12.64 12.63-31.32 12.63h-67v28.69h85.31q10.82 0 18.24 7.41 7.41 7.42 7.41 18.24 0 10.83-7.41 18.24-7.42 7.42-18.24 7.42h-92.65ZM314.17-140.78q-33.45 0-48.94-28.65-15.49-28.66 1.9-56.74l143.26-225.4-130.26-203.82q-17.39-27.09-1.86-55.46 15.52-28.37 47.82-28.37 14.91 0 27.17 6.91 12.26 6.92 19.96 19.18l105.91 171.65h1.74L586.35-713.7q7.13-12.15 19.61-18.83 12.47-6.69 26.09-6.69 33.43 0 48.82 28.37t-2 56.46L548.61-451.57l144.26 225.96q17.39 28.09 1.85 56.46-15.55 28.37-48.2 28.37-15.08 0-27.64-6.83-12.56-6.84-20.1-19.26L480.87-356.65h-1.74L360.65-166.87q-7.13 12.42-19.61 19.26-12.47 6.83-26.87 6.83Z" /></svg>
|
37
|
+
icon:fmt_underline = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M240-74.78q-22.09 0-37.54-15.46Q187-105.69 187-127.78t15.46-37.54q15.45-15.46 37.54-15.46h480q22.09 0 37.54 15.46Q773-149.87 773-127.78t-15.46 37.54Q742.09-74.78 720-74.78H240Zm240-176.96q-112.3 0-176.78-67.52t-64.48-181.13V-774.3q0-26.09 18.89-44.76 18.89-18.68 44.98-18.68 26.09 0 44.76 18.68 18.67 18.67 18.67 44.76v276.52q0 54.87 29.98 87.89T480-376.87q54 0 83.98-33.02 29.98-33.02 29.98-87.89V-774.3q0-26.09 18.89-44.76 18.89-18.68 44.98-18.68 26.08 0 44.76 18.68 18.67 18.67 18.67 44.76v273.91q0 113.61-64.48 181.13T480-251.74Z" /></svg>
|
38
|
+
icon:fmt_toolbar = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M240-191.52q-22.09 0-37.54-15.46Q187-222.43 187-244.52t15.46-37.55q15.45-15.45 37.54-15.45h480q22.09 0 37.54 15.45Q773-266.61 773-244.52q0 22.09-15.46 37.54-15.45 15.46-37.54 15.46H240Zm53.43-239.66 129.66-348.21q5.13-13.26 16.61-21.18 11.47-7.91 25.73-7.91h33.66q14.82 0 26.3 8.2 11.48 8.19 16.61 21.45l129.09 346.96q8.82 23.22-5.42 43.3-14.24 20.09-39.02 20.09-16.09 0-28.69-9.04-12.61-9.05-17.74-24.57l-22.66-68.21H403.87l-24.65 71.47q-4.57 14.39-16.39 22.37-11.83 7.98-26.22 7.98-24.65 0-38.26-20.02t-4.92-42.68Zm132.44-114.99h109.39L482.57-703.3h-4l-52.7 157.13Z" /></svg>
|
39
|
+
icon:search = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M375.48-307q-114.09 0-193.55-79.46-79.45-79.45-79.45-193.54 0-114.09 79.45-193.54Q261.39-853 375.48-853q114.09 0 193.54 79.46 79.46 79.45 79.46 193.54 0 45.13-12.87 83.28T601-429.7l219.48 220.05q14.96 15.52 14.96 37.32 0 21.81-15.53 36.77-14.95 14.95-37.04 14.95t-37.04-14.95L526.91-354.48q-29.43 21.74-68.15 34.61Q420.04-307 375.48-307Zm0-106q69.91 0 118.45-48.54 48.55-48.55 48.55-118.46t-48.55-118.46Q445.39-747 375.48-747t-118.46 48.54Q208.48-649.91 208.48-580t48.54 118.46Q305.57-413 375.48-413Z" /></svg>
|
40
|
+
icon:search_cancel = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-405.91 293.04-218.96Q278.09-204 256-204t-37.04-14.96Q204-233.91 204-256t14.96-37.04L405.91-480 218.96-666.96Q204-681.91 204-704t14.96-37.04Q233.91-756 256-756t37.04 14.96L480-554.09l186.96-186.95Q681.91-756 704-756t37.04 14.96Q756-726.09 756-704t-14.96 37.04L554.09-480l186.95 186.96Q756-278.09 756-256t-14.96 37.04Q726.09-204 704-204t-37.04-14.96L480-405.91Z" /></svg>
|
41
|
+
icon:search_case = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="m242.48-351.56-28.61 78.82q-4.57 12.7-15.26 20.11-10.7 7.41-23.96 7.41-22.39 0-34.87-18.32-12.48-18.33-4.91-38.72l132.91-358.39q4.57-13.26 16.33-21.46 11.76-8.19 25.59-8.19h33.08q13.83 0 25.81 7.91 11.98 7.91 16.54 21.17l134.04 359.96q7.57 20.39-4.84 38.22-12.42 17.82-34.37 17.82-13.26 0-24.24-7.91-10.98-7.91-15.55-20.61l-27.61-77.82H242.48Zm25.26-77.57h117.43l-57.21-163.91h-3.44l-56.78 163.91Zm404.61 194.48q-51 0-82.98-29.48-31.98-29.48-31.98-75.61 0-46.26 35.91-75.61 35.92-29.35 93.31-29.35 23 0 44.43 4 21.44 4 35.74 11.57v-17.65q0-23.92-19.08-39.94-19.09-16.02-47.44-16.02-13.87 0-26.95 3.94-13.09 3.93-24.53 10.67-16.95 9.43-29.87 5.02-12.91-4.41-20.47-14.67-7.57-10.26-6.44-23.24Q593.13-534 605.83-542q21.69-14.87 47.54-22.09 25.85-7.21 52.41-7.21 65.61 0 101.59 34.76 35.98 34.76 35.98 96.93v162.26q0 15.83-11.2 26.81-11.19 10.98-27.02 10.98t-27.09-11.2q-11.26-11.2-11.26-26.46v-2.17h-3.43q-12.87 21.3-37.44 33.02-24.56 11.72-53.56 11.72ZM690-298.83q32.17 0 54.7-21.74 22.52-21.73 22.52-52.04-11.18-6.3-27.57-9.39-16.39-3.09-35.95-3.09-32 0-48.87 11.46-16.87 11.46-16.87 32.76 0 18.3 14.58 30.17 14.59 11.87 37.46 11.87Z" /></svg>
|
42
|
+
icon:search_loop = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M67-520q0-122.09 85.46-207.54Q237.91-813 360-813h240q122.09 0 207.54 85.46Q893-642.09 893-520q0 103-62.61 183.54-62.61 80.55-163.48 102.63-23.08 5.27-41.61-8.84-18.52-14.11-18.52-37.33 0-22.65 16.89-38.61 16.9-15.96 39.42-24.48 57.13-19.39 90.52-68.24Q787-460.17 787-520q0-77.91-54.54-132.46Q677.91-707 600-707H360q-77.91 0-132.46 54.54Q173-597.91 173-520q0 70 44.37 122.85 44.37 52.84 112.67 61.32h3.05l-15.66-15.65q-14.39-14.39-11.84-34.85 2.54-20.45 17.37-35.28 15.52-15.52 37.32-15.52 21.81 0 37.33 15.52l103.43 103.44Q517-302.22 517-280.57q0 21.66-15.96 37.61l-104 104q-15.52 15.53-37.67 14.96-22.15-.56-38.11-16.09-14.83-14.82-14.83-36.13 0-21.3 14.83-36.13l15.22-15.21h-3.05q-114.17-6.22-190.3-91.4Q67-404.13 67-520Z" /></svg>
|
43
|
+
icon:search_preserve = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M331.09-140.78q-28.82 0-49-19.76t-20.18-48.72v-471.87H129.83q-28.77 0-48.91-20.18-20.14-20.17-20.14-49 0-28.82 20.14-48.86 20.14-20.05 48.91-20.05h402.26q28.76 0 48.9 20.18 20.14 20.17 20.14 49 0 28.82-20.14 48.87-20.14 20.04-48.9 20.04H399.43v471.3q0 28.77-19.76 48.91-19.76 20.14-48.58 20.14Zm379.22 0q-28.83 0-49-19.76-20.18-19.76-20.18-48.72v-253.78h-51.52q-28.77 0-48.91-20.18-20.13-20.18-20.13-49t19.76-48.58q19.76-19.77 48.71-19.77h241.7q28.96 0 48.72 19.77 19.76 19.76 19.76 48.58 0 28.82-19.76 49t-48.72 20.18h-52.09v253.21q0 28.77-19.76 48.91-19.76 20.14-48.58 20.14Z" /></svg>
|
44
|
+
icon:search_project = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M672.44-200q36.34 0 61.67-25.33 25.32-25.32 25.32-61.67t-25.32-61.67Q708.78-374 672.44-374q-36.35 0-61.68 25.33-25.32 25.32-25.32 61.67t25.32 61.67Q636.09-200 672.44-200ZM913.48-45.96Q898.52-31 876.44-31q-22.09 0-37.05-14.96l-73.22-72.65q-21 12.31-44.65 18.46T672.44-94q-80.66 0-136.83-56.17-56.18-56.18-56.18-136.83t56.18-136.83Q591.78-480 672.44-480q80.65 0 136.82 56.17 56.18 56.18 56.18 136.83 0 25.44-6.16 49.09-6.15 23.65-18.45 44.65l72.65 73.22q14.96 14.95 14.96 37.04t-14.96 37.04Zm-706.7-14.82q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-626.44q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h277.39q21.09 0 40.4 7.98 19.3 7.98 34.26 22.94L748.3-678.83q14.96 14.96 22.94 34.26 7.98 19.31 7.98 40.4v7.82q0 20.83-17.05 33.52-17.04 12.7-38.43 7.7-12.44-3-25.15-3.94-12.72-.93-26.15-.93-121.96 0-197.92 83.39-75.95 83.39-75.95 190.61 0 40.04 12.39 80.22 12.39 40.17 39.17 76.48 15.7 21.78 5.65 45.15-10.04 23.37-33.69 23.37H206.78Zm266.44-732.44v147q0 22.09 15.45 37.55 15.46 15.45 37.55 15.45h147l-200-200 200 200-200-200Z" /></svg>
|
45
|
+
icon:search_regex = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M34.78-482q0-71.83 24.48-138.02 24.48-66.2 69.04-122.46 14.39-16.96 36.26-18.24 21.87-1.28 37.83 14.68 15.96 15.95 16.17 38.11.22 22.15-13.6 40.67-30.74 40.3-47.46 87.2-16.72 46.89-16.72 98.06 0 50.61 17.15 97.78 17.16 47.18 47.46 87.48 13.83 18.52 13.61 40.46-.22 21.93-16.18 37.89-15.95 15.96-37.82 15.17-21.87-.78-35.7-18.3-44.13-56.26-69.32-122.46-25.2-66.19-25.2-138.02ZM380-227q-30.65 0-51.83-21.17Q307-269.35 307-300t21.17-51.83Q349.35-373 380-373t51.83 21.17Q453-330.65 453-300t-21.17 51.83Q410.65-227 380-227Zm179-205.65q-19.83 0-33.59-13.76-13.76-13.76-13.76-33.59v-18l-15.26 9.22q-16.82 9.69-35.87 4.91-19.04-4.78-28.74-22.17-9.69-17.39-4.63-36.44 5.07-19.04 22.46-28.74L464.3-580l-15.69-8.78q-16.83-9.7-21.96-28.74-5.13-19.05 4.57-35.87 9.69-17.83 29.02-22.46 19.33-4.63 36.72 5.07l14.69 8.78v-18q0-19.83 13.76-33.59 13.76-13.76 33.59-13.76 19.83 0 33.59 13.76 13.76 13.76 13.76 33.59v18l15.26-9.22q16.82-9.69 35.87-4.91 19.04 4.78 28.74 22.17 9.69 17.39 4.63 36.44-5.07 19.04-22.46 28.74L653.7-580l15.69 8.78q16.83 9.7 21.96 28.74 5.13 19.05-4.57 35.87-9.69 17.83-29.02 22.46-19.33 4.63-36.72-5.07L606.35-498v18q0 19.83-13.76 33.59-13.76 13.76-33.59 13.76ZM925.22-482q0 71.83-24.48 138.3-24.48 66.48-69.04 122.74-14.39 16.96-36.26 17.74-21.87.79-37.83-15.17-15.96-15.96-16.17-37.89-.22-21.94 13.6-40.46 30.74-40.3 47.46-87.48 16.72-47.17 16.72-97.78 0-51.17-17.72-98.63-17.72-47.46-48.02-87.76-13.83-17.96-12.83-40.11t16.96-37.54q15.96-15.96 37.61-14.68 21.65 1.28 35.48 18.24 44.13 56.26 69.32 122.46 25.2 66.19 25.2 138.02Z" /></svg>
|
46
|
+
icon:search_replace = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M440-713.22q-57.35 0-104.17 30.26Q289-652.7 265.3-602.91q-8.82 18.39-27.13 27.3-18.3 8.91-38.82 4.78-21.09-4.13-33.42-20.58-12.32-16.46-5.06-34.98 31.52-85.13 106.91-138.98 75.39-53.85 172.22-53.85 66.35 0 118.98 22.22 52.63 22.22 89.5 62.91v-29.87q0-18.69 12.91-31.61 12.91-12.91 31.61-12.91t31.61 12.91q12.91 12.92 12.91 31.61V-613q0 22.09-15.45 37.54Q706.61-560 684.52-560H532.44q-18.7 0-31.33-12.91-12.63-12.92-12.63-31.61 0-18.7 12.91-31.33 12.91-12.63 31.61-12.63h49.48q-25.05-30.91-61.87-47.82-36.83-16.92-80.61-16.92Zm0 492.44q-65.22 0-117.57-22.5-52.34-22.5-90.91-62.63v29.87q0 18.69-12.91 31.61-12.91 12.91-31.61 12.91t-31.61-12.91q-12.91-12.92-12.91-31.61V-427q0-22.09 15.45-37.54Q173.39-480 195.48-480h152.08q18.7 0 31.33 12.63 12.63 12.63 12.63 31.33 0 18.69-12.63 31.61-12.63 12.91-31.33 12.91h-51.17q25.61 30.35 61.87 47.54 36.26 17.2 81.74 17.2 55.78 0 100.76-28.2 44.98-28.19 69.11-73.72 11.52-19.95 30.11-32.28 18.59-12.32 40.67-8.19 22.09 4.56 33.2 23.37 11.11 18.8 2.72 38.76-5.87 16.04-13.68 30.15-7.8 14.11-17.98 27.72l148 147.43q15.53 15.52 15.53 37.61t-15.53 37.61q-15.52 14.96-37.61 14.96-22.08 0-37.6-15.53l-148-148q-33.74 24.74-76.24 39.53-42.5 14.78-93.46 14.78Z" /></svg>
|
47
|
+
icon:search_word = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M138.09-191.09q-44.31 0-75.16-30.84-30.84-30.85-30.84-75.16V-359q0-22.09 15.45-37.54Q63-412 85.09-412q22.08 0 37.54 15.46 15.46 15.45 15.46 37.54v61.91H827V-359q0-22.09 15.46-37.54Q857.91-412 880-412t37.54 15.46Q933-381.09 933-359v61.91q0 44.31-30.85 75.16-30.85 30.84-75.15 30.84H138.09Zm152.52-154.26q-46.74 0-76.44-27.48-29.69-27.47-29.69-70.34 0-43.13 33.06-70.2 33.07-27.06 85.76-27.06 21.31 0 40.53 3.78 19.21 3.78 32.08 11.22v-15.7q0-21.91-16.8-36.5-16.81-14.59-43.15-14.59-12.18 0-24.55 3.66-12.37 3.65-21.67 9.95-13.52 8.13-26.28 7.72-12.76-.41-21.76-9.68-9.57-9.26-9.03-23.15.55-13.89 15.33-24.15 15.74-12.48 40.52-20.07 24.78-7.58 52.96-7.58 58.61 0 92.17 31.76 33.57 31.76 33.57 87.19v152.09q0 14.83-10.48 25.02-10.48 10.2-25.87 10.2-14.7 0-24.61-9.07-9.91-9.06-9.91-22.63v-5.13h-3q-11.87 18.87-33.87 29.81-22 10.93-48.87 10.93Zm29.35-140.17q-30.31 0-45.89 10.52-15.59 10.52-15.59 30.13 0 18.3 13.3 29.39 13.31 11.09 35.05 11.09 29.17 0 49.13-19.96 19.95-19.95 19.95-49.13-11.74-6.3-26.63-9.17-14.89-2.87-29.32-2.87Zm338.69 140.17q-33.08 0-56.28-14.89-23.2-14.89-33.72-31.11h-3v10.74q0 14.26-9.91 24.18-9.91 9.91-24.17 9.91-14.27 0-24.68-10.41-10.41-10.42-10.41-24.68v-343.3q0-15.26 10.41-25.68Q517.3-761 532.57-761q15.26 0 25.67 10.41 10.41 10.42 10.41 25.68v82.56l-3 40h3q9.22-14.04 32.76-30.02 23.55-15.98 58.37-15.98 57.22 0 93.37 44.87 36.15 44.87 36.15 107.13t-36.21 106.63q-36.22 44.37-94.44 44.37Zm-19.17-235.69q-33.22 0-53.52 25.26-20.31 25.26-20.31 59 0 34.17 20.02 58.65 20.03 24.48 53.81 24.48t53.74-24.76q19.95-24.76 19.95-58.94 0-34.17-20.24-58.93-20.23-24.76-53.45-24.76Z" /></svg>
|
48
|
+
icon:bullet-off = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-60.78q-87.52 0-163.91-32.96-76.38-32.96-132.88-89.47-56.51-56.5-89.47-132.88Q60.78-392.48 60.78-480t32.96-163.91q32.96-76.38 89.47-132.88 56.5-56.51 132.88-89.47 76.39-32.96 163.91-32.96t163.91 32.96q76.38 32.96 132.88 89.47 56.51 56.5 89.47 132.88 32.96 76.39 32.96 163.91t-32.96 163.91q-32.96 76.38-89.47 132.88-56.5 56.51-132.88 89.47Q567.52-60.78 480-60.78Zm0-106q131.74 0 222.48-90.74 90.74-90.74 90.74-222.48t-90.74-222.48Q611.74-793.22 480-793.22t-222.48 90.74Q166.78-611.74 166.78-480t90.74 222.48q90.74 90.74 222.48 90.74Zm0 0q-131.74 0-222.48-90.74-90.74-90.74-90.74-222.48t90.74-222.48q90.74-90.74 222.48-90.74t222.48 90.74q90.74 90.74 90.74 222.48t-90.74 222.48Q611.74-166.78 480-166.78Z" /></svg>
|
49
|
+
icon:bullet-on = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-280q83 0 141.5-58.5T680-480q0-83-58.5-141.5T480-680q-83 0-141.5 58.5T280-480q0 83 58.5 141.5T480-280Zm0 219.22q-87.52 0-163.91-32.96-76.38-32.96-132.88-89.47-56.51-56.5-89.47-132.88Q60.78-392.48 60.78-480t32.96-163.91q32.96-76.38 89.47-132.88 56.5-56.51 132.88-89.47 76.39-32.96 163.91-32.96t163.91 32.96q76.38 32.96 132.88 89.47 56.51 56.5 89.47 132.88 32.96 76.39 32.96 163.91t-32.96 163.91q-32.96 76.38-89.47 132.88-56.5 56.51-132.88 89.47Q567.52-60.78 480-60.78Z" /></svg>
|
50
|
+
icon:unfold-hide = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M413.78-285.96q-10.26 0-18.52-7.47-8.26-7.48-8.26-19.31v-334.52q0-11.83 8.26-19.31 8.26-7.47 18.52-7.47 3.13 0 18.52 8.26l158 158q6.14 6.13 8.7 13.11 2.57 6.97 2.57 14.67T599-465.33q-2.56 6.98-8.7 13.11l-158 158q-4.13 4.13-8.76 6.2-4.63 2.06-9.76 2.06Z" /></svg>
|
51
|
+
icon:unfold-show = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="m452.22-369.7-158-158q-4.13-4.13-6.2-8.76-2.06-4.63-2.06-9.76 0-10.26 7.47-18.52 7.48-8.26 19.31-8.26h334.52q11.83 0 19.31 8.26 7.47 8.26 7.47 18.52 0 3.13-8.26 18.52l-158 158q-6.13 6.14-13.11 8.7-6.97 2.57-14.67 2.57T465.33-361q-6.98-2.56-13.11-8.7Z" /></svg>
|
52
|
+
icon:sb_build = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M747.56-225.43v57.87q0 10.82 7.42 18.23 7.41 7.42 18.24 7.42 10.82 0 18.24-7.42 7.41-7.41 7.41-18.23V-287q0-10.83-7.7-18.52-7.69-7.7-18.52-7.7H653.22q-10.83 0-18.24 7.42-7.42 7.41-7.42 17.95 0 10.55 7.7 18.24 7.7 7.7 17.96 7.7h58.43l-88.39 88.39q-7.7 7.69-7.7 17.96 0 10.26 7.82 17.95 7.82 7.7 18.24 7.7 10.42 0 18.12-7.7l87.82-87.82ZM713.22-27.56q-83 0-141.5-58.5t-58.5-141.5q0-83 58.5-141.5t141.5-58.5q83 0 141.5 58.5t58.5 141.5q0 83-58.5 141.5t-141.5 58.5ZM326.78-591.52h306.44q17 0 28.5-11.5t11.5-28.5q0-17-11.5-28.5t-28.5-11.5H326.78q-17 0-28.5 11.5t-11.5 28.5q0 17 11.5 28.5t28.5 11.5Zm-120 492.43q-43.72 0-74.86-31.13-31.14-31.14-31.14-74.87v-546.43q0-43.73 31.14-74.86 31.14-31.14 74.86-31.14h546.44q43.72 0 74.86 31.14 31.14 31.13 31.14 74.86v216.3q0 24.22-20.37 36.76-20.37 12.55-43.59 3.72-19.11-6.13-39.9-9.19-20.79-3.07-42.14-3.07-11 0-20.5.41-9.5.4-19.5 2.03-7.31-6.53-18.31-10.14-11-3.6-21.69-3.6H326.78q-17 0-28.5 11.5t-11.5 28.5q0 17 11.5 28.5t28.5 11.5h203.87q-18 15.3-33.06 33.6-15.07 18.31-27.2 39.61H326.78q-17 0-28.5 11.5t-11.5 28.5q0 17 11.5 28.5t28.5 11.5h112.83q-3.7 13.96-5.05 28.26-1.34 14.31-1.34 29.83 0 17.17 1.62 33.25 1.62 16.09 5.68 31.27 5.57 23.78-7.54 43.59-13.11 19.8-36.33 19.8H206.78Z" /></svg>
|
53
|
+
icon:sb_details = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M416.96-187q-22.09 0-37.55-15.46-15.45-15.45-15.45-37.54t15.45-37.54Q394.87-293 416.96-293h389.26q22.08 0 37.54 15.46 15.46 15.45 15.46 37.54t-15.46 37.54Q828.3-187 806.22-187H416.96Zm0-240q-22.09 0-37.55-15.46-15.45-15.45-15.45-37.54t15.45-37.54Q394.87-533 416.96-533h389.26q22.08 0 37.54 15.46 15.46 15.45 15.46 37.54t-15.46 37.54Q828.3-427 806.22-427H416.96Zm0-240q-22.09 0-37.55-15.46-15.45-15.45-15.45-37.54t15.45-37.54Q394.87-773 416.96-773h389.26q22.08 0 37.54 15.46 15.46 15.45 15.46 37.54t-15.46 37.54Q828.3-667 806.22-667H416.96ZM191.95-148.13q-37.95 0-64.84-27.03-26.89-27.02-26.89-64.98 0-37.95 27.02-64.84 27.03-26.89 64.98-26.89t64.85 27.03q26.89 27.02 26.89 64.98 0 37.95-27.03 64.84t-64.98 26.89Zm0-240q-37.95 0-64.84-27.03-26.89-27.02-26.89-64.98 0-37.95 27.02-64.84 27.03-26.89 64.98-26.89t64.85 27.03q26.89 27.02 26.89 64.98 0 37.95-27.03 64.84t-64.98 26.89Zm0-240q-37.95 0-64.84-27.03-26.89-27.02-26.89-64.98 0-37.95 27.02-64.84 27.03-26.89 64.98-26.89t64.85 27.03q26.89 27.02 26.89 64.98 0 37.95-27.03 64.84t-64.98 26.89Z" /></svg>
|
54
|
+
icon:sb_novel = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M331.3-338.65q20.96 0 35.57-14.61t14.61-35.57V-748.7q0-20.95-14.61-35.56-14.61-14.61-35.57-14.61-20.95 0-35.56 14.61-14.61 14.61-14.61 35.56v359.87q0 20.96 14.61 35.57t35.56 14.61ZM753.22-60.78H240q-58.01 0-98.61-40.44-40.61-40.44-40.61-98.21v-558.31q0-58.95 41.27-100.21 41.26-41.27 100.21-41.27h275.96q-40.79 36.7-64.59 88.07-23.8 51.37-23.8 111.15 0 107.18 72.04 184.17 72.04 77 177 85v83.7q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H240q-16.52 0-27.69 11.5-11.18 11.5-11.18 28.5t11.18 28.5q11.17 11.5 27.69 11.5h518.87v-275.13q27.65-6.13 53.02-17.74 25.37-11.61 47.33-28.13v315.35q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85ZM700-469.83q0-96.25 66.96-163.21Q833.92-700 930.17-700q-96.25 0-163.21-66.96Q700-833.92 700-930.17q0 96.25-66.96 163.21Q566.08-700 469.83-700q96.25 0 163.21 66.96Q700-566.08 700-469.83Z" /></svg>
|
55
|
+
icon:sb_outline = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M320-595.48q18.92 0 31.72-12.8 12.8-12.8 12.8-31.72 0-18.92-12.8-31.72-12.8-12.8-31.72-12.8-18.92 0-31.72 12.8-12.8 12.8-12.8 31.72 0 18.92 12.8 31.72 12.8 12.8 31.72 12.8Zm0 160q18.92 0 31.72-12.8 12.8-12.8 12.8-31.72 0-18.92-12.8-31.72-12.8-12.8-31.72-12.8-18.92 0-31.72 12.8-12.8 12.8-12.8 31.72 0 18.92 12.8 31.72 12.8 12.8 31.72 12.8Zm0 160q18.92 0 31.72-12.8 12.8-12.8 12.8-31.72 0-18.92-12.8-31.72-12.8-12.8-31.72-12.8-18.92 0-31.72 12.8-12.8 12.8-12.8 31.72 0 18.92 12.8 31.72 12.8 12.8 31.72 12.8Zm-113.22 174.7q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-546.44q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h389.48q21.23 0 40.46 7.98 19.24 7.98 34.19 22.94L828.3-670.91q14.96 14.95 22.94 34.19 7.98 19.23 7.98 40.46v389.48q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H206.78Zm377.39-652.44v116.05q0 22.08 15.46 37.54t37.54 15.46h116.05L584.17-753.22Z" /></svg>
|
56
|
+
icon:sb_project = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M556.61-113.78v-63.74q0-10.83 4.13-20.31 4.13-9.47 11.83-17.17L781-423q10.7-10.7 23.67-15.54 12.98-4.85 26.24-4.85 14.26 0 27.24 5.35 12.98 5.34 23.68 16.04l37 37q9.69 10.7 15.04 23.67 5.35 12.98 5.35 26.24 0 13.83-4.85 27.03-4.85 13.19-15.54 23.89l-208 208q-7.7 7.69-17.18 11.54-9.48 3.85-20.3 3.85h-63.74q-22.09 0-37.54-15.46-15.46-15.46-15.46-37.54Zm279.96-187.96 31.34-33.35-37-37-32.34 32.35 38 38ZM166.78-140.78q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-466.44q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h181q21.09 0 40.39 7.98 19.31 7.98 34.26 22.94L480-730.74h313.22q44.3 0 75.15 30.85 30.85 30.85 30.85 75.15v57q0 21.96-17.89 35.22-17.89 13.26-40.85 9.13-9.78-.57-19.35.28-9.57.85-18.78 3.68-21.79 2.82-41.76 12.82-19.98 10-36.59 26.61L507.52-263.52q-14.95 14.95-22.93 33.98-7.98 19.02-7.98 40.67v1.31q0 19.82-13.48 33.3-13.48 13.48-33.3 13.48H166.78Z" /></svg>
|
57
|
+
icon:sb_search = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M375.48-307q-114.09 0-193.55-79.46-79.45-79.45-79.45-193.54 0-114.09 79.45-193.54Q261.39-853 375.48-853q114.09 0 193.54 79.46 79.46 79.45 79.46 193.54 0 45.13-12.87 83.28T601-429.7l219.48 220.05q14.96 15.52 14.96 37.32 0 21.81-15.53 36.77-14.95 14.95-37.04 14.95t-37.04-14.95L526.91-354.48q-29.43 21.74-68.15 34.61Q420.04-307 375.48-307Zm0-106q69.91 0 118.45-48.54 48.55-48.55 48.55-118.46t-48.55-118.46Q445.39-747 375.48-747t-118.46 48.54Q208.48-649.91 208.48-580t48.54 118.46Q305.57-413 375.48-413Z" /></svg>
|
58
|
+
icon:sb_stats = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M694.7-140.78q-22.09 0-37.55-15.46-15.45-15.46-15.45-37.54v-201.13q0-22.09 15.45-37.55 15.46-15.45 37.55-15.45h71.52q22.08 0 37.54 15.45 15.46 15.46 15.46 37.55v201.13q0 22.08-15.46 37.54t-37.54 15.46H694.7Zm-250.18 0q-22.09 0-37.54-15.46-15.46-15.46-15.46-37.54v-572.44q0-22.08 15.46-37.54 15.45-15.46 37.54-15.46h70.96q22.09 0 37.54 15.46 15.46 15.46 15.46 37.54v572.44q0 22.08-15.46 37.54-15.45 15.46-37.54 15.46h-70.96Zm-250.74 0q-22.08 0-37.54-15.46t-15.46-37.54v-372.44q0-22.08 15.46-37.54t37.54-15.46h71.52q22.09 0 37.55 15.46 15.45 15.46 15.45 37.54v372.44q0 22.08-15.45 37.54-15.46 15.46-37.55 15.46h-71.52Z" /></svg>
|
59
|
+
icon:add = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M427-427H233.78q-22.08 0-37.54-15.46-15.46-15.45-15.46-37.54t15.46-37.54Q211.7-533 233.78-533H427v-193.22q0-22.08 15.46-37.54 15.45-15.46 37.54-15.46t37.54 15.46Q533-748.3 533-726.22V-533h193.22q22.08 0 37.54 15.46 15.46 15.45 15.46 37.54t-15.46 37.54Q748.3-427 726.22-427H533v193.22q0 22.08-15.46 37.54-15.45 15.46-37.54 15.46t-37.54-15.46Q427-211.7 427-233.78V-427Z" /></svg>
|
60
|
+
icon:bookmarks = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M387-150.39 241.04-86.87q-53 22.65-100.87-8.48-47.87-31.13-47.87-88.83v-461.34q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h377.39q44.31 0 75.16 30.85 30.85 30.85 30.85 75.15v461.34q0 57.7-47.87 88.83-47.87 31.13-100.88 8.48L387-150.39Zm427.7-27.13q-22.09 0-37.55-15.46-15.45-15.46-15.45-37.54v-601h-441q-22.09 0-37.55-15.46-15.45-15.45-15.45-37.54t15.45-37.55q15.46-15.45 37.55-15.45h441q44.3 0 75.15 30.85 30.85 30.84 30.85 75.15v601q0 22.08-15.46 37.54t-37.54 15.46Z" /></svg>
|
61
|
+
icon:browse = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M166.78-140.78q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-466.44q0-44.87 30.85-75.43 30.85-30.57 75.15-30.57h181q21.09 0 40.39 7.98 19.31 7.98 34.26 22.94L480-730.74h366.22q22.08 0 37.54 15.46 15.46 15.45 15.46 37.54t-15.46 37.54q-15.46 15.46-37.54 15.46H340.57q-69.35 0-121.57 43.52-52.22 43.53-52.22 110.31v226.95l70.52-226.82q10.83-33.35 38.55-53.65 27.72-20.31 62.76-20.31h471.91q54 0 85.7 43.52 31.69 43.53 15.61 94.53l-53.92 174.43q-14.78 45.78-46.17 68.63-31.39 22.85-78.31 22.85H166.78Z" /></svg>
|
62
|
+
icon:build_settings = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M747.56-225.43v57.87q0 10.82 7.42 18.23 7.41 7.42 18.24 7.42 10.82 0 18.24-7.42 7.41-7.41 7.41-18.23V-287q0-10.83-7.7-18.52-7.69-7.7-18.52-7.7H653.22q-10.83 0-18.24 7.42-7.42 7.41-7.42 17.95 0 10.55 7.7 18.24 7.7 7.7 17.96 7.7h58.43l-88.39 88.39q-7.7 7.69-7.7 17.96 0 10.26 7.82 17.95 7.82 7.7 18.24 7.7 10.42 0 18.12-7.7l87.82-87.82ZM713.22-27.56q-83 0-141.5-58.5t-58.5-141.5q0-83 58.5-141.5t141.5-58.5q83 0 141.5 58.5t58.5 141.5q0 83-58.5 141.5t-141.5 58.5ZM326.78-591.52h306.44q17 0 28.5-11.5t11.5-28.5q0-17-11.5-28.5t-28.5-11.5H326.78q-17 0-28.5 11.5t-11.5 28.5q0 17 11.5 28.5t28.5 11.5Zm-120 492.43q-43.72 0-74.86-31.13-31.14-31.14-31.14-74.87v-546.43q0-43.73 31.14-74.86 31.14-31.14 74.86-31.14h546.44q43.72 0 74.86 31.14 31.14 31.13 31.14 74.86v216.3q0 24.22-20.37 36.76-20.37 12.55-43.59 3.72-19.11-6.13-39.9-9.19-20.79-3.07-42.14-3.07-11 0-20.5.41-9.5.4-19.5 2.03-7.31-6.53-18.31-10.14-11-3.6-21.69-3.6H326.78q-17 0-28.5 11.5t-11.5 28.5q0 17 11.5 28.5t28.5 11.5h203.87q-18 15.3-33.06 33.6-15.07 18.31-27.2 39.61H326.78q-17 0-28.5 11.5t-11.5 28.5q0 17 11.5 28.5t28.5 11.5h112.83q-3.7 13.96-5.05 28.26-1.34 14.31-1.34 29.83 0 17.17 1.62 33.25 1.62 16.09 5.68 31.27 5.57 23.78-7.54 43.59-13.11 19.8-36.33 19.8H206.78Z" /></svg>
|
63
|
+
icon:cancel = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="m480-417.78 106.96 106.95q12.69 12.7 31.1 12.42 18.42-.29 31.11-12.98 12.7-12.7 12.7-31.11t-12.7-31.11L542.22-480l106.95-106.96q12.7-12.69 12.7-31.1 0-18.42-12.7-31.11-12.69-12.7-31.11-12.7-18.41 0-31.1 12.7L480-542.22 373.04-649.17q-12.69-12.7-30.82-12.7-18.13 0-30.83 12.7-12.69 12.69-12.69 31.11 0 18.41 12.69 31.1L417.78-480 310.83-373.04q-12.7 12.69-12.42 30.82.29 18.13 12.98 30.83 12.7 12.69 31.11 12.69t31.11-12.69L480-417.78Zm0 357q-87.52 0-163.91-32.91-76.39-32.92-132.94-89.46-56.54-56.55-89.46-132.94Q60.78-392.48 60.78-480t32.91-163.91q32.92-76.39 89.46-132.94 56.55-56.54 132.94-89.46 76.39-32.91 163.91-32.91t163.91 32.91q76.39 32.92 132.94 89.46 56.54 56.55 89.46 132.94 32.91 76.39 32.91 163.91t-32.91 163.91q-32.92 76.39-89.46 132.94-56.55 56.54-132.94 89.46Q567.52-60.78 480-60.78Z" /></svg>
|
64
|
+
icon:checked = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="m422.3-441.52-71.86-71.31q-14.4-14.39-35.64-14.11-21.23.29-35.63 14.68-14.39 14.39-14.39 35.35 0 20.95 14.39 35.35L384.7-335.48q15.95 15.96 37.6 15.96 21.66 0 37.61-15.96l217.52-218.08q14.4-14.4 14.11-35.64-.28-21.23-14.67-35.63-14.39-14.39-35.35-14.39t-35.35 14.39L422.3-441.52ZM206.78-100.78q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-546.44q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h546.44q44.3 0 75.15 30.85 30.85 30.85 30.85 75.15v546.44q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H206.78Z" /></svg>
|
65
|
+
icon:chevron_down = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-348q-10.26 0-20.09-3.91-9.82-3.92-17.52-11.61L258.96-546.96Q244-561.91 244-584t14.96-37.04Q273.91-636 296-636t37.04 14.96L480-474.09l146.96-146.95Q641.91-636 664-636t37.04 14.96Q716-606.09 716-584t-14.96 37.04L517.61-363.52q-7.7 7.69-17.52 11.61Q490.26-348 480-348Z" /></svg>
|
66
|
+
icon:chevron_left = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="m178.18-480 284.95 284.96q18.39 18.39 18.18 44.04-.22 25.65-18.61 44.04-18.39 18.4-44.33 18.4-25.93 0-44.33-18.4L75.09-404.91q-15.96-15.96-23.65-35.48-7.7-19.52-7.7-39.61t7.7-39.61q7.69-19.52 23.65-35.48l298.95-298.95q18.4-18.4 44.55-18.18 26.15.22 44.54 18.61t18.39 44.33q0 25.93-18.39 44.32L178.18-480Z" /></svg>
|
67
|
+
icon:chevron_right = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M560.91-480 275.96-764.96q-18.4-18.39-18.18-44.26.22-25.87 18.61-44.26 18.39-18.39 44.54-18.39 26.16 0 44.55 18.39L664-555.09q15.96 15.96 23.65 35.48 7.7 19.52 7.7 39.61t-7.7 39.61q-7.69 19.52-23.65 35.48L365.04-105.96q-18.39 18.4-44.04 17.9t-44.04-18.9q-18.4-18.39-18.4-44.54t18.4-44.54L560.91-480Z" /></svg>
|
68
|
+
icon:chevron_up = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-509.91 333.04-362.96Q318.09-348 296-348t-37.04-14.96Q244-377.91 244-400t14.96-37.04l183.43-183.44q15.96-15.96 37.61-15.96t37.61 15.96l183.43 183.44Q716-422.09 716-400t-14.96 37.04Q686.09-348 664-348t-37.04-14.96L480-509.91Z" /></svg>
|
69
|
+
icon:close = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-405.91 293.04-218.96Q278.09-204 256-204t-37.04-14.96Q204-233.91 204-256t14.96-37.04L405.91-480 218.96-666.96Q204-681.91 204-704t14.96-37.04Q233.91-756 256-756t37.04 14.96L480-554.09l186.96-186.95Q681.91-756 704-756t37.04 14.96Q756-726.09 756-704t-14.96 37.04L554.09-480l186.95 186.96Q756-278.09 756-256t-14.96 37.04Q726.09-204 704-204t-37.04-14.96L480-405.91Z" /></svg>
|
70
|
+
icon:copy = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M379.78-233.78q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-466.44q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h346.44q44.3 0 75.15 30.85 30.85 30.85 30.85 75.15v466.44q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H379.78Zm-186 186q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-519.44q0-22.08 15.46-37.54 15.45-15.46 37.54-15.46t37.55 15.46q15.45 15.46 15.45 37.54v519.44h399.44q22.08 0 37.54 15.45 15.46 15.46 15.46 37.55 0 22.09-15.46 37.54-15.46 15.46-37.54 15.46H193.78Z" /></svg>
|
71
|
+
icon:document_add = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M246.78-60.78q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-626.44q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h277.39q21.23 0 40.46 7.98 19.24 7.98 34.2 22.94L788.3-678.83q14.96 14.96 22.94 34.2 7.98 19.23 7.98 40.46v437.39q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H246.78Zm266.44-585.44q0 22.09 15.45 37.55 15.46 15.45 37.55 15.45h147l-200-200v147ZM440-353.78v80q0 17 11.5 28.5t28.5 11.5q17 0 28.5-11.5t11.5-28.5v-80h80q17 0 28.5-11.5t11.5-28.5q0-17-11.5-28.5t-28.5-11.5h-80v-80q0-17-11.5-28.5t-28.5-11.5q-17 0-28.5 11.5t-11.5 28.5v80h-80q-17 0-28.5 11.5t-11.5 28.5q0 17 11.5 28.5t28.5 11.5h80Z" /></svg>
|
72
|
+
icon:document = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M371.3-464.87h217.4q18.92 0 31.72-12.8 12.8-12.8 12.8-31.72 0-18.92-12.8-31.72-12.8-12.8-31.72-12.8H371.3q-18.92 0-31.72 12.8-12.8 12.8-12.8 31.72 0 18.92 12.8 31.72 12.8 12.8 31.72 12.8Zm0 129.04h217.4q18.92 0 31.72-12.8 12.8-12.8 12.8-31.72 0-18.92-12.8-31.72-12.8-12.8-31.72-12.8H371.3q-18.92 0-31.72 12.8-12.8 12.8-12.8 31.72 0 18.92 12.8 31.72 12.8 12.8 31.72 12.8Zm0 129.05h97.4q18.92 0 31.72-12.8 12.8-12.8 12.8-31.72 0-18.93-12.8-31.73t-31.72-12.8h-97.4q-18.92 0-31.72 12.8-12.8 12.8-12.8 31.73 0 18.92 12.8 31.72 12.8 12.8 31.72 12.8Zm-124.52 146q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-626.44q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h277.39q21.23 0 40.46 7.98 19.24 7.98 34.2 22.94L788.3-678.83q14.96 14.96 22.94 34.2 7.98 19.23 7.98 40.46v437.39q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H246.78Zm266.44-585.44q0 22.09 15.45 37.55 15.46 15.45 37.55 15.45h147l-200-200v147Z" /></svg>
|
73
|
+
icon:edit = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M153.78-100.78q-22.08 0-37.54-15.46t-15.46-37.54v-109.44q0-21.08 7.98-40.39 7.98-19.3 22.94-34.26l495.95-495.52q13.13-12.7 29.33-19.26 16.19-6.57 33.89-6.57 17.13 0 33.83 6.57 16.69 6.56 29.95 19.69l79.31 78.61q13.13 12.7 19.48 29.68 6.34 16.97 6.34 34.24 0 17.69-6.34 34.17-6.35 16.48-19.48 29.61L339-131.7q-14.96 14.96-34.26 22.94-19.3 7.98-40.39 7.98H153.78ZM691.56-635l56-55.43L691-747.56l-56.57 56L691.56-635Z" /></svg>
|
74
|
+
icon:exclude = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M333-427h294q22.09 0 37.54-15.46Q680-457.91 680-480t-15.46-37.54Q649.09-533 627-533H333q-22.09 0-37.54 15.46Q280-502.09 280-480t15.46 37.54Q310.91-427 333-427ZM480-60.78q-87.52 0-163.91-32.96-76.38-32.96-132.88-89.47-56.51-56.5-89.47-132.88Q60.78-392.48 60.78-480t32.96-163.91q32.96-76.38 89.47-132.88 56.5-56.51 132.88-89.47 76.39-32.96 163.91-32.96t163.91 32.96q76.38 32.96 132.88 89.47 56.51 56.5 89.47 132.88 32.96 76.39 32.96 163.91t-32.96 163.91q-32.96 76.38-89.47 132.88-56.5 56.51-132.88 89.47Q567.52-60.78 480-60.78Z" /></svg>
|
75
|
+
icon:export = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="m309.26-151.91-67.39 67.95Q225.91-68 204.26-68.5t-37.04-16.46q-14.96-15.95-15.18-37.32-.21-21.37 15.18-36.76L235.17-227h-30.78q-22.09 0-37.54-15.46-15.46-15.45-15.46-37.54t15.46-37.54Q182.3-333 204.39-333h157.87q22.09 0 37.54 15.46 15.46 15.45 15.46 37.54v157.87q0 22.09-15.46 37.54-15.45 15.46-37.54 15.46t-37.54-15.46q-15.46-15.45-15.46-37.54v-29.78Zm239 91.13q-22.08 0-37.54-15.46t-15.46-37.54V-254q0-65.83-46.59-112.41Q402.09-413 336.26-413H193.78q-22.08 0-37.54-15.46-15.46-15.45-15.46-37.54v-327.22q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h321.13l251.31 251.31v481.13q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H548.26Zm-35.04-532.44h200l-200-200 200 200-200-200v200Z" /></svg>
|
76
|
+
icon:filter = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M440-140.78q-24.35 0-41.78-17.44-17.44-17.43-17.44-41.78v-233.22L153.3-724.7q-22.91-29.6-7.04-62.06 15.87-32.46 53.74-32.46h560q37.87 0 53.74 32.46 15.87 32.46-7.04 62.06L579.22-433.22v239.44q0 22.65-15.18 37.82-15.17 15.18-37.82 15.18H440Z" /></svg>
|
77
|
+
icon:fit_height = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M246.78-60.78q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-626.44q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h466.44q44.3 0 75.15 30.85 30.85 30.85 30.85 75.15v626.44q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H246.78Zm166.87-521.13h132.7q17.95 0 24.93-16.24t-5.85-29.07l-47.82-47.82Q501.65-691 480-691t-37.61 15.96l-47.82 47.82q-12.83 12.83-5.85 29.07 6.98 16.24 24.93 16.24Zm103.96 297.52 47.82-47.83q12.83-12.82 5.85-29.06t-24.93-16.24h-132.7q-17.95 0-24.93 16.24t5.85 29.06l47.82 47.83q15.96 15.95 37.61 15.95t37.61-15.95Z" /></svg>
|
78
|
+
icon:fit_width = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M166.78-140.78q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-466.44q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h626.44q44.3 0 75.15 30.85 30.85 30.85 30.85 75.15v466.44q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H166.78Zm211.31-272.87v-132.7q0-17.95-16.24-24.93t-29.07 5.85l-47.82 47.82Q269-501.65 269-480t15.96 37.61l47.82 47.82q12.83 12.83 29.07 5.85 16.24-6.98 16.24-24.93Zm297.52-103.96-47.83-47.82q-12.82-12.83-29.06-5.85t-16.24 24.93v132.7q0 17.95 16.24 24.93t29.06-5.85l47.83-47.82q15.95-15.96 15.95-37.61t-15.95-37.61Z" /></svg>
|
79
|
+
icon:folder = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M166.78-140.78q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-466.44q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h181q21.09 0 40.39 7.98 19.31 7.98 34.26 22.94L480-730.74h313.22q44.3 0 75.15 30.85 30.85 30.85 30.85 75.15v377.96q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H166.78Z" /></svg>
|
80
|
+
icon:font = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M384-356.91h190.87l31.61 87.95q4.56 12.7 15.98 20.83 11.41 8.13 25.11 8.13 23.39 0 36.73-19.33 13.35-19.32 4.79-41.58L539.91-691.04q-5-12.7-16.69-20.83-11.7-8.13-25.96-8.13h-34.52q-14.26 0-25.96 8.13-11.69 8.13-16.69 20.83L269.78-298.65q-8.56 21.26 4.57 39.95Q287.48-240 310.3-240q14.13 0 25.05-7.85 10.91-7.85 15.91-20.98L384-356.91Zm25.13-76.79L478-628.3h2.87l68.3 194.6H409.13ZM166.78-60.78q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-626.44q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h626.44q44.3 0 75.15 30.85 30.85 30.85 30.85 75.15v626.44q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H166.78Z" /></svg>
|
81
|
+
icon:import = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M206.78-100.78q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-52.31q0-20.39 14.33-35 14.32-14.61 35.28-14.61 20.39 0 35 14.61t14.61 35V-200h560v-483.39H200v59.08q0 20.4-14.33 35-14.32 14.61-35.28 14.61-20.39 0-35-14.61-14.61-14.6-14.61-35v-128.91q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h546.44q44.3 0 75.15 30.85 30.85 30.85 30.85 75.15v546.44q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H206.78ZM455.91-388.7H153.78q-22.08 0-37.54-15.45-15.46-15.46-15.46-37.55 0-22.08 15.46-37.54t37.54-15.46h302.13l-33.52-33.95q-14.96-14.96-14.89-36.55.06-21.58 15.46-37.54 14.95-15.52 37.04-15.52t37.61 15.52L621.04-479.3Q637-463.35 637-441.7q0 21.66-15.96 37.61l-124 124q-14.95 14.96-36.82 15.18-21.87.21-37.83-15.74-14.96-14.96-14.96-37.05 0-22.08 14.96-37.04l33.52-33.96Z" /></svg>
|
82
|
+
icon:language = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="m600.74-159.04-22.13 63.65q-5.13 15.52-18.81 25.06-13.67 9.55-30.19 9.55-26.78 0-42.96-21.87-16.17-21.87-6.48-48.09l144.09-398.04q6.7-17.22 21.5-27.61t33.02-10.39h41.87q18.22 0 33.02 10.39 14.81 10.39 21.51 27.61l144.08 397.91q9.7 25.78-6.26 47.94-15.96 22.15-43.3 22.15-16.96 0-30.7-9.55-13.74-9.54-19.87-26.06l-21.56-62.65H600.74Zm-252.31-213.7L188-212.74q-15.52 15.52-36.83 15.46-21.3-.07-37.26-16.02-15.52-15.53-15.52-37.33 0-21.8 15.52-37.33l161-161q-40.65-41.78-70.56-87.06-29.92-45.28-51.66-97.2h116.79q15.48 29.96 34.91 56.13 19.44 26.18 45.17 53.48 31.87-34.13 64.83-88.83 32.96-54.69 49.26-100.78H70.39q-22.09 0-37.54-15.45-15.46-15.46-15.46-37.55 0-22.08 15.46-37.54 15.45-15.46 37.54-15.46h227v-27q0-22.08 15.46-37.54 15.45-15.46 37.54-15.46t37.54 15.46q15.46 15.46 15.46 37.54v27h227q22.09 0 37.54 15.46 15.46 15.46 15.46 37.54 0 22.09-15.46 37.55-15.45 15.45-37.54 15.45H575.3q-22.13 69.18-64.97 144.61-42.85 75.44-87.24 121.09l68.87 70.3-39.61 110.83-103.92-106.35Zm285.22 117.7h130.44l-65.22-189.31-65.22 189.31Z" /></svg>
|
83
|
+
icon:lines = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M150.96-180.78q-20.96 0-35.57-14.61t-14.61-35.57q0-20.95 14.61-35.56 14.61-14.61 35.57-14.61h658.08q20.96 0 35.57 14.61t14.61 35.56q0 20.96-14.61 35.57t-35.57 14.61H150.96Zm0-166.22q-20.96 0-35.57-14.61t-14.61-35.56q0-20.96 14.61-35.57t35.57-14.61h658.08q20.96 0 35.57 14.61t14.61 35.57q0 20.95-14.61 35.56Q830-347 809.04-347H150.96Zm0-165.65q-20.96 0-35.57-14.61t-14.61-35.57q0-20.95 14.61-35.56Q130-613 150.96-613h658.08q20.96 0 35.57 14.61t14.61 35.56q0 20.96-14.61 35.57t-35.57 14.61H150.96Zm0-166.22q-20.96 0-35.57-14.61t-14.61-35.56q0-20.96 14.61-35.57t35.57-14.61h658.08q20.96 0 35.57 14.61t14.61 35.57q0 20.95-14.61 35.56-14.61 14.61-35.57 14.61H150.96Z" /></svg>
|
84
|
+
icon:list = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M416.96-187q-22.09 0-37.55-15.46-15.45-15.45-15.45-37.54t15.45-37.54Q394.87-293 416.96-293h389.26q22.08 0 37.54 15.46 15.46 15.45 15.46 37.54t-15.46 37.54Q828.3-187 806.22-187H416.96Zm0-240q-22.09 0-37.55-15.46-15.45-15.45-15.45-37.54t15.45-37.54Q394.87-533 416.96-533h389.26q22.08 0 37.54 15.46 15.46 15.45 15.46 37.54t-15.46 37.54Q828.3-427 806.22-427H416.96Zm0-240q-22.09 0-37.55-15.46-15.45-15.45-15.45-37.54t15.45-37.54Q394.87-773 416.96-773h389.26q22.08 0 37.54 15.46 15.46 15.45 15.46 37.54t-15.46 37.54Q828.3-667 806.22-667H416.96ZM191.95-148.13q-37.95 0-64.84-27.03-26.89-27.02-26.89-64.98 0-37.95 27.02-64.84 27.03-26.89 64.98-26.89t64.85 27.03q26.89 27.02 26.89 64.98 0 37.95-27.03 64.84t-64.98 26.89Zm0-240q-37.95 0-64.84-27.03-26.89-27.02-26.89-64.98 0-37.95 27.02-64.84 27.03-26.89 64.98-26.89t64.85 27.03q26.89 27.02 26.89 64.98 0 37.95-27.03 64.84t-64.98 26.89Zm0-240q-37.95 0-64.84-27.03-26.89-27.02-26.89-64.98 0-37.95 27.02-64.84 27.03-26.89 64.98-26.89t64.85 27.03q26.89 27.02 26.89 64.98 0 37.95-27.03 64.84t-64.98 26.89Z" /></svg>
|
85
|
+
icon:margin_bottom = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M193.78-100.78q-22.08 0-37.54-15.46t-15.46-37.54q0-22.09 15.46-37.55 15.46-15.45 37.54-15.45h572.44q22.08 0 37.54 15.45 15.46 15.46 15.46 37.55 0 22.08-15.46 37.54t-37.54 15.46H193.78ZM480-306.61q-10.26 0-20.09-3.91-9.82-3.92-17.52-11.61L298.96-465.57Q284-480.52 284-502.61t14.96-37.04q14.95-14.96 37.04-14.96t37.04 14.96L427-485.7v-320.52q0-22.08 15.46-37.54 15.45-15.46 37.54-15.46t37.54 15.46Q533-828.3 533-806.22v320.52l53.96-53.95q14.95-14.96 37.04-14.96t37.04 14.96Q676-524.7 676-502.61t-14.96 37.04L517.61-322.13q-7.7 7.69-17.52 11.61-9.83 3.91-20.09 3.91Z" /></svg>
|
86
|
+
icon:margin_left = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M113.78-227q-22.08 0-37.54-15.46Q60.78-257.91 60.78-280v-400q0-22.09 15.46-37.54Q91.7-733 113.78-733q22.09 0 37.55 15.46 15.45 15.45 15.45 37.54v400q0 22.09-15.45 37.54Q135.87-227 113.78-227Zm335.18-200 93.52 92.96q15.96 15.95 15.67 37.82-.28 21.87-16.24 37.83-15.95 14.96-37.54 14.67-21.59-.28-36.54-15.24L284.39-442.39q-7.69-7.7-11.61-17.52-3.91-9.83-3.91-20.09t3.91-20.09q3.92-9.82 11.61-17.52l183.44-183.43Q482.78-716 504.87-716t37.04 14.96q15.4 15.39 15.18 37.26-.22 21.87-15.18 36.82L448.96-533h397.26q22.08 0 37.54 15.46 15.46 15.45 15.46 37.54t-15.46 37.54Q868.3-427 846.22-427H448.96Z" /></svg>
|
87
|
+
icon:margin_right = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M846.22-227q-22.09 0-37.55-15.46-15.45-15.45-15.45-37.54v-400q0-22.09 15.45-37.54Q824.13-733 846.22-733q22.08 0 37.54 15.46 15.46 15.45 15.46 37.54v400q0 22.09-15.46 37.54Q868.3-227 846.22-227ZM511.04-427H113.78q-22.08 0-37.54-15.46Q60.78-457.91 60.78-480t15.46-37.54Q91.7-533 113.78-533h397.26l-92.95-93.96q-14.96-14.95-15.18-36.82-.22-21.87 15.18-37.26Q433.04-716 455.13-716t37.04 14.96l183.44 183.43q7.69 7.7 11.61 17.52 3.91 9.83 3.91 20.09t-3.91 20.09q-3.92 9.82-11.61 17.52L492.17-258.96q-14.95 14.96-36.54 15.24-21.59.29-37.54-14.67-15.96-15.96-16.24-37.83-.29-21.87 15.67-37.82L511.04-427Z" /></svg>
|
88
|
+
icon:margin_top = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M193.78-753.22q-22.08 0-37.54-15.45-15.46-15.46-15.46-37.55 0-22.08 15.46-37.54t37.54-15.46h572.44q22.08 0 37.54 15.46t15.46 37.54q0 22.09-15.46 37.55-15.46 15.45-37.54 15.45H193.78ZM480-100.78q-22.09 0-37.54-15.46Q427-131.7 427-153.78V-474.3l-53.96 53.95q-14.95 14.96-37.04 14.96t-37.04-14.96Q284-435.3 284-457.39t14.96-37.04l143.43-143.44q7.7-7.69 17.52-11.61 9.83-3.91 20.09-3.91t20.09 3.91q9.82 3.92 17.52 11.61l143.43 143.44Q676-479.48 676-457.39t-14.96 37.04q-14.95 14.96-37.04 14.96t-37.04-14.96L533-474.3v320.52q0 22.08-15.46 37.54-15.45 15.46-37.54 15.46Z" /></svg>
|
89
|
+
icon:maximise = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M206.78-206.78h74.92q22.08 0 37.54 15.45 15.46 15.46 15.46 37.55 0 22.08-15.46 37.54t-37.54 15.46H153.78q-22.08 0-37.54-15.46t-15.46-37.54V-281.7q0-22.08 15.46-37.54t37.54-15.46q22.09 0 37.55 15.46 15.45 15.46 15.45 37.54v74.92Zm546.44 0v-74.92q0-22.08 15.45-37.54 15.46-15.46 37.55-15.46 22.08 0 37.54 15.46t15.46 37.54v127.92q0 22.08-15.46 37.54t-37.54 15.46H678.87q-22.09 0-37.54-15.46-15.46-15.46-15.46-37.54 0-22.09 15.46-37.55 15.45-15.45 37.54-15.45h74.35ZM206.78-753.22v74.35q0 22.09-15.45 37.54-15.46 15.46-37.55 15.46-22.08 0-37.54-15.46-15.46-15.45-15.46-37.54v-127.35q0-22.08 15.46-37.54t37.54-15.46H281.7q22.08 0 37.54 15.46t15.46 37.54q0 22.09-15.46 37.55-15.46 15.45-37.54 15.45h-74.92Zm546.44 0h-74.35q-22.09 0-37.54-15.45-15.46-15.46-15.46-37.55 0-22.08 15.46-37.54 15.45-15.46 37.54-15.46h127.35q22.08 0 37.54 15.46t15.46 37.54v127.35q0 22.09-15.46 37.54-15.46 15.46-37.54 15.46-22.09 0-37.55-15.46-15.45-15.45-15.45-37.54v-74.35Z" /></svg>
|
90
|
+
icon:minimise = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M228.7-228.7h-74.92q-22.08 0-37.54-15.45-15.46-15.46-15.46-37.55 0-22.08 15.46-37.54t37.54-15.46H281.7q22.08 0 37.54 15.46t15.46 37.54v127.92q0 22.08-15.46 37.54t-37.54 15.46q-22.09 0-37.55-15.46-15.45-15.46-15.45-37.54v-74.92Zm503.17 0v74.92q0 22.08-15.46 37.54-15.45 15.46-37.54 15.46t-37.54-15.46q-15.46-15.46-15.46-37.54V-281.7q0-22.08 15.46-37.54 15.45-15.46 37.54-15.46h127.35q22.08 0 37.54 15.46t15.46 37.54q0 22.09-15.46 37.55-15.46 15.45-37.54 15.45h-74.35ZM228.7-731.87v-74.35q0-22.08 15.45-37.54 15.46-15.46 37.55-15.46 22.08 0 37.54 15.46t15.46 37.54v127.35q0 22.09-15.46 37.54-15.46 15.46-37.54 15.46H153.78q-22.08 0-37.54-15.46-15.46-15.45-15.46-37.54t15.46-37.54q15.46-15.46 37.54-15.46h74.92Zm503.17 0h74.35q22.08 0 37.54 15.46 15.46 15.45 15.46 37.54t-15.46 37.54q-15.46 15.46-37.54 15.46H678.87q-22.09 0-37.54-15.46-15.46-15.45-15.46-37.54v-127.35q0-22.08 15.46-37.54 15.45-15.46 37.54-15.46t37.54 15.46q15.46 15.46 15.46 37.54v74.35Z" /></svg>
|
91
|
+
icon:more_arrow = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M413.78-285.96q-10.26 0-18.52-7.47-8.26-7.48-8.26-19.31v-334.52q0-11.83 8.26-19.31 8.26-7.47 18.52-7.47 3.13 0 18.52 8.26l158 158q6.14 6.13 8.7 13.11 2.57 6.97 2.57 14.67T599-465.33q-2.56 6.98-8.7 13.11l-158 158q-4.13 4.13-8.76 6.2-4.63 2.06-9.76 2.06Z" /></svg>
|
92
|
+
icon:more_vertical = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480.28-134q-36.67 0-62.72-25.99-26.04-25.99-26.04-62.49 0-36.73 25.99-62.88 25.99-26.16 62.49-26.16 36.96 0 62.72 26.08 25.76 26.09 25.76 62.72 0 36.63-25.76 62.68Q516.96-134 480.28-134Zm0-257.52q-36.67 0-62.72-25.99-26.04-25.99-26.04-62.49 0-36.96 25.99-62.72 25.99-25.76 62.49-25.76 36.96 0 62.72 25.76 25.76 25.76 25.76 62.44 0 36.67-25.76 62.72-25.76 26.04-62.44 26.04Zm0-256.96q-36.67 0-62.72-26.2-26.04-26.21-26.04-63 0-36.8 25.99-62.56Q443.5-826 480-826q36.96 0 62.72 25.76 25.76 25.76 25.76 62.56 0 36.79-25.76 63-25.76 26.2-62.44 26.2Z" /></svg>
|
93
|
+
icon:noncheckable = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M328.48-431.52h303.04q20.39 0 34.44-14.04Q680-459.61 680-480q0-20.39-14.04-34.44-14.05-14.04-34.44-14.04H328.48q-20.39 0-34.44 14.04Q280-500.39 280-480q0 20.39 14.04 34.44 14.05 14.04 34.44 14.04Zm-121.7 330.74q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-546.44q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h546.44q44.3 0 75.15 30.85 30.85 30.85 30.85 75.15v546.44q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H206.78Z" /></svg>
|
94
|
+
icon:open = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M206.78-100.78q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-546.44q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85H427q22.09 0 37.54 15.46Q480-828.3 480-806.22q0 22.09-15.46 37.55-15.45 15.45-37.54 15.45H206.78v546.44h546.44V-427q0-22.09 15.45-37.54Q784.13-480 806.22-480q22.08 0 37.54 15.46 15.46 15.45 15.46 37.54v220.22q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H206.78Zm546.44-578.91L442-368.48q-14.96 14.96-36.48 14.68-21.52-.29-36.48-15.24-14.95-14.96-14.95-36.77 0-21.8 14.95-36.76l310.65-310.65H613q-22.09 0-37.54-15.45Q560-784.13 560-806.22q0-22.08 15.46-37.54 15.45-15.46 37.54-15.46h193.22q22.08 0 37.54 15.46t15.46 37.54V-613q0 22.09-15.46 37.54Q828.3-560 806.22-560q-22.09 0-37.55-15.46-15.45-15.45-15.45-37.54v-66.69Z" /></svg>
|
95
|
+
icon:panel = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M206.78-100.78q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-546.44q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h546.44q44.3 0 75.15 30.85 30.85 30.85 30.85 75.15v546.44q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H206.78Zm0-320.7h546.44v-331.74H206.78v331.74Z" /></svg>
|
96
|
+
icon:pin = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M659.22-767.35v267.57l64.61 64.6q7.69 7.7 11.54 17.18 3.85 9.48 3.85 20.3v31.48q0 22.09-15.46 37.55-15.46 15.45-37.54 15.45H533v215.65q0 10.83-3.85 20.31-3.85 9.48-11.54 17.17L498.52-41q-7.69 7.7-18.52 7.7-10.83 0-18.52-7.7l-19.09-19.09q-7.69-7.69-11.54-17.17Q427-86.74 427-97.57v-215.65H273.78q-22.08 0-37.54-15.45-15.46-15.46-15.46-37.55v-31.48q0-10.82 3.85-20.3t11.54-17.18l64.61-64.6v-267.57q-17-3.95-28.5-18-11.5-14.04-11.5-32.74 0-22.09 15.46-37.54 15.46-15.46 37.54-15.46h332.44q22.08 0 37.54 15.46 15.46 15.45 15.46 37.54 0 18.7-11.5 32.74-11.5 14.05-28.5 18Z" /></svg>
|
97
|
+
icon:project_copy = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M123.39-100.78q-43.72 0-74.86-31.14t-31.14-74.86v-444.96q0-22.08 15.46-37.54 15.45-15.46 37.54-15.46t37.54 15.46q15.46 15.46 15.46 37.54v444.96h642.83q22.08 0 37.54 15.45 15.46 15.46 15.46 37.55 0 22.08-15.46 37.54t-37.54 15.46H123.39Zm186-186q-43.72 0-74.86-31.14t-31.14-74.86v-400.44q0-43.72 31.14-74.86t74.86-31.14h141q21.23 0 40.46 7.98 19.24 7.98 34.19 22.94l49.09 49.08h262.48q43.72 0 74.86 31.14t31.14 74.86v320.44q0 43.72-31.14 74.86t-74.86 31.14H309.39Z" /></svg>
|
98
|
+
icon:quote = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="m241.09-296.04 55.73-95.48q-67.69-4.52-112.71-53.5Q139.09-494 139.09-560q0-71.09 49.82-120.63 49.83-49.54 120.92-49.54 71.08 0 120.63 49.54Q480-631.09 480-560q0 23-5.22 42.78-5.21 19.79-15.08 37.22L325.35-247q-6.7 11.26-17.68 17.89-10.97 6.63-24.24 6.63-28.08 0-42.41-24.52-14.33-24.52.07-49.04Zm380.34.56 55.74-96.04q-67.69-4.52-112.43-53.5Q520-494 520-560q0-71.09 49.54-120.63 49.55-49.54 120.63-49.54 71.09 0 120.92 49.54 49.82 49.54 49.82 120.63 0 23-5.21 42.78-5.22 19.79-15.09 37.22L705.7-247q-6.7 11.26-17.68 17.89-10.98 6.63-24.24 6.63-28.08 0-42.13-24.24-14.04-24.24-.22-48.76Z" /></svg>
|
99
|
+
icon:refresh = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M477.74-140.78q-141.35 0-240.28-98.94-98.94-98.93-98.94-240.28t98.94-240.28q98.93-98.94 240.28-98.94 74.09 0 140.76 30.2 66.67 30.19 113.94 87.15v-72.83q0-18.92 12.8-31.72 12.8-12.8 31.72-12.8 18.92 0 31.72 12.8 12.8 12.8 12.8 31.72v210.18q0 22.09-15.46 37.54-15.45 15.46-37.54 15.46H557.17q-18.68 0-31.32-12.8-12.63-12.8-12.63-31.72 0-18.68 12.8-31.32T557.74-600h120.09q-32-52.61-85.01-82.91-53-30.31-115.08-30.31-97.17 0-165.2 68.02-68.02 68.03-68.02 165.2 0 97.17 68.02 165.2 68.03 68.02 165.2 68.02 61.78 0 114.04-30.26 52.26-30.26 83.83-80.92 11.18-17.48 31.43-24.35 20.26-6.86 39.64.4 20.67 7.26 29.93 26.65 9.26 19.39-1 36.78-44.39 80.57-123.5 129.13-79.11 48.57-174.37 48.57Z" /></svg>
|
100
|
+
icon:remove = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M233.78-427q-22.08 0-37.54-15.46-15.46-15.45-15.46-37.54t15.46-37.54Q211.7-533 233.78-533h492.44q22.08 0 37.54 15.46 15.46 15.45 15.46 37.54t-15.46 37.54Q748.3-427 726.22-427H233.78Z" /></svg>
|
101
|
+
icon:revert = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M479.43-100.78q-130.22 0-230.48-77.35-100.25-77.35-133.78-198.61-5.69-19.52 7.42-35.98 13.11-16.45 35.35-19.58 20.93-3.13 38.73 7.41 17.81 10.54 24.5 30.5 26.83 83.22 97.68 135.41 70.85 52.2 160.58 52.2 114.17 0 193.7-79.53 79.52-79.53 79.52-193.7 0-114.16-79.52-193.69-79.53-79.52-193.7-79.52-62.21 0-117.69 27.2-55.48 27.19-94.78 76.41h49.65q18.92 0 31.72 12.8 12.8 12.8 12.8 31.72 0 18.7-12.8 31.89-12.8 13.2-31.72 13.2H158.87q-22.09 0-37.54-15.46-15.46-15.45-15.46-37.54v-157.17q0-18.69 12.8-31.32 12.8-12.64 31.72-12.64 18.68 0 31.32 12.64 12.64 12.63 12.64 31.32v41.56q53.82-62.87 128.05-96.74 74.23-33.87 157.03-33.87 78.91 0 147.83 29.91 68.91 29.92 120.24 81.24 51.33 51.33 81.24 120.26 29.91 68.92 29.91 147.84 0 78.93-29.91 147.82-29.91 68.89-81.24 120.22-51.33 51.32-120.24 81.24-68.92 29.91-147.83 29.91Zm.24-290.74q-36.63 0-62.67-25.97t-26.04-62.43q0-36.47 25.99-62.52 25.99-26.04 62.48-26.04 36.74 0 62.89 25.76 26.16 25.76 26.16 62.72 0 36.96-26.09 62.72-26.08 25.76-62.72 25.76Z" /></svg>
|
102
|
+
icon:settings = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M422.26-60.78q-29.83 0-51.3-19.41-21.48-19.42-25.48-48.24l-9-66.57q-8.48-3.3-16.31-8.04-7.82-4.74-15.43-9.92l-61.44 26q-27.26 11.57-55.08 2.29-27.83-9.29-42.96-35.11L87.52-321.57q-15.13-25.26-8.85-53.8 6.29-28.54 29.55-46.67l52.43-40q-.43-4.74-.43-8.98v-17.96q0-4.24.43-8.98l-52.43-39.43q-23.83-18.13-29.83-46.67-6-28.55 9.13-54.37l57.74-101.22q15.13-25.26 42.67-34.83 27.55-9.56 54.81 2l63.13 26q7.61-5.17 15.09-9.63 7.47-4.46 15.52-7.76l9-67.13q4-29.39 25.48-48.81 21.47-19.41 51.3-19.41h115.48q29.83 0 51.3 19.41 21.48 19.42 25.48 48.81l9 67.13q8.48 3.3 16.31 7.76 7.82 4.46 15.43 9.63l61.44-26q27.26-11.56 55.08-2 27.83 9.57 42.96 34.83l57.74 101.22q15.13 25.82 9.13 54.37-6 28.54-29.83 46.67l-53 39.43q.44 4.74.44 8.98v8.98q0 4.74-.28 8.98-.29 4.24-1.16 8.98l53 39.43q23.83 18.13 29.83 46.67 6 28.55-9.13 54.37l-58.74 101.79q-15.13 25.26-42.67 34.82-27.55 9.57-54.81-2l-61.13-26q-7.61 5.18-15.09 9.92-7.47 4.74-15.52 8.04l-9 66.57q-4 28.82-25.48 48.24-21.47 19.41-51.3 19.41H422.26ZM480.3-340q58 0 99-41t41-99q0-58-41-99t-99-41q-58.43 0-99.21 41-40.79 41-40.79 99t40.79 99q40.78 41 99.21 41Z" /></svg>
|
103
|
+
icon:star = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-247.52 312.3-146.39q-14.95 9.26-30.91 7.98-15.96-1.28-27.78-10.55-11.83-9.26-18.24-23.43-6.41-14.17-2.28-31.13l44.56-190.7-148.69-128.69q-13.4-11.83-16.74-27-3.35-15.18 1.21-29.57 4.57-14.39 16.24-24.22 11.68-9.82 29.63-11.82l195.7-17 76.13-180.26q6.7-16.53 20.3-24.22 13.61-7.7 28.57-7.7t28.57 7.7q13.6 7.69 20.3 24.22L605-632.52l195.7 17q17.95 2 29.63 11.82 11.67 9.83 16.24 24.22 4.56 14.39 1.21 29.57-3.34 15.17-16.74 27L682.35-394.22l44.56 190.7q4.13 16.96-2.28 31.13-6.41 14.17-18.24 23.43-11.82 9.27-27.78 10.55-15.96 1.28-30.91-7.98L480-247.52Z" /></svg>
|
104
|
+
icon:stats = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="m100.96-187.17 203.95-203.96q30.92-30.91 75.09-30.63 44.17.28 75.09 31.2l83.78 83.78 246.96-278.83q14.95-16.96 37.54-17.52 22.59-.57 39.11 15.39 14.96 14.39 15.74 35.54.78 21.16-13.61 37.11L615.22-233.26q-30.35 34.48-75.94 35.98-45.58 1.5-77.93-30.85L380-309.48 179.04-108.52Q162.09-91.56 140-91.85q-22.09-.28-39.04-17.24-16.4-16.95-16.4-39.32t16.4-38.76Zm0-262.05 203.95-203.95q30.92-30.92 75.09-31.2 44.17-.28 75.09 31.2l83.78 83.78 246.96-278.83q14.95-16.96 37.54-17.52 22.59-.57 39.11 15.39 14.96 14.39 15.74 35.55.78 21.15-13.61 37.1L615.22-495.87q-30.35 34.48-75.94 35.98-45.58 1.5-77.93-30.85L380-572.09 179.04-371.13q-16.39 16.39-38.76 16.67-22.37.29-39.32-16.67-16.4-16.39-16.4-39.04 0-22.66 16.4-39.05Z" /></svg>
|
105
|
+
icon:text = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M191.52-158.17q-20.96 0-35.85-14.89t-14.89-35.85q0-20.96 14.89-35.57t35.85-14.61h336.39q20.39.57 35 14.9 14.61 14.32 14.61 35.84 0 20.96-14.61 35.57t-35.56 14.61H191.52Zm-.56-179.79q-20.96 0-35.57-14.6-14.61-14.61-14.61-35.57t14.61-35.57q14.61-14.6 35.57-14.6h578.08q20.96 0 35.57 14.6 14.61 14.61 14.61 35.57t-14.61 35.57q-14.61 14.6-35.57 14.6H190.96Zm0-178.65q-20.96 0-35.57-14.61t-14.61-35.56q0-20.96 14.61-35.57t35.57-14.61h578.08q20.96 0 35.57 14.61t14.61 35.57q0 20.95-14.61 35.56-14.61 14.61-35.57 14.61H190.96Zm2.82-179.22q-22.08 0-37.54-15.45-15.46-15.46-15.46-37.55 0-22.08 15.46-37.54t37.54-15.46h572.44q22.08 0 37.54 15.46t15.46 37.54q0 22.09-15.46 37.55-15.46 15.45-37.54 15.45H193.78Z" /></svg>
|
106
|
+
icon:timer_off = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-45.52q-78.52 0-147.41-29.91-68.89-29.92-120.44-81.18-51.54-51.26-81.46-120.15-29.91-68.89-29.91-147.41 0-61.13 18.5-118.33 18.5-57.2 53.5-105.02l-92.17-92.17q-12.7-12.7-12.41-30.83.28-18.13 12.97-30.83 12.7-12.69 30.83-12.69t30.83 12.69L820-124.74q12.7 12.7 12.7 30.83T820-63.09q-12.7 12.7-31.11 12.7t-31.11-12.7l-55-54.43q-48 35-104.91 53.5T480-45.52ZM390.96-840q-20.4 0-34.44-14.33-14.04-14.32-14.04-34.71 0-20.4 14.32-34.44 14.33-14.04 34.72-14.04h177.52q20.4 0 34.44 14.04t14.04 34.44q0 20.39-14.04 34.71Q589.44-840 569.04-840H390.96Zm359.3 521.09L528.48-540.7v-45.17q0-17-11.5-28.5t-28.5-11.5q-9.44 0-17.65 3.72-8.22 3.72-13.22 10.59l-83.31-83.31q-24.21-24.22-16.95-57.41 7.26-33.2 39.17-41.2 20.05-5.74 41.02-7.82 20.98-2.09 42.46-2.09 63.39 0 122.59 20 59.19 20 109.63 58.56l28.56-28.56q14.39-14.39 34.5-14.39t34.5 14.39q14.4 14.39 14.4 34.5t-14.4 34.5l-28.56 28.56q38 49.87 58 109.07 20 59.2 20 122.59 0 21.47-2.37 41.95-2.37 20.48-7.54 40.96-7.44 31.91-40.35 39.74-32.92 7.82-58.7-17.39Z" /></svg>
|
107
|
+
icon:timer = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M390.96-840q-20.61 0-34.55-14.33-13.93-14.32-13.93-34.71 0-20.4 13.93-34.44 13.94-14.04 34.55-14.04h178.08q20.61 0 34.55 13.93 13.93 13.94 13.93 34.55 0 20.39-13.93 34.71Q589.65-840 569.04-840H390.96ZM480-384.17q20.6 0 34.54-13.94 13.94-13.94 13.94-34.54v-144.74q0-20.6-13.94-34.54-13.94-13.94-34.54-13.94t-34.54 13.94q-13.94 13.94-13.94 34.54v144.74q0 20.6 13.94 34.54 13.94 13.94 34.54 13.94Zm0 338.65q-78.52 0-147.42-29.85-68.89-29.85-120.43-81.18-51.54-51.32-81.46-120.21-29.91-68.89-29.91-147.41 0-78.53 29.97-147.39 29.96-68.87 81.48-120.38 51.52-51.52 120.38-81.49 68.87-29.96 147.39-29.96 63.13 0 122.39 20t109.83 58.56l28.56-28.56q14.39-14.39 34.5-14.39t34.5 14.39q14.4 14.39 14.4 34.5t-14.4 34.5l-28.56 28.56q38.56 50.57 58.28 109.55t19.72 122.11q0 78.52-29.91 147.41-29.92 68.89-81.46 120.21-51.54 51.33-120.43 81.18Q558.52-45.52 480-45.52Z" /></svg>
|
108
|
+
icon:unchecked = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="m480-417.78 113.17 113.17q12.7 12.7 31.11 12.41 18.42-.28 31.11-12.97 12.7-12.7 12.7-31.11 0-18.42-12.7-31.11L542.22-480l113.17-113.17q12.7-12.7 12.7-31.11 0-18.42-12.7-31.11-12.69-12.7-31.11-12.7-18.41 0-31.11 12.7L480-542.22 366.83-655.39q-12.7-12.7-30.83-12.7t-30.83 12.7q-12.69 12.69-12.69 31.11 0 18.41 12.69 31.11L417.78-480 304.61-366.83q-12.7 12.7-12.41 30.83.28 18.13 12.97 30.83 12.7 12.69 31.11 12.69 18.42 0 31.11-12.69L480-417.78Zm-273.22 317q-44.3 0-75.15-30.85-30.85-30.85-30.85-75.15v-546.44q0-44.3 30.85-75.15 30.85-30.85 75.15-30.85h546.44q44.3 0 75.15 30.85 30.85 30.85 30.85 75.15v546.44q0 44.3-30.85 75.15-30.85 30.85-75.15 30.85H206.78Z" /></svg>
|
109
|
+
icon:view = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-320q75 0 127.5-52.5T660-500q0-75-52.5-127.5T480-680q-75 0-127.5 52.5T300-500q0 75 52.5 127.5T480-320Zm.1-83.87q-40.01 0-68.12-28.01-28.11-28.01-28.11-68.02 0-40.01 28.01-68.12 28.01-28.11 68.02-28.11 40.01 0 68.12 28.01 28.11 28.01 28.11 68.02 0 40.01-28.01 68.12-28.01 28.11-68.02 28.11Zm-.1 221.39q-137.39 0-251.28-73.13Q114.83-328.74 49.7-450.13q-6.7-11.83-9.77-24.43-3.06-12.61-3.06-25.44 0-12.83 3.06-25.44 3.07-12.6 9.77-24.43 65.13-121.39 179.02-194.52Q342.61-817.52 480-817.52t251.28 73.13q113.89 73.13 179.02 194.52 6.7 11.83 9.77 24.43 3.06 12.61 3.06 25.44 0 12.83-3.06 25.44-3.07 12.6-9.77 24.43-65.13 121.39-179.02 194.52Q617.39-182.48 480-182.48Z" /></svg>
|
@@ -0,0 +1,109 @@
|
|
1
|
+
# This file is automatically generated. Do not edit.
|
2
|
+
|
3
|
+
# Meta
|
4
|
+
meta:name = Material Symbols - Filled Medium
|
5
|
+
meta:author = Google Inc
|
6
|
+
meta:license = Apache 2.0
|
7
|
+
|
8
|
+
# Icons
|
9
|
+
icon:alert_error = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-280q17 0 28.5-11.5T520-320q0-17-11.5-28.5T480-360q-17 0-28.5 11.5T440-320q0 17 11.5 28.5T480-280Zm0-160q17 0 28.5-11.5T520-480v-160q0-17-11.5-28.5T480-680q-17 0-28.5 11.5T440-640v160q0 17 11.5 28.5T480-440Zm0 360q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Z" /></svg>
|
10
|
+
icon:alert_info = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-280q17 0 28.5-11.5T520-320v-160q0-17-11.5-28.5T480-520q-17 0-28.5 11.5T440-480v160q0 17 11.5 28.5T480-280Zm0-320q17 0 28.5-11.5T520-640q0-17-11.5-28.5T480-680q-17 0-28.5 11.5T440-640q0 17 11.5 28.5T480-600Zm0 520q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Z" /></svg>
|
11
|
+
icon:alert_question = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M478-240q21 0 35.5-14.5T528-290q0-21-14.5-35.5T478-340q-21 0-35.5 14.5T428-290q0 21 14.5 35.5T478-240Zm2 160q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm4-572q25 0 43.5 16t18.5 40q0 22-13.5 39T502-525q-23 20-40.5 44T444-427q0 14 10.5 23.5T479-394q15 0 25.5-10t13.5-25q4-21 18-37.5t30-31.5q23-22 39.5-48t16.5-58q0-51-41.5-83.5T484-720q-38 0-72.5 16T359-655q-7 12-4.5 25.5T368-609q14 8 29 5t25-17q11-15 27.5-23t34.5-8Z" /></svg>
|
12
|
+
icon:alert_warn = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M109-120q-11 0-20-5.5T75-140q-5-9-5.5-19.5T75-180l370-640q6-10 15.5-15t19.5-5q10 0 19.5 5t15.5 15l370 640q6 10 5.5 20.5T885-140q-5 9-14 14.5t-20 5.5H109Zm371-120q17 0 28.5-11.5T520-280q0-17-11.5-28.5T480-320q-17 0-28.5 11.5T440-280q0 17 11.5 28.5T480-240Zm0-120q17 0 28.5-11.5T520-400v-120q0-17-11.5-28.5T480-560q-17 0-28.5 11.5T440-520v120q0 17 11.5 28.5T480-360Z" /></svg>
|
13
|
+
icon:cls_archive = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M200-120q-33 0-56.5-23.5T120-200v-499q0-14 4.5-27t13.5-24l50-61q11-14 27.5-21.5T250-840h460q18 0 34.5 7.5T772-811l50 61q9 11 13.5 24t4.5 27v499q0 33-23.5 56.5T760-120H200Zm16-600h528l-34-40H250l-34 40Zm264 160q-17 0-28.5 11.5T440-520v128l-36-36q-11-11-28-11t-28 11q-11 11-11 28t11 28l104 104q12 12 28 12t28-12l104-104q11-11 11-28t-11-28q-11-11-28-11t-28 11l-36 36v-128q0-17-11.5-28.5T480-560Z" /></svg>
|
14
|
+
icon:cls_character = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M40-272q0-34 17.5-62.5T104-378q62-31 126-46.5T360-440q66 0 130 15.5T616-378q29 15 46.5 43.5T680-272v32q0 33-23.5 56.5T600-160H120q-33 0-56.5-23.5T40-240v-32Zm698 112q11-18 16.5-38.5T760-240v-40q0-44-24.5-84.5T666-434q51 6 96 20.5t84 35.5q36 20 55 44.5t19 53.5v40q0 33-23.5 56.5T840-160H738ZM360-480q-66 0-113-47t-47-113q0-66 47-113t113-47q66 0 113 47t47 113q0 66-47 113t-113 47Zm400-160q0 66-47 113t-113 47q-11 0-28-2.5t-28-5.5q27-32 41.5-71t14.5-81q0-42-14.5-81T544-792q14-5 28-6.5t28-1.5q66 0 113 47t47 113Z" /></svg>
|
15
|
+
icon:cls_custom = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M807-434 666-234q-11 16-28.5 25t-37.5 9H200q-33 0-56.5-23.5T120-280v-400q0-33 23.5-56.5T200-760h400q20 0 37.5 9t28.5 25l141 200q15 21 15 46t-15 46Z" /></svg>
|
16
|
+
icon:cls_entity = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M200-120q-33 0-56.5-23.5T120-200v-400q0-33 23.5-56.5T200-680h80v-80q0-33 23.5-56.5T360-840h240q33 0 56.5 23.5T680-760v240h80q33 0 56.5 23.5T840-440v240q0 33-23.5 56.5T760-120H520v-160h-80v160H200Zm0-80h80v-80h-80v80Zm0-160h80v-80h-80v80Zm0-160h80v-80h-80v80Zm160 160h80v-80h-80v80Zm0-160h80v-80h-80v80Zm0-160h80v-80h-80v80Zm160 320h80v-80h-80v80Zm0-160h80v-80h-80v80Zm0-160h80v-80h-80v80Zm160 480h80v-80h-80v80Zm0-160h80v-80h-80v80Z" /></svg>
|
17
|
+
icon:cls_none = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-424 284-228q-11 11-28 11t-28-11q-11-11-11-28t11-28l196-196-196-196q-11-11-11-28t11-28q11-11 28-11t28 11l196 196 196-196q11-11 28-11t28 11q11 11 11 28t-11 28L536-480l196 196q11 11 11 28t-11 28q-11 11-28 11t-28-11L480-424Z" /></svg>
|
18
|
+
icon:cls_novel = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M300-80q-58 0-99-41t-41-99v-520q0-58 41-99t99-41h420q33 0 56.5 23.5T800-800v501q0 8-6.5 14.5T770-270q-14 7-22 20t-8 30q0 17 8 30.5t22 19.5q14 6 22 16.5t8 22.5v10q0 17-11.5 29T760-80H300Zm60-280q17 0 28.5-11.5T400-400v-360q0-17-11.5-28.5T360-800q-17 0-28.5 11.5T320-760v360q0 17 11.5 28.5T360-360Zm-60 200h373q-6-14-9.5-28.5T660-220q0-16 3-31t10-29H300q-26 0-43 17.5T240-220q0 26 17 43t43 17Z" /></svg>
|
19
|
+
icon:cls_object = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M280-360q-50 0-85-35t-35-85q0-50 35-85t85-35q50 0 85 35t35 85q0 50-35 85t-85 35Zm0 120q77 0 139-44t87-116h14l52 52q6 6 13 8.5t15 2.5q8 0 15-2.5t13-8.5l52-52 70 55q6 5 13.5 7.5T779-336q8-1 14.5-4.5T805-350l90-103q5-6 7.5-13t2.5-15q0-8-3-14.5t-8-11.5l-41-41q-6-6-13.5-9t-15.5-3H506q-24-68-84.5-114T280-720q-100 0-170 70T40-480q0 100 70 170t170 70Z" /></svg>
|
20
|
+
icon:cls_plot = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M352-120H200q-33 0-56.5-23.5T120-200v-152q48 0 84-30.5t36-77.5q0-47-36-77.5T120-568v-152q0-33 23.5-56.5T200-800h160q0-42 29-71t71-29q42 0 71 29t29 71h160q33 0 56.5 23.5T800-720v160q42 0 71 29t29 71q0 42-29 71t-71 29v160q0 33-23.5 56.5T720-120H568q0-50-31.5-85T460-240q-45 0-76.5 35T352-120Z" /></svg>
|
21
|
+
icon:cls_template = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h207q16 0 30.5 6t25.5 17l57 57h320q33 0 56.5 23.5T880-640v400q0 33-23.5 56.5T800-160H160Zm120-160h240q17 0 28.5-11.5T560-360q0-17-11.5-28.5T520-400H280q-17 0-28.5 11.5T240-360q0 17 11.5 28.5T280-320Zm0-160h400q17 0 28.5-11.5T720-520q0-17-11.5-28.5T680-560H280q-17 0-28.5 11.5T240-520q0 17 11.5 28.5T280-480Z" /></svg>
|
22
|
+
icon:cls_timeline = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M320-160h320v-120q0-66-47-113t-113-47q-66 0-113 47t-47 113v120Zm160-360q66 0 113-47t47-113v-120H320v120q0 66 47 113t113 47ZM200-80q-17 0-28.5-11.5T160-120q0-17 11.5-28.5T200-160h40v-120q0-61 28.5-114.5T348-480q-51-32-79.5-85.5T240-680v-120h-40q-17 0-28.5-11.5T160-840q0-17 11.5-28.5T200-880h560q17 0 28.5 11.5T800-840q0 17-11.5 28.5T760-800h-40v120q0 61-28.5 114.5T612-480q51 32 79.5 85.5T720-280v120h40q17 0 28.5 11.5T800-120q0 17-11.5 28.5T760-80H200Z" /></svg>
|
23
|
+
icon:cls_trash = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M280-120q-33 0-56.5-23.5T200-200v-520q-17 0-28.5-11.5T160-760q0-17 11.5-28.5T200-800h160q0-17 11.5-28.5T400-840h160q17 0 28.5 11.5T600-800h160q17 0 28.5 11.5T800-760q0 17-11.5 28.5T760-720v520q0 33-23.5 56.5T680-120H280Zm120-160q17 0 28.5-11.5T440-320v-280q0-17-11.5-28.5T400-640q-17 0-28.5 11.5T360-600v280q0 17 11.5 28.5T400-280Zm160 0q17 0 28.5-11.5T600-320v-280q0-17-11.5-28.5T560-640q-17 0-28.5 11.5T520-600v280q0 17 11.5 28.5T560-280Z" /></svg>
|
24
|
+
icon:cls_world = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-7-.5-14.5T799-507q-5 29-27 48t-52 19h-80q-33 0-56.5-23.5T560-520v-40H400v-80q0-33 23.5-56.5T480-720h40q0-23 12.5-40.5T563-789q-20-5-40.5-8t-42.5-3q-134 0-227 93t-93 227h200q66 0 113 47t47 113v40H400v110q20 5 39.5 7.5T480-160Z" /></svg>
|
25
|
+
icon:prj_folder = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h207q16 0 30.5 6t25.5 17l57 57h320q33 0 56.5 23.5T880-640v400q0 33-23.5 56.5T800-160H160Z" /></svg>
|
26
|
+
icon:prj_document = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h407q16 0 30.5 6t25.5 17l154 154q11 11 17 25.5t6 30.5v407q0 33-23.5 56.5T760-120H200Zm400-640v120q0 17 11.5 28.5T640-600h120L600-760Zm40 480q17 0 28.5-11.5T680-320q0-17-11.5-28.5T640-360H320q-17 0-28.5 11.5T280-320q0 17 11.5 28.5T320-280h320ZM440-600q17 0 28.5-11.5T480-640q0-17-11.5-28.5T440-680H320q-17 0-28.5 11.5T280-640q0 17 11.5 28.5T320-600h120Zm200 160q17 0 28.5-11.5T680-480q0-17-11.5-28.5T640-520H320q-17 0-28.5 11.5T280-480q0 17 11.5 28.5T320-440h320Z" /></svg>
|
27
|
+
icon:prj_title = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h407q16 0 30.5 6t25.5 17l154 154q11 11 17 25.5t6 30.5v407q0 33-23.5 56.5T760-120H200Zm400-640v120q0 17 11.5 28.5T640-600h120L600-760Zm40 480q17 0 28.5-11.5T680-320q0-17-11.5-28.5T640-360H320q-17 0-28.5 11.5T280-320q0 17 11.5 28.5T320-280h320ZM440-600q17 0 28.5-11.5T480-640q0-17-11.5-28.5T440-680H320q-17 0-28.5 11.5T280-640q0 17 11.5 28.5T320-600h120Zm200 160q17 0 28.5-11.5T680-480q0-17-11.5-28.5T640-520H320q-17 0-28.5 11.5T280-480q0 17 11.5 28.5T320-440h320Z" /></svg>
|
28
|
+
icon:prj_chapter = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h407q16 0 30.5 6t25.5 17l154 154q11 11 17 25.5t6 30.5v407q0 33-23.5 56.5T760-120H200Zm400-640v120q0 17 11.5 28.5T640-600h120L600-760Zm40 480q17 0 28.5-11.5T680-320q0-17-11.5-28.5T640-360H320q-17 0-28.5 11.5T280-320q0 17 11.5 28.5T320-280h320ZM440-600q17 0 28.5-11.5T480-640q0-17-11.5-28.5T440-680H320q-17 0-28.5 11.5T280-640q0 17 11.5 28.5T320-600h120Zm200 160q17 0 28.5-11.5T680-480q0-17-11.5-28.5T640-520H320q-17 0-28.5 11.5T280-480q0 17 11.5 28.5T320-440h320Z" /></svg>
|
29
|
+
icon:prj_scene = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h407q16 0 30.5 6t25.5 17l154 154q11 11 17 25.5t6 30.5v407q0 33-23.5 56.5T760-120H200Zm400-640v120q0 17 11.5 28.5T640-600h120L600-760Zm40 480q17 0 28.5-11.5T680-320q0-17-11.5-28.5T640-360H320q-17 0-28.5 11.5T280-320q0 17 11.5 28.5T320-280h320ZM440-600q17 0 28.5-11.5T480-640q0-17-11.5-28.5T440-680H320q-17 0-28.5 11.5T280-640q0 17 11.5 28.5T320-600h120Zm200 160q17 0 28.5-11.5T680-480q0-17-11.5-28.5T640-520H320q-17 0-28.5 11.5T280-480q0 17 11.5 28.5T320-440h320Z" /></svg>
|
30
|
+
icon:prj_note = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="m560-200 200-200H600q-17 0-28.5 11.5T560-360v160Zm-360 80q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h560q33 0 56.5 23.5T840-760v367q0 16-6 30.5T817-337L623-143q-11 11-25.5 17t-30.5 6H200Zm120-280h120q17 0 28.5-11.5T480-440q0-17-11.5-28.5T440-480H320q-17 0-28.5 11.5T280-440q0 17 11.5 28.5T320-400Zm0-160h320q17 0 28.5-11.5T680-600q0-17-11.5-28.5T640-640H320q-17 0-28.5 11.5T280-600q0 17 11.5 28.5T320-560Z" /></svg>
|
31
|
+
icon:fmt_bold = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M352-200q-33 0-56.5-23.5T272-280v-400q0-33 23.5-56.5T352-760h141q65 0 120 40t55 111q0 51-23 78.5T602-491q25 11 55.5 41t30.5 90q0 89-65 124.5T501-200H352Zm41-112h104q48 0 58.5-24.5T566-372q0-11-10.5-35.5T494-432H393v120Zm0-228h93q33 0 48-17t15-38q0-24-17-39t-44-15h-95v109Z" /></svg>
|
32
|
+
icon:fmt_italic = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M250-200q-21 0-35.5-14.5T200-250q0-21 14.5-35.5T250-300h110l120-360H370q-21 0-35.5-14.5T320-710q0-21 14.5-35.5T370-760h300q21 0 35.5 14.5T720-710q0 21-14.5 35.5T670-660h-90L460-300h90q21 0 35.5 14.5T600-250q0 21-14.5 35.5T550-200H250Z" /></svg>
|
33
|
+
icon:fmt_mark = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M160 0q-33 0-56.5-23.5T80-80q0-33 23.5-56.5T160-160h640q33 0 56.5 23.5T880-80q0 33-23.5 56.5T800 0H160Zm264-640 216 217-160 160q-24 24-56.5 24T367-263l-5 4q-11 9-24 14t-27 5H189q-14 0-19.5-12t4.5-22l92-91q-24-24-25-57.5t23-57.5l160-160Zm56-57 160-159q24-24 56.5-24t56.5 24l104 103q24 24 24 56.5T857-640L697-480 480-697Z" /></svg>
|
34
|
+
icon:fmt_strike = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M486-160q-63 0-116.5-33.5T285-283q-9-16-2.5-33.5T306-343q18-10 37.5-3.5T374-322q18 30 48.5 48t65.5 18q44 0 76.5-27t32.5-69q0-20 14-34t34-14q20 0 34.5 14t14.5 34v12q0 79-62.5 129.5T486-160ZM120-480q-17 0-28.5-11.5T80-520q0-17 11.5-28.5T120-560h720q17 0 28.5 11.5T880-520q0 17-11.5 28.5T840-480H120Zm208-165q-17-10-23-29.5t4-36.5q25-47 72-71t101-24q48 0 90.5 20t71.5 58q11 14 7 32t-19 29q-17 12-36.5 9T562-677q-15-17-35-25t-43-8q-27 0-52 11t-38 34q-10 18-29.5 24t-36.5-4Z" /></svg>
|
35
|
+
icon:fmt_subscript = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M800-160q-17 0-28.5-11.5T760-200v-40q0-17 11.5-28.5T800-280h80v-40H780q-8 0-14-6t-6-14q0-8 6-14t14-6h100q17 0 28.5 11.5T920-320v40q0 17-11.5 28.5T880-240h-80v40h100q8 0 14 6t6 14q0 8-6 14t-14 6H800Zm-483-80q-27 0-39.5-23t1.5-46l141-222-128-201q-14-22-1.5-45t38.5-23q12 0 22 5.5t16 15.5l111 179h4l110-179q6-10 16.5-15.5T630-800q27 0 39 23t-2 46L539-531l142 222q14 23 1 46t-39 23q-12 0-22-5.5T605-261L482-457h-4L355-261q-6 10-16.5 15.5T317-240Z" /></svg>
|
36
|
+
icon:fmt_superscript = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M800-600q-17 0-28.5-11.5T760-640v-40q0-17 11.5-28.5T800-720h80v-40H780q-8 0-14-6t-6-14q0-8 6-14t14-6h100q17 0 28.5 11.5T920-760v40q0 17-11.5 28.5T880-680h-80v40h100q8 0 14 6t6 14q0 8-6 14t-14 6H800ZM317-160q-27 0-39.5-23t1.5-46l141-222-128-201q-14-22-1.5-45t38.5-23q12 0 22 5.5t16 15.5l111 179h4l110-179q6-10 16.5-15.5T630-720q27 0 39 23t-2 46L539-451l142 222q14 23 1 46t-39 23q-12 0-22-5.5T605-181L482-377h-4L355-181q-6 10-16.5 15.5T317-160Z" /></svg>
|
37
|
+
icon:fmt_underline = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M240-120q-17 0-28.5-11.5T200-160q0-17 11.5-28.5T240-200h480q17 0 28.5 11.5T760-160q0 17-11.5 28.5T720-120H240Zm240-160q-101 0-157-63t-56-167v-279q0-21 15.5-36t36.5-15q21 0 36 15t15 36v285q0 56 28 91t82 35q54 0 82-35t28-91v-285q0-21 15.5-36t36.5-15q21 0 36 15t15 36v279q0 104-56 167t-157 63Z" /></svg>
|
38
|
+
icon:fmt_toolbar = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M240-200q-17 0-28.5-11.5T200-240q0-17 11.5-28.5T240-280h480q17 0 28.5 11.5T760-240q0 17-11.5 28.5T720-200H240Zm54-208 137-368q4-11 13.5-17.5T466-800h28q12 0 21.5 6.5T529-776l137 369q6 17-4 32t-28 15q-11 0-20.5-6.5T600-384l-30-88H392l-32 89q-4 11-13 17t-20 6q-19 0-29.5-15.5T294-408Zm120-128h132l-64-182h-4l-64 182Z" /></svg>
|
39
|
+
icon:search = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M380-320q-109 0-184.5-75.5T120-580q0-109 75.5-184.5T380-840q109 0 184.5 75.5T640-580q0 44-14 83t-38 69l224 224q11 11 11 28t-11 28q-11 11-28 11t-28-11L532-372q-30 24-69 38t-83 14Zm0-80q75 0 127.5-52.5T560-580q0-75-52.5-127.5T380-760q-75 0-127.5 52.5T200-580q0 75 52.5 127.5T380-400Z" /></svg>
|
40
|
+
icon:search_cancel = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-424 284-228q-11 11-28 11t-28-11q-11-11-11-28t11-28l196-196-196-196q-11-11-11-28t11-28q11-11 28-11t28 11l196 196 196-196q11-11 28-11t28 11q11 11 11 28t-11 28L536-480l196 196q11 11 11 28t-11 28q-11 11-28 11t-28-11L480-424Z" /></svg>
|
41
|
+
icon:search_case = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="m247-364-32 89q-4 11-13 17t-20 6q-19 0-29.5-15.5T149-300l138-368q4-11 13.5-17.5T321-692h28q11 0 21 6.5t14 17.5l138 369q7 17-4 32t-29 15q-11 0-20-6.5T456-276l-31-88H247Zm23-64h131l-64-182h-4l-63 182Zm395 186q-51 0-81-27.5T554-342q0-44 34.5-72.5T677-443q23 0 45 4t38 11v-12q0-29-20.5-47T685-505q-15 0-29.5 4.5T629-487q-13 10-24.5 7T586-491q-7-8-7-19t11-19q20-16 45-23.5t51-7.5q69 0 103 32.5t34 97.5v147q0 13-9.5 22t-22.5 9q-13 0-22-9.5t-9-22.5v-5h-4q-14 23-38 35t-53 12Zm12-54q35 0 59.5-24t24.5-56q-14-8-33.5-12.5T689-393q-32 0-50 14t-18 37q0 20 16 33t40 13Z" /></svg>
|
42
|
+
icon:search_loop = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M80-520q0-117 81.5-198.5T360-800h240q117 0 198.5 81.5T880-520q0 103-66 181t-168 95q-18 3-32-8t-14-28q0-17 13.5-29t31.5-16q69-16 112-70.5T800-520q0-83-58.5-141.5T600-720H360q-83 0-141.5 58.5T160-520q0 83 58.5 141.5T360-320h7l-36-36q-11-11-11-27.5t12-28.5q11-11 28-11t28 11l104 104q12 12 12 28t-12 28L388-148q-11 11-27.5 11T332-148q-12-12-12-28.5t12-28.5l35-35h-7q-117 0-198.5-81.5T80-520Z" /></svg>
|
43
|
+
icon:search_preserve = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M340-160q-25 0-42.5-17.5T280-220v-460H140q-25 0-42.5-17.5T80-740q0-25 17.5-42.5T140-800h400q25 0 42.5 17.5T600-740q0 25-17.5 42.5T540-680H400v460q0 25-17.5 42.5T340-160Zm360 0q-25 0-42.5-17.5T640-220v-260h-60q-25 0-42.5-17.5T520-540q0-25 17.5-42.5T580-600h240q25 0 42.5 17.5T880-540q0 25-17.5 42.5T820-480h-60v260q0 25-17.5 42.5T700-160Z" /></svg>
|
44
|
+
icon:search_project = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M660-200q42 0 71-29t29-71q0-42-29-71t-71-29q-42 0-71 29t-29 71q0 42 29 71t71 29ZM892-68q-11 11-28 11t-28-11l-80-80q-21 14-45.5 21t-50.5 7q-75 0-127.5-52.5T480-300q0-75 52.5-127.5T660-480q75 0 127.5 52.5T840-300q0 26-7 50.5T812-204l80 80q11 11 11 28t-11 28ZM200-80q-33 0-56.5-23.5T120-160v-640q0-33 23.5-56.5T200-880h287q16 0 30.5 6t25.5 17l194 194q11 11 17 25.5t6 30.5v18q0 18-14.5 29t-32.5 6q-13-3-26-4.5t-27-1.5q-118 0-190 80t-72 181q0 44 15.5 87t48.5 81q14 15 6.5 33T443-80H200Zm280-720v160q0 17 11.5 28.5T520-600h160L480-800l200 200-200-200Z" /></svg>
|
45
|
+
icon:search_regex = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M80-482q0-69 22.5-133.5T169-734q11-13 27.5-14t28.5 11q12 12 12.5 28.5T227-678q-33 42-50 92t-17 104q0 54 18 104t50 92q11 14 10.5 30T226-228q-12 12-28.5 11.5T170-230q-43-54-66.5-118.5T80-482Zm300 242q-25 0-42.5-17.5T320-300q0-25 17.5-42.5T380-360q25 0 42.5 17.5T440-300q0 25-17.5 42.5T380-240Zm179-200q-17 0-28.5-11.5T519-480v-31l-26 16q-14 8-30.5 3.5T438-510q-8-14-3.5-30.5T453-565l26-15-27-15q-14-8-18-24.5t4-30.5q8-15 24.5-18.5T493-664l26 15v-31q0-17 11.5-28.5T559-720q17 0 28.5 11.5T599-680v31l26-16q14-8 30.5-3.5T680-650q8 14 3.5 30.5T665-595l-26 15 27 15q14 8 18 24.5t-4 30.5q-8 15-24.5 18.5T625-496l-26-15v31q0 17-11.5 28.5T559-440Zm321-42q0 69-22.5 133.5T791-230q-11 13-27.5 13.5T735-228q-12-12-12.5-28t10.5-30q33-42 50-92t17-104q0-54-18-104t-50-92q-11-14-10-30.5t13-28.5q12-12 28-11t27 14q43 54 66.5 118.5T880-482Z" /></svg>
|
46
|
+
icon:search_replace = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M440-720q-63 0-113.5 34.5T254-595q-6 15-19.5 22.5T205-568q-16-3-25.5-15.5T175-610q27-84 99-137t166-53q59 0 110.5 22.5T640-716v-44q0-17 11.5-28.5T680-800q17 0 28.5 11.5T720-760v160q0 17-11.5 28.5T680-560H520q-17 0-28.5-11.5T480-600q0-17 11.5-28.5T520-640h80q-29-36-69.5-58T440-720Zm0 480q-59 0-110.5-22.5T240-324v44q0 17-11.5 28.5T200-240q-17 0-28.5-11.5T160-280v-160q0-17 11.5-28.5T200-480h160q17 0 28.5 11.5T400-440q0 17-11.5 28.5T360-400h-80q29 36 69.5 58t90.5 22q62 0 111.5-33t72.5-87q7-16 20.5-25.5T675-472q17 4 25 18t3 30q-7 20-16.5 37.5T664-352l148 148q11 11 11 28t-11 28q-11 11-28 11t-28-11L608-296q-36 27-78.5 41.5T440-240Z" /></svg>
|
47
|
+
icon:search_word = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M120-199q-33 0-56.5-23.5T40-279v-80q0-17 11.5-28.5T80-399q17 0 28.5 11.5T120-359v80h720v-80q0-17 11.5-28.5T880-399q17 0 28.5 11.5T920-359v80q0 33-23.5 56.5T840-199H120Zm174-152q-49 0-77-25.5T189-446q0-42 32.5-68.5T305-541q23 0 42.5 3.5T381-526v-14q0-27-18.5-43T312-599q-15 0-28.5 4.5T259-582q-9 7-19.5 8t-19.5-6q-9-7-11-17.5t6-18.5q18-17 42.5-26t55.5-9q62 0 95 29.5t33 85.5v147q0 12-8.5 20.5T412-360q-13 0-21.5-8.5T382-390v-4h-3q-13 20-35 31.5T294-351Zm22-143q-32 0-49 12.5T250-446q0 20 15 32.5t39 12.5q32 0 54.5-22.5T381-478q-14-8-32-12t-33-4Zm337 143q-41 0-62.5-18T563-397h-3v13q0 12-8.5 20.5T531-355q-12 0-21-9t-9-21v-345q0-13 9-22t22-9q13 0 22 9t9 22v82l-3 40h3q3-5 24-25.5t66-20.5q64 0 101 46t37 106q0 60-36.5 105.5T653-351Zm-9-247q-40 0-62 29.5T560-503q0 37 22 66t62 29q40 0 62.5-29t22.5-66q0-37-22.5-66T644-598Z" /></svg>
|
48
|
+
icon:bullet-off = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0 0q-134 0-227-93t-93-227q0-134 93-227t227-93q134 0 227 93t93 227q0 134-93 227t-227 93Z" /></svg>
|
49
|
+
icon:bullet-on = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-280q83 0 141.5-58.5T680-480q0-83-58.5-141.5T480-680q-83 0-141.5 58.5T280-480q0 83 58.5 141.5T480-280Zm0 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Z" /></svg>
|
50
|
+
icon:unfold-hide = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M420-308q-8 0-14-5.5t-6-14.5v-304q0-9 6-14.5t14-5.5q2 0 14 6l145 145q5 5 7 10t2 11q0 6-2 11t-7 10L434-314q-3 3-6.5 4.5T420-308Z" /></svg>
|
51
|
+
icon:unfold-show = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M459-381 314-526q-3-3-4.5-6.5T308-540q0-8 5.5-14t14.5-6h304q9 0 14.5 6t5.5 14q0 2-6 14L501-381q-5 5-10 7t-11 2q-6 0-11-2t-10-7Z" /></svg>
|
52
|
+
icon:sb_build = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M760-252v72q0 8 6 14t14 6q8 0 14-6t6-14v-120q0-8-6-14t-14-6H660q-8 0-14 6t-6 14q0 8 6 14t14 6h72l-98 98q-6 6-6 14t6 14q6 6 14 6t14-6l98-98ZM720-40q-83 0-141.5-58.5T520-240q0-83 58.5-141.5T720-440q83 0 141.5 58.5T920-240q0 83-58.5 141.5T720-40ZM320-600h320q17 0 28.5-11.5T680-640q0-17-11.5-28.5T640-680H320q-17 0-28.5 11.5T280-640q0 17 11.5 28.5T320-600ZM200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h560q33 0 56.5 23.5T840-760v218q0 18-15 28t-32 4q-17-5-35.5-7.5T720-520q-11 0-20.5.5T680-517q-9-2-20-2.5t-20-.5H320q-17 0-28.5 11.5T280-480q0 17 11.5 28.5T320-440h205q-18 17-32.5 37T467-360H320q-17 0-28.5 11.5T280-320q0 17 11.5 28.5T320-280h123q-2 10-2.5 19.5T440-240q0 20 2 38t7 35q5 17-5 32t-27 15H200Z" /></svg>
|
53
|
+
icon:sb_details = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M400-200q-17 0-28.5-11.5T360-240q0-17 11.5-28.5T400-280h400q17 0 28.5 11.5T840-240q0 17-11.5 28.5T800-200H400Zm0-240q-17 0-28.5-11.5T360-480q0-17 11.5-28.5T400-520h400q17 0 28.5 11.5T840-480q0 17-11.5 28.5T800-440H400Zm0-240q-17 0-28.5-11.5T360-720q0-17 11.5-28.5T400-760h400q17 0 28.5 11.5T840-720q0 17-11.5 28.5T800-680H400ZM200-160q-33 0-56.5-23.5T120-240q0-33 23.5-56.5T200-320q33 0 56.5 23.5T280-240q0 33-23.5 56.5T200-160Zm0-240q-33 0-56.5-23.5T120-480q0-33 23.5-56.5T200-560q33 0 56.5 23.5T280-480q0 33-23.5 56.5T200-400Zm0-240q-33 0-56.5-23.5T120-720q0-33 23.5-56.5T200-800q33 0 56.5 23.5T280-720q0 33-23.5 56.5T200-640Z" /></svg>
|
54
|
+
icon:sb_novel = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M320-320q17 0 28.5-11.5T360-360v-400q0-17-11.5-28.5T320-800q-17 0-28.5 11.5T280-760v400q0 17 11.5 28.5T320-320ZM760-80H240q-50 0-85-35t-35-85v-560q0-50 35-85t85-35h272q-34 35-53 81t-19 99q0 103 69.5 177T680-441v121q0 33-23.5 56.5T600-240H240q-17 0-28.5 11.5T200-200q0 17 11.5 28.5T240-160h520v-287q22-5 42-13.5t38-20.5v321q0 33-23.5 56.5T760-80Zm-60-400q0-92 64-156t156-64q-92 0-156-64t-64-156q0 92-64 156t-156 64q92 0 156 64t64 156Z" /></svg>
|
55
|
+
icon:sb_outline = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M320-600q17 0 28.5-11.5T360-640q0-17-11.5-28.5T320-680q-17 0-28.5 11.5T280-640q0 17 11.5 28.5T320-600Zm0 160q17 0 28.5-11.5T360-480q0-17-11.5-28.5T320-520q-17 0-28.5 11.5T280-480q0 17 11.5 28.5T320-440Zm0 160q17 0 28.5-11.5T360-320q0-17-11.5-28.5T320-360q-17 0-28.5 11.5T280-320q0 17 11.5 28.5T320-280ZM200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h407q16 0 30.5 6t25.5 17l154 154q11 11 17 25.5t6 30.5v407q0 33-23.5 56.5T760-120H200Zm400-640v120q0 17 11.5 28.5T640-600h120L600-760Z" /></svg>
|
56
|
+
icon:sb_project = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M560-120v-66q0-8 3-15.5t9-13.5l209-208q9-9 20-13t22-4q12 0 23 4.5t20 13.5l37 37q8 9 12.5 20t4.5 22q0 11-4 22.5T903-300L695-92q-6 6-13.5 9T666-80h-66q-17 0-28.5-11.5T560-120Zm263-184 37-39-37-37-38 38 38 38ZM160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h207q16 0 30.5 6t25.5 17l57 57h320q33 0 56.5 23.5T880-640v83q0 18-14.5 29t-33.5 8h-11q-28 0-52.5 10T724-480L503-259q-11 11-17 25.5t-6 30.5v3q0 17-11.5 28.5T440-160H160Z" /></svg>
|
57
|
+
icon:sb_search = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M380-320q-109 0-184.5-75.5T120-580q0-109 75.5-184.5T380-840q109 0 184.5 75.5T640-580q0 44-14 83t-38 69l224 224q11 11 11 28t-11 28q-11 11-28 11t-28-11L532-372q-30 24-69 38t-83 14Zm0-80q75 0 127.5-52.5T560-580q0-75-52.5-127.5T380-760q-75 0-127.5 52.5T200-580q0 75 52.5 127.5T380-400Z" /></svg>
|
58
|
+
icon:sb_stats = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M680-160q-17 0-28.5-11.5T640-200v-200q0-17 11.5-28.5T680-440h80q17 0 28.5 11.5T800-400v200q0 17-11.5 28.5T760-160h-80Zm-240 0q-17 0-28.5-11.5T400-200v-560q0-17 11.5-28.5T440-800h80q17 0 28.5 11.5T560-760v560q0 17-11.5 28.5T520-160h-80Zm-240 0q-17 0-28.5-11.5T160-200v-360q0-17 11.5-28.5T200-600h80q17 0 28.5 11.5T320-560v360q0 17-11.5 28.5T280-160h-80Z" /></svg>
|
59
|
+
icon:add = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M440-440H240q-17 0-28.5-11.5T200-480q0-17 11.5-28.5T240-520h200v-200q0-17 11.5-28.5T480-760q17 0 28.5 11.5T520-720v200h200q17 0 28.5 11.5T760-480q0 17-11.5 28.5T720-440H520v200q0 17-11.5 28.5T480-200q-17 0-28.5-11.5T440-240v-200Z" /></svg>
|
60
|
+
icon:bookmarks = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M400-160 232-88q-40 17-76-6.5T120-161v-519q0-33 23.5-56.5T200-760h400q33 0 56.5 23.5T680-680v519q0 43-36 66.5T568-88l-168-72Zm400 0q-17 0-28.5-11.5T760-200v-640H280q-17 0-28.5-11.5T240-880q0-17 11.5-28.5T280-920h480q33 0 56.5 23.5T840-840v640q0 17-11.5 28.5T800-160Z" /></svg>
|
61
|
+
icon:browse = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h207q16 0 30.5 6t25.5 17l57 57h360q17 0 28.5 11.5T880-680q0 17-11.5 28.5T840-640H314q-62 0-108 39t-46 99v262l79-263q8-26 29.5-41.5T316-560h516q41 0 64.5 32.5T909-457l-72 240q-8 26-29.5 41.5T760-160H160Z" /></svg>
|
62
|
+
icon:build_settings = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M760-252v72q0 8 6 14t14 6q8 0 14-6t6-14v-120q0-8-6-14t-14-6H660q-8 0-14 6t-6 14q0 8 6 14t14 6h72l-98 98q-6 6-6 14t6 14q6 6 14 6t14-6l98-98ZM720-40q-83 0-141.5-58.5T520-240q0-83 58.5-141.5T720-440q83 0 141.5 58.5T920-240q0 83-58.5 141.5T720-40ZM320-600h320q17 0 28.5-11.5T680-640q0-17-11.5-28.5T640-680H320q-17 0-28.5 11.5T280-640q0 17 11.5 28.5T320-600ZM200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h560q33 0 56.5 23.5T840-760v218q0 18-15 28t-32 4q-17-5-35.5-7.5T720-520q-11 0-20.5.5T680-517q-9-2-20-2.5t-20-.5H320q-17 0-28.5 11.5T280-480q0 17 11.5 28.5T320-440h205q-18 17-32.5 37T467-360H320q-17 0-28.5 11.5T280-320q0 17 11.5 28.5T320-280h123q-2 10-2.5 19.5T440-240q0 20 2 38t7 35q5 17-5 32t-27 15H200Z" /></svg>
|
63
|
+
icon:cancel = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="m480-424 116 116q11 11 28 11t28-11q11-11 11-28t-11-28L536-480l116-116q11-11 11-28t-11-28q-11-11-28-11t-28 11L480-536 364-652q-11-11-28-11t-28 11q-11 11-11 28t11 28l116 116-116 116q-11 11-11 28t11 28q11 11 28 11t28-11l116-116Zm0 344q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Z" /></svg>
|
64
|
+
icon:checked = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="m424-424-86-86q-11-11-28-11t-28 11q-11 11-11 28t11 28l114 114q12 12 28 12t28-12l226-226q11-11 11-28t-11-28q-11-11-28-11t-28 11L424-424ZM200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h560q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120H200Z" /></svg>
|
65
|
+
icon:chevron_down = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-361q-8 0-15-2.5t-13-8.5L268-556q-11-11-11-28t11-28q11-11 28-11t28 11l156 156 156-156q11-11 28-11t28 11q11 11 11 28t-11 28L508-372q-6 6-13 8.5t-15 2.5Z" /></svg>
|
66
|
+
icon:chevron_left = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="m142-480 294 294q15 15 14.5 35T435-116q-15 15-35 15t-35-15L57-423q-12-12-18-27t-6-30q0-15 6-30t18-27l308-308q15-15 35.5-14.5T436-844q15 15 15 35t-15 35L142-480Z" /></svg>
|
67
|
+
icon:chevron_right = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M579-480 285-774q-15-15-14.5-35.5T286-845q15-15 35.5-15t35.5 15l307 308q12 12 18 27t6 30q0 15-6 30t-18 27L356-115q-15 15-35 14.5T286-116q-15-15-15-35.5t15-35.5l293-293Z" /></svg>
|
68
|
+
icon:chevron_up = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-528 324-372q-11 11-28 11t-28-11q-11-11-11-28t11-28l184-184q12-12 28-12t28 12l184 184q11 11 11 28t-11 28q-11 11-28 11t-28-11L480-528Z" /></svg>
|
69
|
+
icon:close = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-424 284-228q-11 11-28 11t-28-11q-11-11-11-28t11-28l196-196-196-196q-11-11-11-28t11-28q11-11 28-11t28 11l196 196 196-196q11-11 28-11t28 11q11 11 11 28t-11 28L536-480l196 196q11 11 11 28t-11 28q-11 11-28 11t-28-11L480-424Z" /></svg>
|
70
|
+
icon:copy = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M360-240q-33 0-56.5-23.5T280-320v-480q0-33 23.5-56.5T360-880h360q33 0 56.5 23.5T800-800v480q0 33-23.5 56.5T720-240H360ZM200-80q-33 0-56.5-23.5T120-160v-520q0-17 11.5-28.5T160-720q17 0 28.5 11.5T200-680v520h400q17 0 28.5 11.5T640-120q0 17-11.5 28.5T600-80H200Z" /></svg>
|
71
|
+
icon:document_add = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M240-80q-33 0-56.5-23.5T160-160v-640q0-33 23.5-56.5T240-880h287q16 0 30.5 6t25.5 17l194 194q11 11 17 25.5t6 30.5v447q0 33-23.5 56.5T720-80H240Zm280-560q0 17 11.5 28.5T560-600h160L520-800v160Zm-80 280v80q0 17 11.5 28.5T480-240q17 0 28.5-11.5T520-280v-80h80q17 0 28.5-11.5T640-400q0-17-11.5-28.5T600-440h-80v-80q0-17-11.5-28.5T480-560q-17 0-28.5 11.5T440-520v80h-80q-17 0-28.5 11.5T320-400q0 17 11.5 28.5T360-360h80Z" /></svg>
|
72
|
+
icon:document = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M360-440h240q17 0 28.5-11.5T640-480q0-17-11.5-28.5T600-520H360q-17 0-28.5 11.5T320-480q0 17 11.5 28.5T360-440Zm0 120h240q17 0 28.5-11.5T640-360q0-17-11.5-28.5T600-400H360q-17 0-28.5 11.5T320-360q0 17 11.5 28.5T360-320Zm0 120h120q17 0 28.5-11.5T520-240q0-17-11.5-28.5T480-280H360q-17 0-28.5 11.5T320-240q0 17 11.5 28.5T360-200ZM240-80q-33 0-56.5-23.5T160-160v-640q0-33 23.5-56.5T240-880h287q16 0 30.5 6t25.5 17l194 194q11 11 17 25.5t6 30.5v447q0 33-23.5 56.5T720-80H240Zm280-560q0 17 11.5 28.5T560-600h160L520-800v160Z" /></svg>
|
73
|
+
icon:edit = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M160-120q-17 0-28.5-11.5T120-160v-97q0-16 6-30.5t17-25.5l505-504q12-11 26.5-17t30.5-6q16 0 31 6t26 18l55 56q12 11 17.5 26t5.5 30q0 16-5.5 30.5T817-647L313-143q-11 11-25.5 17t-30.5 6h-97Zm544-528 56-56-56-56-56 56 56 56Z" /></svg>
|
74
|
+
icon:exclude = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M320-440h320q17 0 28.5-11.5T680-480q0-17-11.5-28.5T640-520H320q-17 0-28.5 11.5T280-480q0 17 11.5 28.5T320-440ZM480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Z" /></svg>
|
75
|
+
icon:export = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="m320-183-90 90q-12 12-28 11.5T174-94q-11-12-11.5-28t11.5-28l90-90h-50q-17 0-28.5-11.5T174-280q0-17 11.5-28.5T214-320h146q17 0 28.5 11.5T400-280v146q0 17-11.5 28.5T360-94q-17 0-28.5-11.5T320-134v-49ZM520-80q-17 0-28.5-11.5T480-120v-160q0-50-35-85t-85-35H200q-17 0-28.5-11.5T160-440v-360q0-33 23.5-56.5T240-880h320l240 240v480q0 33-23.5 56.5T720-80H520Zm0-520h200L520-800l200 200-200-200v200Z" /></svg>
|
76
|
+
icon:filter = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M440-160q-17 0-28.5-11.5T400-200v-240L168-736q-15-20-4.5-42t36.5-22h560q26 0 36.5 22t-4.5 42L560-440v240q0 17-11.5 28.5T520-160h-80Z" /></svg>
|
77
|
+
icon:fit_height = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M240-80q-33 0-56.5-23.5T160-160v-640q0-33 23.5-56.5T240-880h480q33 0 56.5 23.5T800-800v640q0 33-23.5 56.5T720-80H240Zm168-520h144q14 0 19-12t-5-22l-58-58q-12-12-28-12t-28 12l-58 58q-10 10-5 22t19 12Zm100 332 58-58q10-10 5-22t-19-12H408q-14 0-19 12t5 22l58 58q12 12 28 12t28-12Z" /></svg>
|
78
|
+
icon:fit_width = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h640q33 0 56.5 23.5T880-720v480q0 33-23.5 56.5T800-160H160Zm200-248v-144q0-14-12-19t-22 5l-58 58q-12 12-12 28t12 28l58 58q10 10 22 5t12-19Zm332-100-58-58q-10-10-22-5t-12 19v144q0 14 12 19t22-5l58-58q12-12 12-28t-12-28Z" /></svg>
|
79
|
+
icon:folder = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h207q16 0 30.5 6t25.5 17l57 57h320q33 0 56.5 23.5T880-640v400q0 33-23.5 56.5T800-160H160Z" /></svg>
|
80
|
+
icon:font = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M384-362h192l35 97q4 11 14 18t22 7q20 0 32.5-16.5T684-293L532-695q-5-11-15-18t-22-7h-30q-12 0-22 7t-15 18L276-293q-8 19 4 36t32 17q13 0 22.5-7t14.5-19l35-96Zm24-70 70-198h4l70 198H408ZM160-80q-33 0-56.5-23.5T80-160v-640q0-33 23.5-56.5T160-880h640q33 0 56.5 23.5T880-800v640q0 33-23.5 56.5T800-80H160Z" /></svg>
|
81
|
+
icon:import = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M200-120q-33 0-56.5-23.5T120-200v-80q0-17 11.5-28.5T160-320q17 0 28.5 11.5T200-280v80h560v-480H200v80q0 17-11.5 28.5T160-560q-17 0-28.5-11.5T120-600v-160q0-33 23.5-56.5T200-840h560q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120H200Zm287-280H160q-17 0-28.5-11.5T120-440q0-17 11.5-28.5T160-480h327l-55-56q-11-11-11.5-27.5T432-592q11-11 28-11t28 11l124 124q12 12 12 28t-12 28L488-288q-11 11-27.5 11.5T432-288q-11-11-11-28t11-28l55-56Z" /></svg>
|
82
|
+
icon:language = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="m603-202-34 97q-4 11-14 18t-22 7q-20 0-32.5-16.5T496-133l152-402q5-11 15-18t22-7h30q12 0 22 7t15 18l152 403q8 19-4 35.5T868-80q-13 0-22.5-7T831-106l-34-96H603ZM362-401 188-228q-11 11-27.5 11.5T132-228q-11-11-11-28t11-28l174-174q-35-35-63.5-80T190-640h84q20 39 40 68t48 58q33-33 68.5-92.5T484-720H80q-17 0-28.5-11.5T40-760q0-17 11.5-28.5T80-800h240v-40q0-17 11.5-28.5T360-880q17 0 28.5 11.5T400-840v40h240q17 0 28.5 11.5T680-760q0 17-11.5 28.5T640-720h-76q-21 72-63 148t-83 116l96 98-30 82-122-125Zm266 129h144l-72-204-72 204Z" /></svg>
|
83
|
+
icon:lines = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M160-200q-17 0-28.5-11.5T120-240q0-17 11.5-28.5T160-280h640q17 0 28.5 11.5T840-240q0 17-11.5 28.5T800-200H160Zm0-160q-17 0-28.5-11.5T120-400q0-17 11.5-28.5T160-440h640q17 0 28.5 11.5T840-400q0 17-11.5 28.5T800-360H160Zm0-160q-17 0-28.5-11.5T120-560q0-17 11.5-28.5T160-600h640q17 0 28.5 11.5T840-560q0 17-11.5 28.5T800-520H160Zm0-160q-17 0-28.5-11.5T120-720q0-17 11.5-28.5T160-760h640q17 0 28.5 11.5T840-720q0 17-11.5 28.5T800-680H160Z" /></svg>
|
84
|
+
icon:list = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M400-200q-17 0-28.5-11.5T360-240q0-17 11.5-28.5T400-280h400q17 0 28.5 11.5T840-240q0 17-11.5 28.5T800-200H400Zm0-240q-17 0-28.5-11.5T360-480q0-17 11.5-28.5T400-520h400q17 0 28.5 11.5T840-480q0 17-11.5 28.5T800-440H400Zm0-240q-17 0-28.5-11.5T360-720q0-17 11.5-28.5T400-760h400q17 0 28.5 11.5T840-720q0 17-11.5 28.5T800-680H400ZM200-160q-33 0-56.5-23.5T120-240q0-33 23.5-56.5T200-320q33 0 56.5 23.5T280-240q0 33-23.5 56.5T200-160Zm0-240q-33 0-56.5-23.5T120-480q0-33 23.5-56.5T200-560q33 0 56.5 23.5T280-480q0 33-23.5 56.5T200-400Zm0-240q-33 0-56.5-23.5T120-720q0-33 23.5-56.5T200-800q33 0 56.5 23.5T280-720q0 33-23.5 56.5T200-640Z" /></svg>
|
85
|
+
icon:margin_bottom = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M200-120q-17 0-28.5-11.5T160-160q0-17 11.5-28.5T200-200h560q17 0 28.5 11.5T800-160q0 17-11.5 28.5T760-120H200Zm280-177q-8 0-15-2.5t-13-8.5L308-452q-11-11-11-28t11-28q11-11 28-11t28 11l76 76v-368q0-17 11.5-28.5T480-840q17 0 28.5 11.5T520-800v368l76-76q11-11 28-11t28 11q11 11 11 28t-11 28L508-308q-6 6-13 8.5t-15 2.5Z" /></svg>
|
86
|
+
icon:margin_left = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M120-240q-17 0-28.5-11.5T80-280v-400q0-17 11.5-28.5T120-720q17 0 28.5 11.5T160-680v400q0 17-11.5 28.5T120-240Zm273-200 115 115q12 12 12 28.5T508-268q-12 11-28.5 11T452-268L268-452q-6-6-8.5-13t-2.5-15q0-8 2.5-15t8.5-13l184-184q11-11 28-11t28 11q12 12 11.5 28.5T508-636L393-520h447q17 0 28.5 11.5T880-480q0 17-11.5 28.5T840-440H393Z" /></svg>
|
87
|
+
icon:margin_right = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M840-240q-17 0-28.5-11.5T800-280v-400q0-17 11.5-28.5T840-720q17 0 28.5 11.5T880-680v400q0 17-11.5 28.5T840-240ZM567-440H120q-17 0-28.5-11.5T80-480q0-17 11.5-28.5T120-520h447L452-636q-11-11-11.5-27.5T452-692q11-11 28-11t28 11l184 184q6 6 8.5 13t2.5 15q0 8-2.5 15t-8.5 13L508-268q-11 11-27.5 11T452-268q-12-12-12-28.5t12-28.5l115-115Z" /></svg>
|
88
|
+
icon:margin_top = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M200-760q-17 0-28.5-11.5T160-800q0-17 11.5-28.5T200-840h560q17 0 28.5 11.5T800-800q0 17-11.5 28.5T760-760H200Zm280 640q-17 0-28.5-11.5T440-160v-368l-76 76q-11 11-28 11t-28-11q-11-11-11-28t11-28l144-144q6-6 13-8.5t15-2.5q8 0 15 2.5t13 8.5l144 144q11 11 11 28t-11 28q-11 11-28 11t-28-11l-76-76v368q0 17-11.5 28.5T480-120Z" /></svg>
|
89
|
+
icon:maximise = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M200-200h80q17 0 28.5 11.5T320-160q0 17-11.5 28.5T280-120H160q-17 0-28.5-11.5T120-160v-120q0-17 11.5-28.5T160-320q17 0 28.5 11.5T200-280v80Zm560 0v-80q0-17 11.5-28.5T800-320q17 0 28.5 11.5T840-280v120q0 17-11.5 28.5T800-120H680q-17 0-28.5-11.5T640-160q0-17 11.5-28.5T680-200h80ZM200-760v80q0 17-11.5 28.5T160-640q-17 0-28.5-11.5T120-680v-120q0-17 11.5-28.5T160-840h120q17 0 28.5 11.5T320-800q0 17-11.5 28.5T280-760h-80Zm560 0h-80q-17 0-28.5-11.5T640-800q0-17 11.5-28.5T680-840h120q17 0 28.5 11.5T840-800v120q0 17-11.5 28.5T800-640q-17 0-28.5-11.5T760-680v-80Z" /></svg>
|
90
|
+
icon:minimise = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M240-240h-80q-17 0-28.5-11.5T120-280q0-17 11.5-28.5T160-320h120q17 0 28.5 11.5T320-280v120q0 17-11.5 28.5T280-120q-17 0-28.5-11.5T240-160v-80Zm480 0v80q0 17-11.5 28.5T680-120q-17 0-28.5-11.5T640-160v-120q0-17 11.5-28.5T680-320h120q17 0 28.5 11.5T840-280q0 17-11.5 28.5T800-240h-80ZM240-720v-80q0-17 11.5-28.5T280-840q17 0 28.5 11.5T320-800v120q0 17-11.5 28.5T280-640H160q-17 0-28.5-11.5T120-680q0-17 11.5-28.5T160-720h80Zm480 0h80q17 0 28.5 11.5T840-680q0 17-11.5 28.5T800-640H680q-17 0-28.5-11.5T640-680v-120q0-17 11.5-28.5T680-840q17 0 28.5 11.5T720-800v80Z" /></svg>
|
91
|
+
icon:more_arrow = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M420-308q-8 0-14-5.5t-6-14.5v-304q0-9 6-14.5t14-5.5q2 0 14 6l145 145q5 5 7 10t2 11q0 6-2 11t-7 10L434-314q-3 3-6.5 4.5T420-308Z" /></svg>
|
92
|
+
icon:more_vertical = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-160q-33 0-56.5-23.5T400-240q0-33 23.5-56.5T480-320q33 0 56.5 23.5T560-240q0 33-23.5 56.5T480-160Zm0-240q-33 0-56.5-23.5T400-480q0-33 23.5-56.5T480-560q33 0 56.5 23.5T560-480q0 33-23.5 56.5T480-400Zm0-240q-33 0-56.5-23.5T400-720q0-33 23.5-56.5T480-800q33 0 56.5 23.5T560-720q0 33-23.5 56.5T480-640Z" /></svg>
|
93
|
+
icon:noncheckable = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M320-440h320q17 0 28.5-11.5T680-480q0-17-11.5-28.5T640-520H320q-17 0-28.5 11.5T280-480q0 17 11.5 28.5T320-440ZM200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h560q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120H200Z" /></svg>
|
94
|
+
icon:open = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h240q17 0 28.5 11.5T480-800q0 17-11.5 28.5T440-760H200v560h560v-240q0-17 11.5-28.5T800-480q17 0 28.5 11.5T840-440v240q0 33-23.5 56.5T760-120H200Zm560-584L416-360q-11 11-28 11t-28-11q-11-11-11-28t11-28l344-344H600q-17 0-28.5-11.5T560-800q0-17 11.5-28.5T600-840h200q17 0 28.5 11.5T840-800v200q0 17-11.5 28.5T800-560q-17 0-28.5-11.5T760-600v-104Z" /></svg>
|
95
|
+
icon:panel = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h560q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120H200Zm0-280h560v-360H200v360Z" /></svg>
|
96
|
+
icon:pin = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M640-760v280l68 68q6 6 9 13.5t3 15.5v23q0 17-11.5 28.5T680-320H520v223q0 8-3 15.5T508-68l-14 14q-6 6-14 6t-14-6l-14-14q-6-6-9-13.5T440-97v-223H280q-17 0-28.5-11.5T240-360v-23q0-8 3-15.5t9-13.5l68-68v-280q-17 0-28.5-11.5T280-800q0-17 11.5-28.5T320-840h320q17 0 28.5 11.5T680-800q0 17-11.5 28.5T640-760Z" /></svg>
|
97
|
+
icon:project_copy = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M120-120q-33 0-56.5-23.5T40-200v-480q0-17 11.5-28.5T80-720q17 0 28.5 11.5T120-680v480h640q17 0 28.5 11.5T800-160q0 17-11.5 28.5T760-120H120Zm160-160q-33 0-56.5-23.5T200-360v-440q0-33 23.5-56.5T280-880h167q16 0 30.5 6t25.5 17l57 57h280q33 0 56.5 23.5T920-720v360q0 33-23.5 56.5T840-280H280Z" /></svg>
|
98
|
+
icon:quote = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="m262-300 58-100q-66 0-113-47t-47-113q0-66 47-113t113-47q66 0 113 47t47 113q0 23-5.5 42.5T458-480L331-260q-5 9-14 14.5t-20 5.5q-23 0-34.5-20t-.5-40Zm360 0 58-100q-66 0-113-47t-47-113q0-66 47-113t113-47q66 0 113 47t47 113q0 23-5.5 42.5T818-480L691-260q-5 9-14 14.5t-20 5.5q-23 0-34.5-20t-.5-40Z" /></svg>
|
99
|
+
icon:refresh = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-160q-134 0-227-93t-93-227q0-134 93-227t227-93q69 0 132 28.5T720-690v-70q0-17 11.5-28.5T760-800q17 0 28.5 11.5T800-760v200q0 17-11.5 28.5T760-520H560q-17 0-28.5-11.5T520-560q0-17 11.5-28.5T560-600h128q-32-56-87.5-88T480-720q-100 0-170 70t-70 170q0 100 70 170t170 70q68 0 124.5-34.5T692-367q8-14 22.5-19.5t29.5-.5q16 5 23 21t-1 30q-41 80-117 128t-169 48Z" /></svg>
|
100
|
+
icon:remove = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M240-440q-17 0-28.5-11.5T200-480q0-17 11.5-28.5T240-520h480q17 0 28.5 11.5T760-480q0 17-11.5 28.5T720-440H240Z" /></svg>
|
101
|
+
icon:revert = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-120q-126 0-223-76.5T131-392q-4-15 6-27.5t27-14.5q16-2 29 6t18 24q24 90 99 147t170 57q117 0 198.5-81.5T760-480q0-117-81.5-198.5T480-760q-69 0-129 32t-101 88h70q17 0 28.5 11.5T360-600q0 17-11.5 28.5T320-560H160q-17 0-28.5-11.5T120-600v-160q0-17 11.5-28.5T160-800q17 0 28.5 11.5T200-760v54q51-64 124.5-99T480-840q75 0 140.5 28.5t114 77q48.5 48.5 77 114T840-480q0 75-28.5 140.5t-77 114q-48.5 48.5-114 77T480-120Zm0-280q-33 0-56.5-23.5T400-480q0-33 23.5-56.5T480-560q33 0 56.5 23.5T560-480q0 33-23.5 56.5T480-400Z" /></svg>
|
102
|
+
icon:settings = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M433-80q-27 0-46.5-18T363-142l-9-66q-13-5-24.5-12T307-235l-62 26q-25 11-50 2t-39-32l-47-82q-14-23-8-49t27-43l53-40q-1-7-1-13.5v-27q0-6.5 1-13.5l-53-40q-21-17-27-43t8-49l47-82q14-23 39-32t50 2l62 26q11-8 23-15t24-12l9-66q4-26 23.5-44t46.5-18h94q27 0 46.5 18t23.5 44l9 66q13 5 24.5 12t22.5 15l62-26q25-11 50-2t39 32l47 82q14 23 8 49t-27 43l-53 40q1 7 1 13.5v27q0 6.5-2 13.5l53 40q21 17 27 43t-8 49l-48 82q-14 23-39 32t-50-2l-60-26q-11 8-23 15t-24 12l-9 66q-4 26-23.5 44T527-80h-94Zm49-260q58 0 99-41t41-99q0-58-41-99t-99-41q-59 0-99.5 41T342-480q0 58 40.5 99t99.5 41Z" /></svg>
|
103
|
+
icon:star = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-269 314-169q-11 7-23 6t-21-8q-9-7-14-17.5t-2-23.5l44-189-147-127q-10-9-12.5-20.5T140-571q4-11 12-18t22-9l194-17 75-178q5-12 15.5-18t21.5-6q11 0 21.5 6t15.5 18l75 178 194 17q14 2 22 9t12 18q4 11 1.5 22.5T809-528L662-401l44 189q3 13-2 23.5T690-171q-9 7-21 8t-23-6L480-269Z" /></svg>
|
104
|
+
icon:stats = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="m110-190 213-213q23-23 57-23t57 23l103 103 256-289q11-13 28.5-13t29.5 12q11 11 11.5 26.5T855-536L596-244q-23 26-57 27.5T480-240L380-340 170-130q-13 13-30 13t-30-13q-13-13-13-30t13-30Zm0-240 213-213q23-23 57-23t57 23l103 103 256-289q11-13 28.5-13t29.5 12q11 11 11.5 26.5T855-776L596-484q-23 26-57 27.5T480-480L380-580 170-370q-13 13-30 13t-30-13q-13-13-13-30t13-30Z" /></svg>
|
105
|
+
icon:text = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M200-200q-17 0-28.5-11.5T160-240q0-17 11.5-28.5T200-280h320q17 0 28.5 11.5T560-240q0 17-11.5 28.5T520-200H200Zm0-160q-17 0-28.5-11.5T160-400q0-17 11.5-28.5T200-440h560q17 0 28.5 11.5T800-400q0 17-11.5 28.5T760-360H200Zm0-160q-17 0-28.5-11.5T160-560q0-17 11.5-28.5T200-600h560q17 0 28.5 11.5T800-560q0 17-11.5 28.5T760-520H200Zm0-160q-17 0-28.5-11.5T160-720q0-17 11.5-28.5T200-760h560q17 0 28.5 11.5T800-720q0 17-11.5 28.5T760-680H200Z" /></svg>
|
106
|
+
icon:timer_off = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-80q-74 0-139.5-28.5T226-186q-49-49-77.5-114.5T120-440q0-60 18.5-115.5T192-656L84-764q-11-11-11-28t11-28q11-11 28-11t28 11l680 680q11 11 11 28t-11 28q-11 11-28 11t-28-11l-68-68q-48 35-103.5 53.5T480-80Zm-80-760q-17 0-28.5-11.5T360-880q0-17 11.5-28.5T400-920h160q17 0 28.5 11.5T600-880q0 17-11.5 28.5T560-840H400Zm348 516L520-552v-48q0-17-11.5-28.5T480-640q-10 0-18.5 4T448-624l-85-85q-18-18-13-43t29-33q24-8 49.5-11.5T480-800q60 0 117.5 20T706-722l28-28q11-11 28-11t28 11q11 11 11 28t-11 28l-28 28q38 51 58 108.5T840-440q0 26-3.5 51T825-339q-8 24-33 29t-44-14Z" /></svg>
|
107
|
+
icon:timer = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M400-840q-17 0-28.5-11.5T360-880q0-17 11.5-28.5T400-920h160q17 0 28.5 11.5T600-880q0 17-11.5 28.5T560-840H400Zm80 440q17 0 28.5-11.5T520-440v-160q0-17-11.5-28.5T480-640q-17 0-28.5 11.5T440-600v160q0 17 11.5 28.5T480-400Zm0 320q-74 0-139.5-28.5T226-186q-49-49-77.5-114.5T120-440q0-74 28.5-139.5T226-694q49-49 114.5-77.5T480-800q62 0 119 20t107 58l28-28q11-11 28-11t28 11q11 11 11 28t-11 28l-28 28q38 50 58 107t20 119q0 74-28.5 139.5T734-186q-49 49-114.5 77.5T480-80Z" /></svg>
|
108
|
+
icon:unchecked = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="m480-424 116 116q11 11 28 11t28-11q11-11 11-28t-11-28L536-480l116-116q11-11 11-28t-11-28q-11-11-28-11t-28 11L480-536 364-652q-11-11-28-11t-28 11q-11 11-11 28t11 28l116 116-116 116q-11 11-11 28t11 28q11 11 28 11t28-11l116-116ZM200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h560q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120H200Z" /></svg>
|
109
|
+
icon:view = <svg xmlns="http://www.w3.org/2000/svg" height="128" viewBox="0 -960 960 960" width="128" fill="#000000"><path d="M480-320q75 0 127.5-52.5T660-500q0-75-52.5-127.5T480-680q-75 0-127.5 52.5T300-500q0 75 52.5 127.5T480-320Zm0-72q-45 0-76.5-31.5T372-500q0-45 31.5-76.5T480-608q45 0 76.5 31.5T588-500q0 45-31.5 76.5T480-392Zm0 192q-134 0-244.5-72T61-462q-5-9-7.5-18.5T51-500q0-10 2.5-19.5T61-538q64-118 174.5-190T480-800q134 0 244.5 72T899-538q5 9 7.5 18.5T909-500q0 10-2.5 19.5T899-462q-64 118-174.5 190T480-200Z" /></svg>
|