fix(icons): add table-of-contents icon (#2348)

* fix(icons): add table-of-contents icon

* fix(icons): add ToC to custom words list

* fix(icons): fix formatting

authored by Karsa and committed by GitHub 3271972d 915e8b5b

+1
.cspell/custom-words.txt
··· 9 9 touchpad 10 10 ungroup 11 11 pilcrow 12 + toc 12 13 13 14 # Brands 14 15 codepen
+24
icons/table-of-contents.json
··· 1 + { 2 + "$schema": "../icon.schema.json", 3 + "contributors": [ 4 + "karsa-mistmere" 5 + ], 6 + "tags": [ 7 + "toc", 8 + "outline", 9 + "navigation", 10 + "document structure", 11 + "index", 12 + "overview", 13 + "sections", 14 + "chapters", 15 + "content", 16 + "documentation", 17 + "manual", 18 + "knowledge base", 19 + "faq" 20 + ], 21 + "categories": [ 22 + "text" 23 + ] 24 + }
+18
icons/table-of-contents.svg
··· 1 + <svg 2 + xmlns="http://www.w3.org/2000/svg" 3 + width="24" 4 + height="24" 5 + viewBox="0 0 24 24" 6 + fill="none" 7 + stroke="currentColor" 8 + stroke-width="2" 9 + stroke-linecap="round" 10 + stroke-linejoin="round" 11 + > 12 + <path d="M16 12H3" /> 13 + <path d="M16 18H3" /> 14 + <path d="M16 6H3" /> 15 + <path d="M21 12h.01" /> 16 + <path d="M21 18h.01" /> 17 + <path d="M21 6h.01" /> 18 + </svg>