octicons 0.0.0.pre.8fec3b3 → 0.0.0.pre.12c5e5a

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 81f7a56c26efc2158a62597c2e0fa476aff17fd6a06e9ff2a80d9747a5347956
4
- data.tar.gz: a7730b811c480c88b4f7ce08db8e7cf8e894dc8ad34853d3e856d88b3abda2a0
3
+ metadata.gz: b074210082673bb491157e2f01ed06af687d7d7fd84c935bee2981b702fd8f58
4
+ data.tar.gz: 2d2c280ca5147ab6e12538fb51fb9c2a4ca09d19af52cfe86101ebec3106e40d
5
5
  SHA512:
6
- metadata.gz: 4e3828d060b0ca9f32eaf396bb7ac0cfa4ec708c49ee64f3da9bb2e8f8f49b065cae31bdfb8975d13cc693f97c9f8f9605ddb8dc3e7b047d92fedb2df6821fdb
7
- data.tar.gz: ddc3013e8e4f03cbc6fd5ef2d153ab2faf14b9794963c91bb4b61080fc00d8069f1ea4061fa819910c9af8a71bae0c9fbfbc9bf156894a316d1a54e63ce8eefd
6
+ metadata.gz: 36c2aca2b94b93beb564bb6dacb6019908258c78fc93ef774d0244adf9d95e5e946ef41527939d8e360ed7bbb67eef13b158c6ad61cbe5be2e2279859dca64a8
7
+ data.tar.gz: 78b18bb48ee0215efd8d256a6f4ff9c764e85e17a7ac7fc9d9bf4f83e11f689d5234e7701fb740c8bf7abd5f28e5dc090598dc0d70021d1fd5b4df5129886555
data/README.md CHANGED
@@ -1,119 +1,5 @@
1
- # Octicons gem
1
+ # octicons
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)
5
4
 
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/
5
+ See https://primer.style/octicons/packages/ruby
@@ -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":""},"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
+ {"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-16":{"name":"dash-16","keywords":[],"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-16":{"name":"plus-16","keywords":[],"width":16,"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":""}}
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2 7.75C2 7.33579 2.33579 7 2.75 7H12.75C13.1642 7 13.5 7.33579 13.5 7.75C13.5 8.16421 13.1642 8.5 12.75 8.5H2.75C2.33579 8.5 2 8.16421 2 7.75Z" fill="#24292E"/>
3
+ </svg>
@@ -0,0 +1 @@
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>
@@ -0,0 +1 @@
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>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7.75 2C7.94891 2 8.13968 2.07902 8.28033 2.21967C8.42098 2.36032 8.5 2.55109 8.5 2.75V7H12.75C12.9489 7 13.1397 7.07902 13.2803 7.21967C13.421 7.36032 13.5 7.55109 13.5 7.75C13.5 7.94891 13.421 8.13968 13.2803 8.28033C13.1397 8.42098 12.9489 8.5 12.75 8.5H8.5V12.75C8.5 12.9489 8.42098 13.1397 8.28033 13.2803C8.13968 13.421 7.94891 13.5 7.75 13.5C7.55109 13.5 7.36032 13.421 7.21967 13.2803C7.07902 13.1397 7 12.9489 7 12.75V8.5H2.75C2.55109 8.5 2.36032 8.42098 2.21967 8.28033C2.07902 8.13968 2 7.94891 2 7.75C2 7.55109 2.07902 7.36032 2.21967 7.21967C2.36032 7.07902 2.55109 7 2.75 7H7V2.75C7 2.55109 7.07902 2.36032 7.21967 2.21967C7.36032 2.07902 7.55109 2 7.75 2Z" fill="#24292E"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
1
  module Octicons
2
- VERSION = "0.0.0.pre.8fec3b3".freeze
2
+ VERSION = "0.0.0.pre.12c5e5a".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.8fec3b3
4
+ version: 0.0.0.pre.12c5e5a
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-03-03 00:00:00.000000000 Z
11
+ date: 2020-06-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -71,6 +71,7 @@ files:
71
71
  - lib/build/svg/comment-discussion.svg
72
72
  - lib/build/svg/comment.svg
73
73
  - lib/build/svg/credit-card.svg
74
+ - lib/build/svg/dash-16.svg
74
75
  - lib/build/svg/dash.svg
75
76
  - lib/build/svg/dashboard.svg
76
77
  - lib/build/svg/database.svg
@@ -125,6 +126,7 @@ files:
125
126
  - lib/build/svg/inbox.svg
126
127
  - lib/build/svg/infinity.svg
127
128
  - lib/build/svg/info.svg
129
+ - lib/build/svg/internal-repo.svg
128
130
  - lib/build/svg/issue-closed.svg
129
131
  - lib/build/svg/issue-opened.svg
130
132
  - lib/build/svg/issue-reopened.svg
@@ -159,6 +161,7 @@ files:
159
161
  - lib/build/svg/mortar-board.svg
160
162
  - lib/build/svg/mute.svg
161
163
  - lib/build/svg/no-newline.svg
164
+ - lib/build/svg/north-star.svg
162
165
  - lib/build/svg/note.svg
163
166
  - lib/build/svg/octoface.svg
164
167
  - lib/build/svg/organization.svg
@@ -169,6 +172,7 @@ files:
169
172
  - lib/build/svg/pin.svg
170
173
  - lib/build/svg/play.svg
171
174
  - lib/build/svg/plug.svg
175
+ - lib/build/svg/plus-16.svg
172
176
  - lib/build/svg/plus-small.svg
173
177
  - lib/build/svg/plus.svg
174
178
  - lib/build/svg/primitive-dot-stroke.svg