octicons 0.0.0.pre.3537d57 → 9.5.0.pre.0fa009c

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 29020d035da188998ba676f5b977ca11660347c70e9ca3d9cde469efec2ee339
4
- data.tar.gz: 5bfe19778ac91f16ac76639897f37570938f5ca1b2b9cc0354d93f174d628698
3
+ metadata.gz: 17b1f444d2b096d370d44cabfd769f1c431787f4fedb1960cc4ed82042db3bcb
4
+ data.tar.gz: fbca866dd2251d541c7952c6a6004484a2be58b6f9c5e8d7fc25e2ca0b0d539e
5
5
  SHA512:
6
- metadata.gz: 4faf0a80c5ab32a30d966e4aba9cf16c669c92a7f7f0faba76cd229ea02a69900d338d5ad749ffc9980091df35c26dd6f4ef93f9d2f1b34c1ad4f6c7f24d4bd4
7
- data.tar.gz: c0c0fec7a9732a5be2361a9f8c4737fe71dc961f242b002600ffc7610179b38c5afa8419c3eb95d15830691cc22b729d6018da948bc8a4e9fe4d508c4d135650
6
+ metadata.gz: 9efa41a2937b4c8197a8ac4823a4f888e9caa6c8c55a6f92d2a1d20870b266daf56d9a9a6da303e0db4c28960f0f941714859024775b4053c2ec77f2e56a1057
7
+ data.tar.gz: 7d0dc01fba81ae299b1cb8f0da3b3c1789328c63bae03f2249f23dbe7dfa32897dd0ff23ac6ce61b26b995c3bd8c629727f0f38f0e3598374a18b575fda75254
data/README.md CHANGED
@@ -1,5 +1,119 @@
1
- # octicons
1
+ # Octicons gem
2
2
 
3
3
  [![Gem version](https://img.shields.io/gem/v/octicons.svg)](https://rubygems.org/gems/octicons)
4
+ [![Build Status](https://travis-ci.org/primer/octicons.svg?branch=master)](https://travis-ci.org/primer/octicons)
4
5
 
5
- See https://primer.style/octicons/packages/ruby
6
+ > Octicons gem to distribute octicons svg
7
+
8
+ ## Install
9
+
10
+ Add this to your `Gemfile`
11
+
12
+ ```rb
13
+ gem 'octicons'
14
+ ```
15
+
16
+ Then `bundle install`.
17
+
18
+ ## Usage
19
+
20
+ ```rb
21
+ require 'octicons'
22
+ icon = Octicons::Octicon.new("x")
23
+ icon.to_svg
24
+ # <svg class="octicon octicon-x" viewBox="0 0 16 16" width="16" height="16" version="1.1" "aria-hidden"="true"><path d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"></path></svg>
25
+ ```
26
+
27
+ ## Documentation
28
+
29
+ The `Octicon` class takes two arguments. The first is the symbol of the icon, and the second is a hash of arguments representing html attributes
30
+
31
+ #### `symbol` _(required)_
32
+
33
+ This is the name of the octicon you want to use. For example `alert`. [Full list of icons][octicons-docs]
34
+
35
+ #### Options
36
+
37
+ * `:height` - When setting the height to a number, the icon will scale to that size. For example, passing `32`, will calculate the width based on the icon's natural size.
38
+ * `:width` - When setting the width to a number, the icon will scale to that size. For example, passing `32`, will calculate the width based on the icon's natural size.
39
+
40
+ If both `:width, :height` are passed into the options hash, then the icon will be sized exactly at those dimensions.
41
+
42
+ #### Attributes
43
+
44
+ Once initialized, you can read a few properties from the icon.
45
+
46
+ ##### `symbol`
47
+
48
+ Returns the string of the symbol name
49
+
50
+ ```rb
51
+ icon = Octicons::Octicon.new("x")
52
+ icon.symbol
53
+ # "x"
54
+ ```
55
+
56
+ ##### `path`
57
+
58
+ Path returns the string representation of the path of the icon.
59
+
60
+ ```rb
61
+ icon = Octicons::Octicon.new("x")
62
+ icon.path
63
+ # <path d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"></path>
64
+ ```
65
+
66
+ ##### `options`
67
+
68
+ This is a hash of all the `options` that will be added to the output tag.
69
+
70
+ ```rb
71
+ icon = Octicons::Octicon.new("x")
72
+ icon.options
73
+ # {:class=>"octicon octicon-x", :viewBox=>"0 0 12 16", :version=>"1.1", :width=>12, :height=>16, :"aria-hidden"=>"true"}
74
+ ```
75
+
76
+ ##### `width`
77
+
78
+ Width is the icon's true width. Based on the svg view box width. _Note, this doesn't change if you scale it up with size options, it only is the natural width of the icon_
79
+
80
+ ##### `height`
81
+
82
+ Height is the icon's true height. Based on the svg view box height. _Note, this doesn't change if you scale it up with size options, it only is the natural height of the icon_
83
+
84
+ ##### `keywords`
85
+
86
+ Returns an array of keywords for the icon. The data comes from the [data file in lib](../data.json). Consider contributing more aliases for the icons.
87
+
88
+ ```rb
89
+ icon = Octicons::Octicon.new("x")
90
+ icon.keywords
91
+ # ["remove", "close", "delete"]
92
+ ```
93
+
94
+ #### Methods
95
+
96
+ ##### `to_svg`
97
+
98
+ Returns a string of the svg tag
99
+
100
+ ```rb
101
+ icon = Octicons::Octicon.new("x")
102
+ icon.to_svg
103
+ # <svg class="octicon octicon-x" viewBox="0 0 16 16" width="16" height="16" version="1.1" "aria-hidden"="true"><path d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"></path></svg>
104
+ ```
105
+
106
+ ## Documentation
107
+
108
+ For a full list of options available, see the [octicons_gem documentation](../octicons_gem/#documentation)
109
+
110
+ ## License
111
+
112
+ (c) GitHub, Inc.
113
+
114
+ When using the GitHub logos, be sure to follow the [GitHub logo guidelines](https://github.com/logos).
115
+
116
+ [MIT](./LICENSE)
117
+
118
+ [octicons]: https://github.com/primer/octicons
119
+ [octicons-docs]: https://octicons.github.com/
@@ -1 +1 @@
1
- {"alert":{"name":"alert","keywords":["warning","triangle","exclamation","point"],"width":16,"height":16,"path":""},"archive":{"name":"archive","keywords":["box","catalog"],"width":14,"height":16,"path":""},"arrow-both":{"name":"arrow-both","keywords":["point","direction","left","right"],"width":20,"height":16,"path":""},"arrow-down":{"name":"arrow-down","keywords":["point","direction"],"width":10,"height":16,"path":""},"arrow-left":{"name":"arrow-left","keywords":["point","direction"],"width":10,"height":16,"path":""},"arrow-right":{"name":"arrow-right","keywords":["point","direction"],"width":10,"height":16,"path":""},"arrow-small-down":{"name":"arrow-small-down","keywords":["point","direction","little","tiny"],"width":6,"height":16,"path":""},"arrow-small-left":{"name":"arrow-small-left","keywords":["point","direction","little","tiny"],"width":6,"height":16,"path":""},"arrow-small-right":{"name":"arrow-small-right","keywords":["point","direction","little","tiny"],"width":6,"height":16,"path":""},"arrow-small-up":{"name":"arrow-small-up","keywords":["point","direction","little","tiny"],"width":6,"height":16,"path":""},"arrow-up":{"name":"arrow-up","keywords":["point","direction"],"width":10,"height":16,"path":""},"beaker":{"name":"beaker","keywords":["experiment","labs","experimental","feature","test","science","education","study","development","testing"],"width":16,"height":16,"path":""},"bell":{"name":"bell","keywords":["notification"],"width":15,"height":16,"path":""},"bold":{"name":"bold","keywords":["markdown","bold","text"],"width":10,"height":16,"path":""},"book":{"name":"book","keywords":["book","journal","wiki","readme"],"width":16,"height":16,"path":""},"bookmark":{"name":"bookmark","keywords":["tab","star"],"width":10,"height":16,"path":""},"briefcase":{"name":"briefcase","keywords":["suitcase","business"],"width":14,"height":16,"path":""},"broadcast":{"name":"broadcast","keywords":["rss","radio","signal"],"width":16,"height":16,"path":""},"browser":{"name":"browser","keywords":["window","web"],"width":14,"height":16,"path":""},"bug":{"name":"bug","keywords":["insect","issue"],"width":16,"height":16,"path":""},"calendar":{"name":"calendar","keywords":["time","day","month","year","date","appointment"],"width":14,"height":16,"path":""},"check":{"name":"check","keywords":["mark","yes","confirm","accept","ok","success"],"width":12,"height":16,"path":""},"checklist":{"name":"checklist","keywords":["todo","tasks"],"width":16,"height":16,"path":""},"chevron-down":{"name":"chevron-down","keywords":["triangle","arrow"],"width":10,"height":16,"path":""},"chevron-left":{"name":"chevron-left","keywords":["triangle","arrow"],"width":8,"height":16,"path":""},"chevron-right":{"name":"chevron-right","keywords":["triangle","arrow"],"width":8,"height":16,"path":""},"chevron-up":{"name":"chevron-up","keywords":["triangle","arrow"],"width":10,"height":16,"path":""},"circle-slash":{"name":"circle-slash","keywords":["no","deny","fail","failure","error","bad"],"width":14,"height":16,"path":""},"circuit-board":{"name":"circuit-board","keywords":["developer","hardware","electricity"],"width":14,"height":16,"path":""},"clippy":{"name":"clippy","keywords":["copy","paste","save","capture","clipboard"],"width":14,"height":16,"path":""},"clock":{"name":"clock","keywords":["time","hour","minute","second","watch"],"width":14,"height":16,"path":""},"cloud-download":{"name":"cloud-download","keywords":["save","install","get"],"width":16,"height":16,"path":""},"cloud-upload":{"name":"cloud-upload","keywords":["put","export"],"width":16,"height":16,"path":""},"code":{"name":"code","keywords":["brackets"],"width":14,"height":16,"path":""},"comment-discussion":{"name":"comment-discussion","keywords":["converse","talk"],"width":16,"height":16,"path":""},"comment":{"name":"comment","keywords":["speak","bubble"],"width":16,"height":16,"path":""},"credit-card":{"name":"credit-card","keywords":["money","billing","payments","transactions"],"width":16,"height":16,"path":""},"dash":{"name":"dash","keywords":["hyphen","range"],"width":8,"height":16,"path":""},"dashboard":{"name":"dashboard","keywords":["speed","dial"],"width":16,"height":16,"path":""},"database":{"name":"database","keywords":["disks","data"],"width":12,"height":16,"path":""},"dependent":{"name":"dependent","keywords":["dependency","dependent","file"],"width":16,"height":16,"path":""},"desktop-download":{"name":"desktop-download","keywords":["clone","download"],"width":16,"height":16,"path":""},"device-camera-video":{"name":"device-camera-video","keywords":["watch","view","media","stream"],"width":16,"height":16,"path":""},"device-camera":{"name":"device-camera","keywords":["photo","picture","image","snapshot"],"width":16,"height":16,"path":""},"device-desktop":{"name":"device-desktop","keywords":["computer","monitor"],"width":16,"height":16,"path":""},"device-mobile":{"name":"device-mobile","keywords":["phone","iphone","cellphone"],"width":10,"height":16,"path":""},"diff-added":{"name":"diff-added","keywords":["new","addition","plus"],"width":14,"height":16,"path":""},"diff-ignored":{"name":"diff-ignored","keywords":["slash"],"width":14,"height":16,"path":""},"diff-modified":{"name":"diff-modified","keywords":["dot","changed","updated"],"width":14,"height":16,"path":""},"diff-removed":{"name":"diff-removed","keywords":["deleted","subtracted","dash"],"width":14,"height":16,"path":""},"diff-renamed":{"name":"diff-renamed","keywords":["moved","arrow"],"width":14,"height":16,"path":""},"diff":{"name":"diff","keywords":["difference","changes","compare"],"width":13,"height":16,"path":""},"ellipsis":{"name":"ellipsis","keywords":["dot","read","more","hidden","expand"],"width":12,"height":16,"path":""},"eye-closed":{"name":"eye-closed","keywords":["hidden","invisible","concealed",""],"width":16,"height":14,"path":""},"eye":{"name":"eye","keywords":["look","watch","see"],"width":16,"height":16,"path":""},"file-binary":{"name":"file-binary","keywords":["image","video","word","powerpoint","excel"],"width":12,"height":16,"path":""},"file-code":{"name":"file-code","keywords":["text","javascript","html","css","php","ruby","coffeescript","sass","scss"],"width":12,"height":16,"path":""},"file-directory":{"name":"file-directory","keywords":["folder"],"width":14,"height":16,"path":""},"file-media":{"name":"file-media","keywords":["image","video","audio"],"width":12,"height":16,"path":""},"file-pdf":{"name":"file-pdf","keywords":["adobe"],"width":12,"height":16,"path":""},"file-submodule":{"name":"file-submodule","keywords":["folder"],"width":14,"height":16,"path":""},"file-symlink-directory":{"name":"file-symlink-directory","keywords":["folder","subfolder","link","alias"],"width":14,"height":16,"path":""},"file-symlink-file":{"name":"file-symlink-file","keywords":["link","alias"],"width":12,"height":16,"path":""},"file-zip":{"name":"file-zip","keywords":["compress","archive"],"width":12,"height":16,"path":""},"file":{"name":"file","keywords":["file","text","words"],"width":12,"height":16,"path":""},"flame":{"name":"flame","keywords":["fire","hot","burn","trending"],"width":12,"height":16,"path":""},"fold-down":{"name":"fold-down","keywords":["unfold","hide","collapse","down"],"width":14,"height":16,"path":""},"fold-up":{"name":"fold-up","keywords":["unfold","hide","collapse","up"],"width":14,"height":16,"path":""},"fold":{"name":"fold","keywords":["unfold","hide","collapse"],"width":14,"height":16,"path":""},"gear":{"name":"gear","keywords":["settings"],"width":14,"height":16,"path":""},"gift":{"name":"gift","keywords":["package","present","skill","craft","freebie"],"width":14,"height":16,"path":""},"gist-secret":{"name":"gist-secret","keywords":["gist","secret","private"],"width":14,"height":16,"path":""},"gist":{"name":"gist","keywords":["gist","github"],"width":12,"height":16,"path":""},"git-branch":{"name":"git-branch","keywords":["fork","branch","git","duplicate"],"width":10,"height":16,"path":""},"git-commit":{"name":"git-commit","keywords":["save"],"width":14,"height":16,"path":""},"git-compare":{"name":"git-compare","keywords":["difference","changes"],"width":14,"height":16,"path":""},"git-merge":{"name":"git-merge","keywords":["join"],"width":12,"height":16,"path":""},"git-pull-request":{"name":"git-pull-request","keywords":["review"],"width":12,"height":16,"path":""},"github-action":{"name":"github-action","keywords":["board","workflow","action","automation"],"width":16,"height":16,"path":""},"globe":{"name":"globe","keywords":["world","earth","planet"],"width":14,"height":16,"path":""},"grabber":{"name":"grabber","keywords":["mover","drap","drop","sort"],"width":8,"height":16,"path":""},"graph":{"name":"graph","keywords":["trend","stats","statistics"],"width":16,"height":16,"path":""},"heart-outline":{"name":"heart-outline","keywords":["love","beat"],"width":12,"height":16,"path":""},"heart":{"name":"heart","keywords":["love","beat"],"width":12,"height":16,"path":""},"history":{"name":"history","keywords":["time","past","revert","back"],"width":14,"height":16,"path":""},"home":{"name":"home","keywords":["welcome","index","house","building"],"width":16,"height":16,"path":""},"horizontal-rule":{"name":"horizontal-rule","keywords":["hr"],"width":10,"height":16,"path":""},"hubot":{"name":"hubot","keywords":["robot","bot"],"width":14,"height":16,"path":""},"inbox":{"name":"inbox","keywords":["mail","todo","new","messages"],"width":14,"height":16,"path":""},"infinity":{"name":"infinity","keywords":["unlimited","infinite"],"width":16,"height":16,"path":""},"info":{"name":"info","keywords":["help"],"width":14,"height":16,"path":""},"internal-repo":{"name":"internal-repo","keywords":["internal, repo, repository"],"width":13,"height":16,"path":""},"issue-closed":{"name":"issue-closed","keywords":["done","complete"],"width":16,"height":16,"path":""},"issue-opened":{"name":"issue-opened","keywords":["new"],"width":14,"height":16,"path":""},"issue-reopened":{"name":"issue-reopened","keywords":["regression"],"width":14,"height":16,"path":""},"italic":{"name":"italic","keywords":["font","italic","style"],"width":6,"height":16,"path":""},"jersey":{"name":"jersey","keywords":["team","game","basketball"],"width":14,"height":16,"path":""},"kebab-horizontal":{"name":"kebab-horizontal","keywords":["kebab","dot","menu","more"],"width":13,"height":16,"path":""},"kebab-vertical":{"name":"kebab-vertical","keywords":["kebab","dot","menu","more"],"width":3,"height":16,"path":""},"key":{"name":"key","keywords":["key","lock","secure","safe"],"width":14,"height":16,"path":""},"keyboard":{"name":"keyboard","keywords":["type","keys","write","shortcuts"],"width":16,"height":16,"path":""},"law":{"name":"law","keywords":["legal","bill"],"width":14,"height":16,"path":""},"light-bulb":{"name":"light-bulb","keywords":["idea"],"width":12,"height":16,"path":""},"line-arrow-down":{"name":"line-arrow-down","keywords":["arrow","point","direction","down"],"width":16,"height":16,"path":""},"line-arrow-left":{"name":"line-arrow-left","keywords":["arrow","point","direction","left"],"width":16,"height":16,"path":""},"line-arrow-right":{"name":"line-arrow-right","keywords":["arrow","point","direction","right"],"width":16,"height":16,"path":""},"line-arrow-up":{"name":"line-arrow-up","keywords":["arrow","point","direction","up"],"width":16,"height":16,"path":""},"link-external":{"name":"link-external","keywords":["out","see","more","go","to"],"width":12,"height":16,"path":""},"link":{"name":"link","keywords":["connect","hyperlink"],"width":16,"height":16,"path":""},"list-ordered":{"name":"list-ordered","keywords":["numbers","tasks","todo","items"],"width":13,"height":16,"path":""},"list-unordered":{"name":"list-unordered","keywords":["bullet","point","tasks","todo","items"],"width":12,"height":16,"path":""},"location":{"name":"location","keywords":["here","marker"],"width":12,"height":16,"path":""},"lock":{"name":"lock","keywords":["secure","safe","protected"],"width":12,"height":16,"path":""},"logo-gist":{"name":"logo-gist","keywords":["brand","github","logo"],"width":25,"height":16,"path":""},"logo-github":{"name":"logo-github","keywords":["brand","github","logo"],"width":45,"height":16,"path":""},"mail-read":{"name":"mail-read","keywords":["email","open"],"width":14,"height":16,"path":""},"mail":{"name":"mail","keywords":["email","unread"],"width":14,"height":16,"path":""},"mark-github":{"name":"mark-github","keywords":["octocat","brand","github","logo"],"width":16,"height":16,"path":""},"markdown":{"name":"markdown","keywords":["markup","style"],"width":16,"height":16,"path":""},"megaphone":{"name":"megaphone","keywords":["bullhorn","loud","shout","broadcast"],"width":16,"height":16,"path":""},"mention":{"name":"mention","keywords":["at","ping"],"width":14,"height":16,"path":""},"milestone":{"name":"milestone","keywords":["marker"],"width":14,"height":16,"path":""},"mirror":{"name":"mirror","keywords":["reflect"],"width":16,"height":16,"path":""},"mortar-board":{"name":"mortar-board","keywords":["education","learn","teach"],"width":16,"height":16,"path":""},"mute":{"name":"mute","keywords":["quiet","sound","audio","turn","off"],"width":16,"height":16,"path":""},"no-newline":{"name":"no-newline","keywords":["return"],"width":16,"height":16,"path":""},"north-star":{"name":"north-star","keywords":["star","snowflake","asterisk"],"width":16,"height":16,"path":""},"note":{"name":"note","keywords":["card","paper","ticket"],"width":14,"height":16,"path":""},"octoface":{"name":"octoface","keywords":["octocat","brand"],"width":16,"height":16,"path":""},"organization":{"name":"organization","keywords":["people","group","team"],"width":16,"height":16,"path":""},"package":{"name":"package","keywords":["box","ship"],"width":16,"height":16,"path":""},"paintcan":{"name":"paintcan","keywords":["style","theme","art","color"],"width":12,"height":16,"path":""},"pencil":{"name":"pencil","keywords":["edit","change","update","write"],"width":14,"height":16,"path":""},"person":{"name":"person","keywords":["people","man","woman","human"],"width":12,"height":16,"path":""},"pin":{"name":"pin","keywords":["save","star","bookmark"],"width":16,"height":16,"path":""},"play":{"name":"play","keywords":["play","start","begin","action"],"width":14,"height":16,"path":""},"plug":{"name":"plug","keywords":["hook","webhook"],"width":14,"height":16,"path":""},"plus-small":{"name":"plus-small","keywords":["add","new","more","small"],"width":7,"height":16,"path":""},"plus":{"name":"plus","keywords":["add","new","more"],"width":12,"height":16,"path":""},"primitive-dot-stroke":{"name":"primitive-dot-stroke","keywords":["circle","dot","unread"],"width":8,"height":16,"path":""},"primitive-dot":{"name":"primitive-dot","keywords":["circle"],"width":8,"height":16,"path":""},"primitive-square":{"name":"primitive-square","keywords":["box"],"width":8,"height":16,"path":""},"project":{"name":"project","keywords":["board","kanban","columns","scrum"],"width":15,"height":16,"path":""},"pulse":{"name":"pulse","keywords":["graph","trend","line","activity"],"width":14,"height":16,"path":""},"question":{"name":"question","keywords":["help","explain"],"width":14,"height":16,"path":""},"quote":{"name":"quote","keywords":["quotation"],"width":14,"height":16,"path":""},"radio-tower":{"name":"radio-tower","keywords":["broadcast"],"width":16,"height":16,"path":""},"reply":{"name":"reply","keywords":["reply all","back"],"width":14,"height":16,"path":""},"repo-clone":{"name":"repo-clone","keywords":["book","journal","repository"],"width":16,"height":16,"path":""},"repo-force-push":{"name":"repo-force-push","keywords":["book","journal","put"],"width":12,"height":16,"path":""},"repo-forked":{"name":"repo-forked","keywords":["book","journal","copy"],"width":10,"height":16,"path":""},"repo-pull":{"name":"repo-pull","keywords":["book","journal","get"],"width":16,"height":16,"path":""},"repo-push":{"name":"repo-push","keywords":["book","journal","repository","put"],"width":12,"height":16,"path":""},"repo-template-private":{"name":"repo-template-private","keywords":["book","new","template"],"width":14,"height":16,"path":""},"repo-template":{"name":"repo-template","keywords":["book","new","add","template"],"width":14,"height":16,"path":""},"repo":{"name":"repo","keywords":["book","journal","repository"],"width":12,"height":16,"path":""},"report":{"name":"report","keywords":["report","abuse","flag"],"width":16,"height":16,"path":""},"request-changes":{"name":"request-changes","keywords":["diff","changes","request"],"width":16,"height":16,"path":""},"rocket":{"name":"rocket","keywords":["staff","stafftools","blast","off","space","launch","ship"],"width":16,"height":16,"path":""},"rss":{"name":"rss","keywords":["broadcast","feed","atom"],"width":10,"height":16,"path":""},"ruby":{"name":"ruby","keywords":["code","language"],"width":16,"height":16,"path":""},"saved":{"name":"saved","keywords":["saved","bookmark"],"width":16,"height":16,"path":""},"screen-full":{"name":"screen-full","keywords":["fullscreen","expand"],"width":14,"height":16,"path":""},"screen-normal":{"name":"screen-normal","keywords":["fullscreen","expand","exit"],"width":14,"height":16,"path":""},"search":{"name":"search","keywords":["magnifying","glass"],"width":16,"height":16,"path":""},"server":{"name":"server","keywords":["computers","racks","ops"],"width":12,"height":16,"path":""},"settings":{"name":"settings","keywords":["sliders","filters","controls","levels"],"width":16,"height":16,"path":""},"shield-check":{"name":"shield-check","keywords":["security","shield","protection","check","success"],"width":16,"height":16,"path":""},"shield-lock":{"name":"shield-lock","keywords":["protect","shield","lock"],"width":14,"height":16,"path":""},"shield-x":{"name":"shield-x","keywords":["security","shield","protection","fail"],"width":16,"height":16,"path":""},"shield":{"name":"shield","keywords":["security","shield","protection"],"width":14,"height":16,"path":""},"sign-in":{"name":"sign-in","keywords":["door","arrow","direction","enter","log in"],"width":14,"height":16,"path":""},"sign-out":{"name":"sign-out","keywords":["door","arrow","direction","leave","log out"],"width":16,"height":17,"path":""},"skip":{"name":"skip","keywords":["skip","slash"],"width":16,"height":16,"path":""},"smiley":{"name":"smiley","keywords":["emoji","smile","mood","emotion"],"width":16,"height":16,"path":""},"squirrel":{"name":"squirrel","keywords":["ship","shipit","launch"],"width":16,"height":16,"path":""},"star":{"name":"star","keywords":["save","remember","like"],"width":14,"height":16,"path":""},"stop":{"name":"stop","keywords":["block","spam","report"],"width":14,"height":16,"path":""},"sync":{"name":"sync","keywords":["cycle","refresh","loop"],"width":12,"height":16,"path":""},"tag":{"name":"tag","keywords":["release"],"width":15,"height":16,"path":""},"tasklist":{"name":"tasklist","keywords":["todo"],"width":16,"height":16,"path":""},"telescope":{"name":"telescope","keywords":["science","space","look","view","explore"],"width":14,"height":16,"path":""},"terminal":{"name":"terminal","keywords":["code","ops","shell"],"width":14,"height":16,"path":""},"text-size":{"name":"text-size","keywords":["font","size","text"],"width":18,"height":16,"path":""},"three-bars":{"name":"three-bars","keywords":["hamburger","menu","dropdown"],"width":12,"height":16,"path":""},"thumbsdown":{"name":"thumbsdown","keywords":["thumb","thumbsdown","rejected","dislike"],"width":16,"height":16,"path":""},"thumbsup":{"name":"thumbsup","keywords":["thumb","thumbsup","prop","ship","like"],"width":16,"height":16,"path":""},"tools":{"name":"tools","keywords":["screwdriver","wrench","settings"],"width":16,"height":16,"path":""},"trashcan":{"name":"trashcan","keywords":["garbage","rubbish","recycle","delete"],"width":12,"height":16,"path":""},"triangle-down":{"name":"triangle-down","keywords":["arrow","point","direction"],"width":12,"height":16,"path":""},"triangle-left":{"name":"triangle-left","keywords":["arrow","point","direction"],"width":6,"height":16,"path":""},"triangle-right":{"name":"triangle-right","keywords":["arrow","point","direction"],"width":6,"height":16,"path":""},"triangle-up":{"name":"triangle-up","keywords":["arrow","point","direction"],"width":12,"height":16,"path":""},"unfold":{"name":"unfold","keywords":["expand","open","reveal"],"width":14,"height":16,"path":""},"unmute":{"name":"unmute","keywords":["loud","volume","audio","sound","play"],"width":16,"height":16,"path":""},"unsaved":{"name":"unsaved","keywords":["unsaved","bookmark"],"width":16,"height":16,"path":""},"unverified":{"name":"unverified","keywords":["insecure","untrusted","signed"],"width":16,"height":16,"path":""},"verified":{"name":"verified","keywords":["trusted","secure","trustworthy","signed"],"width":16,"height":16,"path":""},"versions":{"name":"versions","keywords":["history","commits"],"width":14,"height":16,"path":""},"watch":{"name":"watch","keywords":["wait","hourglass","time","date"],"width":12,"height":16,"path":""},"workflow-all":{"name":"workflow-all","keywords":["workflow","actions"],"width":16,"height":16,"path":""},"workflow":{"name":"workflow","keywords":["workflow","actions"],"width":16,"height":16,"path":""},"x":{"name":"x","keywords":["remove","close","delete"],"width":12,"height":16,"path":""},"zap":{"name":"zap","keywords":["electricity","lightning","props","like","star","save"],"width":10,"height":16,"path":""}}
1
+ {"alert":{"name":"alert","keywords":["warning","triangle","exclamation","point"],"width":16,"height":16,"path":""},"archive":{"name":"archive","keywords":["box","catalog"],"width":14,"height":16,"path":""},"arrow-both":{"name":"arrow-both","keywords":["point","direction","left","right"],"width":20,"height":16,"path":""},"arrow-down":{"name":"arrow-down","keywords":["point","direction"],"width":10,"height":16,"path":""},"arrow-left":{"name":"arrow-left","keywords":["point","direction"],"width":10,"height":16,"path":""},"arrow-right":{"name":"arrow-right","keywords":["point","direction"],"width":10,"height":16,"path":""},"arrow-small-down":{"name":"arrow-small-down","keywords":["point","direction","little","tiny"],"width":6,"height":16,"path":""},"arrow-small-left":{"name":"arrow-small-left","keywords":["point","direction","little","tiny"],"width":6,"height":16,"path":""},"arrow-small-right":{"name":"arrow-small-right","keywords":["point","direction","little","tiny"],"width":6,"height":16,"path":""},"arrow-small-up":{"name":"arrow-small-up","keywords":["point","direction","little","tiny"],"width":6,"height":16,"path":""},"arrow-up":{"name":"arrow-up","keywords":["point","direction"],"width":10,"height":16,"path":""},"beaker":{"name":"beaker","keywords":["experiment","labs","experimental","feature","test","science","education","study","development","testing"],"width":16,"height":16,"path":""},"bell":{"name":"bell","keywords":["notification"],"width":15,"height":16,"path":""},"bold":{"name":"bold","keywords":["markdown","bold","text"],"width":10,"height":16,"path":""},"book":{"name":"book","keywords":["book","journal","wiki","readme"],"width":16,"height":16,"path":""},"bookmark":{"name":"bookmark","keywords":["tab","star"],"width":10,"height":16,"path":""},"briefcase":{"name":"briefcase","keywords":["suitcase","business"],"width":14,"height":16,"path":""},"broadcast":{"name":"broadcast","keywords":["rss","radio","signal"],"width":16,"height":16,"path":""},"browser":{"name":"browser","keywords":["window","web"],"width":14,"height":16,"path":""},"bug":{"name":"bug","keywords":["insect","issue"],"width":16,"height":16,"path":""},"calendar":{"name":"calendar","keywords":["time","day","month","year","date","appointment"],"width":14,"height":16,"path":""},"check":{"name":"check","keywords":["mark","yes","confirm","accept","ok","success"],"width":12,"height":16,"path":""},"checklist":{"name":"checklist","keywords":["todo","tasks"],"width":16,"height":16,"path":""},"chevron-down":{"name":"chevron-down","keywords":["triangle","arrow"],"width":10,"height":16,"path":""},"chevron-left":{"name":"chevron-left","keywords":["triangle","arrow"],"width":8,"height":16,"path":""},"chevron-right":{"name":"chevron-right","keywords":["triangle","arrow"],"width":8,"height":16,"path":""},"chevron-up":{"name":"chevron-up","keywords":["triangle","arrow"],"width":10,"height":16,"path":""},"circle-slash":{"name":"circle-slash","keywords":["no","deny","fail","failure","error","bad"],"width":14,"height":16,"path":""},"circuit-board":{"name":"circuit-board","keywords":["developer","hardware","electricity"],"width":14,"height":16,"path":""},"clippy":{"name":"clippy","keywords":["copy","paste","save","capture","clipboard"],"width":14,"height":16,"path":""},"clock":{"name":"clock","keywords":["time","hour","minute","second","watch"],"width":14,"height":16,"path":""},"cloud-download":{"name":"cloud-download","keywords":["save","install","get"],"width":16,"height":16,"path":""},"cloud-upload":{"name":"cloud-upload","keywords":["put","export"],"width":16,"height":16,"path":""},"code":{"name":"code","keywords":["brackets"],"width":14,"height":16,"path":""},"comment-discussion":{"name":"comment-discussion","keywords":["converse","talk"],"width":16,"height":16,"path":""},"comment":{"name":"comment","keywords":["speak","bubble"],"width":16,"height":16,"path":""},"credit-card":{"name":"credit-card","keywords":["money","billing","payments","transactions"],"width":16,"height":16,"path":""},"dash":{"name":"dash","keywords":["hyphen","range"],"width":8,"height":16,"path":""},"dashboard":{"name":"dashboard","keywords":["speed","dial"],"width":16,"height":16,"path":""},"database":{"name":"database","keywords":["disks","data"],"width":12,"height":16,"path":""},"dependent":{"name":"dependent","keywords":["dependency","dependent","file"],"width":16,"height":16,"path":""},"desktop-download":{"name":"desktop-download","keywords":["clone","download"],"width":16,"height":16,"path":""},"device-camera-video":{"name":"device-camera-video","keywords":["watch","view","media","stream"],"width":16,"height":16,"path":""},"device-camera":{"name":"device-camera","keywords":["photo","picture","image","snapshot"],"width":16,"height":16,"path":""},"device-desktop":{"name":"device-desktop","keywords":["computer","monitor"],"width":16,"height":16,"path":""},"device-mobile":{"name":"device-mobile","keywords":["phone","iphone","cellphone"],"width":10,"height":16,"path":""},"diff-added":{"name":"diff-added","keywords":["new","addition","plus"],"width":14,"height":16,"path":""},"diff-ignored":{"name":"diff-ignored","keywords":["slash"],"width":14,"height":16,"path":""},"diff-modified":{"name":"diff-modified","keywords":["dot","changed","updated"],"width":14,"height":16,"path":""},"diff-removed":{"name":"diff-removed","keywords":["deleted","subtracted","dash"],"width":14,"height":16,"path":""},"diff-renamed":{"name":"diff-renamed","keywords":["moved","arrow"],"width":14,"height":16,"path":""},"diff":{"name":"diff","keywords":["difference","changes","compare"],"width":13,"height":16,"path":""},"ellipsis":{"name":"ellipsis","keywords":["dot","read","more","hidden","expand"],"width":12,"height":16,"path":""},"eye-closed":{"name":"eye-closed","keywords":["hidden","invisible","concealed",""],"width":16,"height":14,"path":""},"eye":{"name":"eye","keywords":["look","watch","see"],"width":16,"height":16,"path":""},"file-binary":{"name":"file-binary","keywords":["image","video","word","powerpoint","excel"],"width":12,"height":16,"path":""},"file-code":{"name":"file-code","keywords":["text","javascript","html","css","php","ruby","coffeescript","sass","scss"],"width":12,"height":16,"path":""},"file-directory":{"name":"file-directory","keywords":["folder"],"width":14,"height":16,"path":""},"file-media":{"name":"file-media","keywords":["image","video","audio"],"width":12,"height":16,"path":""},"file-pdf":{"name":"file-pdf","keywords":["adobe"],"width":12,"height":16,"path":""},"file-submodule":{"name":"file-submodule","keywords":["folder"],"width":14,"height":16,"path":""},"file-symlink-directory":{"name":"file-symlink-directory","keywords":["folder","subfolder","link","alias"],"width":14,"height":16,"path":""},"file-symlink-file":{"name":"file-symlink-file","keywords":["link","alias"],"width":12,"height":16,"path":""},"file-zip":{"name":"file-zip","keywords":["compress","archive"],"width":12,"height":16,"path":""},"file":{"name":"file","keywords":["file","text","words"],"width":12,"height":16,"path":""},"flame":{"name":"flame","keywords":["fire","hot","burn","trending"],"width":12,"height":16,"path":""},"fold-down":{"name":"fold-down","keywords":["unfold","hide","collapse","down"],"width":14,"height":16,"path":""},"fold-up":{"name":"fold-up","keywords":["unfold","hide","collapse","up"],"width":14,"height":16,"path":""},"fold":{"name":"fold","keywords":["unfold","hide","collapse"],"width":14,"height":16,"path":""},"gear":{"name":"gear","keywords":["settings"],"width":14,"height":16,"path":""},"gift":{"name":"gift","keywords":["package","present","skill","craft","freebie"],"width":14,"height":16,"path":""},"gist-secret":{"name":"gist-secret","keywords":["gist","secret","private"],"width":14,"height":16,"path":""},"gist":{"name":"gist","keywords":["gist","github"],"width":12,"height":16,"path":""},"git-branch":{"name":"git-branch","keywords":["fork","branch","git","duplicate"],"width":10,"height":16,"path":""},"git-commit":{"name":"git-commit","keywords":["save"],"width":14,"height":16,"path":""},"git-compare":{"name":"git-compare","keywords":["difference","changes"],"width":14,"height":16,"path":""},"git-merge":{"name":"git-merge","keywords":["join"],"width":12,"height":16,"path":""},"git-pull-request":{"name":"git-pull-request","keywords":["review"],"width":12,"height":16,"path":""},"github-action":{"name":"github-action","keywords":["board","workflow","action","automation"],"width":16,"height":16,"path":""},"globe":{"name":"globe","keywords":["world","earth","planet"],"width":14,"height":16,"path":""},"grabber":{"name":"grabber","keywords":["mover","drap","drop","sort"],"width":8,"height":16,"path":""},"graph":{"name":"graph","keywords":["trend","stats","statistics"],"width":16,"height":16,"path":""},"heart-outline":{"name":"heart-outline","keywords":["love","beat"],"width":12,"height":16,"path":""},"heart":{"name":"heart","keywords":["love","beat"],"width":12,"height":16,"path":""},"history":{"name":"history","keywords":["time","past","revert","back"],"width":14,"height":16,"path":""},"home":{"name":"home","keywords":["welcome","index","house","building"],"width":16,"height":16,"path":""},"horizontal-rule":{"name":"horizontal-rule","keywords":["hr"],"width":10,"height":16,"path":""},"hubot":{"name":"hubot","keywords":["robot","bot"],"width":14,"height":16,"path":""},"inbox":{"name":"inbox","keywords":["mail","todo","new","messages"],"width":14,"height":16,"path":""},"infinity":{"name":"infinity","keywords":["unlimited","infinite"],"width":16,"height":16,"path":""},"info":{"name":"info","keywords":["help"],"width":14,"height":16,"path":""},"internal-repo":{"name":"internal-repo","keywords":["internal, repo, repository"],"width":13,"height":16,"path":""},"issue-closed":{"name":"issue-closed","keywords":["done","complete"],"width":16,"height":16,"path":""},"issue-opened":{"name":"issue-opened","keywords":["new"],"width":14,"height":16,"path":""},"issue-reopened":{"name":"issue-reopened","keywords":["regression"],"width":14,"height":16,"path":""},"italic":{"name":"italic","keywords":["font","italic","style"],"width":6,"height":16,"path":""},"jersey":{"name":"jersey","keywords":["team","game","basketball"],"width":14,"height":16,"path":""},"kebab-horizontal":{"name":"kebab-horizontal","keywords":["kebab","dot","menu","more"],"width":13,"height":16,"path":""},"kebab-vertical":{"name":"kebab-vertical","keywords":["kebab","dot","menu","more"],"width":3,"height":16,"path":""},"key":{"name":"key","keywords":["key","lock","secure","safe"],"width":14,"height":16,"path":""},"keyboard":{"name":"keyboard","keywords":["type","keys","write","shortcuts"],"width":16,"height":16,"path":""},"law":{"name":"law","keywords":["legal","bill"],"width":14,"height":16,"path":""},"light-bulb":{"name":"light-bulb","keywords":["idea"],"width":12,"height":16,"path":""},"line-arrow-down":{"name":"line-arrow-down","keywords":["arrow","point","direction","down"],"width":16,"height":16,"path":""},"line-arrow-left":{"name":"line-arrow-left","keywords":["arrow","point","direction","left"],"width":16,"height":16,"path":""},"line-arrow-right":{"name":"line-arrow-right","keywords":["arrow","point","direction","right"],"width":16,"height":16,"path":""},"line-arrow-up":{"name":"line-arrow-up","keywords":["arrow","point","direction","up"],"width":16,"height":16,"path":""},"link-external":{"name":"link-external","keywords":["out","see","more","go","to"],"width":12,"height":16,"path":""},"link":{"name":"link","keywords":["connect","hyperlink"],"width":16,"height":16,"path":""},"list-ordered":{"name":"list-ordered","keywords":["numbers","tasks","todo","items"],"width":13,"height":16,"path":""},"list-unordered":{"name":"list-unordered","keywords":["bullet","point","tasks","todo","items"],"width":12,"height":16,"path":""},"location":{"name":"location","keywords":["here","marker"],"width":12,"height":16,"path":""},"lock":{"name":"lock","keywords":["secure","safe","protected"],"width":12,"height":16,"path":""},"logo-gist":{"name":"logo-gist","keywords":["brand","github","logo"],"width":25,"height":16,"path":""},"logo-github":{"name":"logo-github","keywords":["brand","github","logo"],"width":45,"height":16,"path":""},"mail-read":{"name":"mail-read","keywords":["email","open"],"width":14,"height":16,"path":""},"mail":{"name":"mail","keywords":["email","unread"],"width":14,"height":16,"path":""},"mark-github":{"name":"mark-github","keywords":["octocat","brand","github","logo"],"width":16,"height":16,"path":""},"markdown":{"name":"markdown","keywords":["markup","style"],"width":16,"height":16,"path":""},"megaphone":{"name":"megaphone","keywords":["bullhorn","loud","shout","broadcast"],"width":16,"height":16,"path":""},"mention":{"name":"mention","keywords":["at","ping"],"width":14,"height":16,"path":""},"milestone":{"name":"milestone","keywords":["marker"],"width":14,"height":16,"path":""},"mirror":{"name":"mirror","keywords":["reflect"],"width":16,"height":16,"path":""},"mortar-board":{"name":"mortar-board","keywords":["education","learn","teach"],"width":16,"height":16,"path":""},"mute":{"name":"mute","keywords":["quiet","sound","audio","turn","off"],"width":16,"height":16,"path":""},"no-newline":{"name":"no-newline","keywords":["return"],"width":16,"height":16,"path":""},"note":{"name":"note","keywords":["card","paper","ticket"],"width":14,"height":16,"path":""},"octoface":{"name":"octoface","keywords":["octocat","brand"],"width":16,"height":16,"path":""},"organization":{"name":"organization","keywords":["people","group","team"],"width":16,"height":16,"path":""},"package":{"name":"package","keywords":["box","ship"],"width":16,"height":16,"path":""},"paintcan":{"name":"paintcan","keywords":["style","theme","art","color"],"width":12,"height":16,"path":""},"pencil":{"name":"pencil","keywords":["edit","change","update","write"],"width":14,"height":16,"path":""},"person":{"name":"person","keywords":["people","man","woman","human"],"width":12,"height":16,"path":""},"pin":{"name":"pin","keywords":["save","star","bookmark"],"width":16,"height":16,"path":""},"play":{"name":"play","keywords":["play","start","begin","action"],"width":14,"height":16,"path":""},"plug":{"name":"plug","keywords":["hook","webhook"],"width":14,"height":16,"path":""},"plus-small":{"name":"plus-small","keywords":["add","new","more","small"],"width":7,"height":16,"path":""},"plus":{"name":"plus","keywords":["add","new","more"],"width":12,"height":16,"path":""},"primitive-dot-stroke":{"name":"primitive-dot-stroke","keywords":["circle","dot","unread"],"width":8,"height":16,"path":""},"primitive-dot":{"name":"primitive-dot","keywords":["circle"],"width":8,"height":16,"path":""},"primitive-square":{"name":"primitive-square","keywords":["box"],"width":8,"height":16,"path":""},"project":{"name":"project","keywords":["board","kanban","columns","scrum"],"width":15,"height":16,"path":""},"pulse":{"name":"pulse","keywords":["graph","trend","line","activity"],"width":14,"height":16,"path":""},"question":{"name":"question","keywords":["help","explain"],"width":14,"height":16,"path":""},"quote":{"name":"quote","keywords":["quotation"],"width":14,"height":16,"path":""},"radio-tower":{"name":"radio-tower","keywords":["broadcast"],"width":16,"height":16,"path":""},"reply":{"name":"reply","keywords":["reply all","back"],"width":14,"height":16,"path":""},"repo-clone":{"name":"repo-clone","keywords":["book","journal","repository"],"width":16,"height":16,"path":""},"repo-force-push":{"name":"repo-force-push","keywords":["book","journal","put"],"width":12,"height":16,"path":""},"repo-forked":{"name":"repo-forked","keywords":["book","journal","copy"],"width":10,"height":16,"path":""},"repo-pull":{"name":"repo-pull","keywords":["book","journal","get"],"width":16,"height":16,"path":""},"repo-push":{"name":"repo-push","keywords":["book","journal","repository","put"],"width":12,"height":16,"path":""},"repo-template-private":{"name":"repo-template-private","keywords":["book","new","template"],"width":14,"height":16,"path":""},"repo-template":{"name":"repo-template","keywords":["book","new","add","template"],"width":14,"height":16,"path":""},"repo":{"name":"repo","keywords":["book","journal","repository"],"width":12,"height":16,"path":""},"report":{"name":"report","keywords":["report","abuse","flag"],"width":16,"height":16,"path":""},"request-changes":{"name":"request-changes","keywords":["diff","changes","request"],"width":16,"height":16,"path":""},"rocket":{"name":"rocket","keywords":["staff","stafftools","blast","off","space","launch","ship"],"width":16,"height":16,"path":""},"rss":{"name":"rss","keywords":["broadcast","feed","atom"],"width":10,"height":16,"path":""},"ruby":{"name":"ruby","keywords":["code","language"],"width":16,"height":16,"path":""},"saved":{"name":"saved","keywords":["saved","bookmark"],"width":16,"height":16,"path":""},"screen-full":{"name":"screen-full","keywords":["fullscreen","expand"],"width":14,"height":16,"path":""},"screen-normal":{"name":"screen-normal","keywords":["fullscreen","expand","exit"],"width":14,"height":16,"path":""},"search":{"name":"search","keywords":["magnifying","glass"],"width":16,"height":16,"path":""},"server":{"name":"server","keywords":["computers","racks","ops"],"width":12,"height":16,"path":""},"settings":{"name":"settings","keywords":["sliders","filters","controls","levels"],"width":16,"height":16,"path":""},"shield-check":{"name":"shield-check","keywords":["security","shield","protection","check","success"],"width":16,"height":16,"path":""},"shield-lock":{"name":"shield-lock","keywords":["protect","shield","lock"],"width":14,"height":16,"path":""},"shield-x":{"name":"shield-x","keywords":["security","shield","protection","fail"],"width":16,"height":16,"path":""},"shield":{"name":"shield","keywords":["security","shield","protection"],"width":14,"height":16,"path":""},"sign-in":{"name":"sign-in","keywords":["door","arrow","direction","enter","log in"],"width":14,"height":16,"path":""},"sign-out":{"name":"sign-out","keywords":["door","arrow","direction","leave","log out"],"width":16,"height":17,"path":""},"skip":{"name":"skip","keywords":["skip","slash"],"width":16,"height":16,"path":""},"smiley":{"name":"smiley","keywords":["emoji","smile","mood","emotion"],"width":16,"height":16,"path":""},"squirrel":{"name":"squirrel","keywords":["ship","shipit","launch"],"width":16,"height":16,"path":""},"star":{"name":"star","keywords":["save","remember","like"],"width":14,"height":16,"path":""},"stop":{"name":"stop","keywords":["block","spam","report"],"width":14,"height":16,"path":""},"sync":{"name":"sync","keywords":["cycle","refresh","loop"],"width":12,"height":16,"path":""},"tag":{"name":"tag","keywords":["release"],"width":15,"height":16,"path":""},"tasklist":{"name":"tasklist","keywords":["todo"],"width":16,"height":16,"path":""},"telescope":{"name":"telescope","keywords":["science","space","look","view","explore"],"width":14,"height":16,"path":""},"terminal":{"name":"terminal","keywords":["code","ops","shell"],"width":14,"height":16,"path":""},"text-size":{"name":"text-size","keywords":["font","size","text"],"width":18,"height":16,"path":""},"three-bars":{"name":"three-bars","keywords":["hamburger","menu","dropdown"],"width":12,"height":16,"path":""},"thumbsdown":{"name":"thumbsdown","keywords":["thumb","thumbsdown","rejected","dislike"],"width":16,"height":16,"path":""},"thumbsup":{"name":"thumbsup","keywords":["thumb","thumbsup","prop","ship","like"],"width":16,"height":16,"path":""},"tools":{"name":"tools","keywords":["screwdriver","wrench","settings"],"width":16,"height":16,"path":""},"trashcan":{"name":"trashcan","keywords":["garbage","rubbish","recycle","delete"],"width":12,"height":16,"path":""},"triangle-down":{"name":"triangle-down","keywords":["arrow","point","direction"],"width":12,"height":16,"path":""},"triangle-left":{"name":"triangle-left","keywords":["arrow","point","direction"],"width":6,"height":16,"path":""},"triangle-right":{"name":"triangle-right","keywords":["arrow","point","direction"],"width":6,"height":16,"path":""},"triangle-up":{"name":"triangle-up","keywords":["arrow","point","direction"],"width":12,"height":16,"path":""},"unfold":{"name":"unfold","keywords":["expand","open","reveal"],"width":14,"height":16,"path":""},"unmute":{"name":"unmute","keywords":["loud","volume","audio","sound","play"],"width":16,"height":16,"path":""},"unsaved":{"name":"unsaved","keywords":["unsaved","bookmark"],"width":16,"height":16,"path":""},"unverified":{"name":"unverified","keywords":["insecure","untrusted","signed"],"width":16,"height":16,"path":""},"verified":{"name":"verified","keywords":["trusted","secure","trustworthy","signed"],"width":16,"height":16,"path":""},"versions":{"name":"versions","keywords":["history","commits"],"width":14,"height":16,"path":""},"watch":{"name":"watch","keywords":["wait","hourglass","time","date"],"width":12,"height":16,"path":""},"workflow-all":{"name":"workflow-all","keywords":["workflow","actions"],"width":16,"height":16,"path":""},"workflow":{"name":"workflow","keywords":["workflow","actions"],"width":16,"height":16,"path":""},"x":{"name":"x","keywords":["remove","close","delete"],"width":12,"height":16,"path":""},"zap":{"name":"zap","keywords":["electricity","lightning","props","like","star","save"],"width":10,"height":16,"path":""}}
@@ -1 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="13" height="16" viewBox="0 0 13 16"><path fill-rule="evenodd" d="M10 0H9v1a1 1 0 00-1 1H7a1 1 0 00-1 1v1H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h1v1l1-.5 1 .5v-1h4c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1H7V3h1a1 1 0 001-1h1a1 1 0 001 1h1v13h1V3a1 1 0 00-1-1h-1a1 1 0 00-1-1V0zM8 12H2V5h6v7zm-7 1h1v1H1v-1zm7 0v1H4v-1h4zm3-9h-1v2h1V4zm0 3h-1v2h1V7zm0 3h-1v2h1v-2zm0 3h-1v2h1v-2zm-7-2H3v-1h1v1zm0-5H3v1h1V6zm0 2H3v1h1V8z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="13" height="16" viewBox="0 0 13 16" >
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10 0H9v1a1 1 0 00-1 1H7a1 1 0 00-1 1v1H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h1v1l1-.5 1 .5v-1h4c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1H7V3h1a1 1 0 001-1h1a1 1 0 001 1h1v13h1V3a1 1 0 00-1-1h-1a1 1 0 00-1-1V0zM8 12H2V5h6v7zm-7 1h1v1H1v-1zm7 0v1H4v-1h4zm3-9h-1v2h1V4zm0 3h-1v2h1V7zm0 3h-1v2h1v-2zm0 3h-1v2h1v-2zm-7-2H3v-1h1v1zm0-5H3v1h1V6zm0 2H3v1h1V8z"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
1
  module Octicons
2
- VERSION = "0.0.0.pre.3537d57".freeze
2
+ VERSION = "9.5.0.pre.0fa009c".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: octicons
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0.pre.3537d57
4
+ version: 9.5.0.pre.0fa009c
5
5
  platform: ruby
6
6
  authors:
7
7
  - GitHub Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-29 00:00:00.000000000 Z
11
+ date: 2020-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -160,7 +160,6 @@ files:
160
160
  - lib/build/svg/mortar-board.svg
161
161
  - lib/build/svg/mute.svg
162
162
  - lib/build/svg/no-newline.svg
163
- - lib/build/svg/north-star.svg
164
163
  - lib/build/svg/note.svg
165
164
  - lib/build/svg/octoface.svg
166
165
  - lib/build/svg/organization.svg
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M8.5.75a.75.75 0 00-1.5 0v5.19L4.391 3.33a.75.75 0 10-1.06 1.061L5.939 7H.75a.75.75 0 000 1.5h5.19l-2.61 2.609a.75.75 0 101.061 1.06L7 9.561v5.189a.75.75 0 001.5 0V9.56l2.609 2.61a.75.75 0 101.06-1.061L9.561 8.5h5.189a.75.75 0 000-1.5H9.56l2.61-2.609a.75.75 0 00-1.061-1.06L8.5 5.939V.75z"/></svg>