octicons 0.0.0.pre.c5666ed → 0.0.0.pre.c6054bd

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: 3273269dff268ae7b969798f17fa2b62a9478a6ae3837a820d7ca5e50495808a
4
- data.tar.gz: 9a0cad6303e2429dcb2dd7deb5dd23f8962743837b3e5363ead9f81e40ac310a
3
+ metadata.gz: e36bb6cd2e1cf7fa862611f91b3f7ef804db591224519219c1eba5a6dbad3024
4
+ data.tar.gz: 42b40061563559f8ead0484eac7b8ec62494c000a14c3260ac2eea4f5db132a0
5
5
  SHA512:
6
- metadata.gz: d2d1e88017116476aa7222704927ee8a8281e7d0709c831770a8dcf44ab57b56028c60ce25bf60b23d95c09adf6608521f3bd173c970d2cf0bfa734f95b1807b
7
- data.tar.gz: 5ae9ee3a54070fb0b9197b63d974497fc37e8cea95a5b4f44edcc247959daeb7773ea0afb5f8798c91950180a34ffe26cf26f0d0c6389d3bcbc109346df10921
6
+ metadata.gz: 4d2a368b0d69d710ba3ac82113913d34e3dbd854ae2a8a8f3b645128a880a576bb0e66fe0bfc5b21ce8272da5f556de673263b20e53992e27f4f7729ac5c8d50
7
+ data.tar.gz: a525b3741edc073abb3dd98e56bd201087bd8391e2488ff67067060bc51e87702a7d6900ecdbf2dc829bfa9763305be4476bc77ba693a2d3ca40d91d248624c6
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2019 GitHub Inc.
3
+ Copyright (c) 2020 GitHub Inc.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
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
- {"plus":{"name":"plus","figma":{"id":"0:639","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["add","new","more"],"width":12,"height":16,"path":""},"primitive-dot":{"name":"primitive-dot","figma":{"id":"0:641","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["circle"],"width":8,"height":16,"path":""},"primitive-square":{"name":"primitive-square","figma":{"id":"0:643","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["box"],"width":8,"height":16,"path":""},"quote":{"name":"quote","figma":{"id":"0:655","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["quotation"],"width":14,"height":16,"path":""},"three-bars":{"name":"three-bars","figma":{"id":"0:826","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["hamburger","menu","dropdown"],"width":12,"height":16,"path":""},"triangle-down":{"name":"triangle-down","figma":{"id":"0:847","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["arrow","point","direction"],"width":12,"height":16,"path":""},"triangle-left":{"name":"triangle-left","figma":{"id":"0:849","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["arrow","point","direction"],"width":6,"height":16,"path":""},"triangle-right":{"name":"triangle-right","figma":{"id":"0:851","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["arrow","point","direction"],"width":6,"height":16,"path":""},"triangle-up":{"name":"triangle-up","figma":{"id":"0:853","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["arrow","point","direction"],"width":12,"height":16,"path":""},"kebab-horizontal":{"name":"kebab-horizontal","figma":{"id":"0:875","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["kebab","dot","menu","more"],"width":13,"height":16,"path":""},"kebab-vertical":{"name":"kebab-vertical","figma":{"id":"0:880","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["kebab","dot","menu","more"],"width":3,"height":16,"path":""},"screen-full":{"name":"screen-full","figma":{"id":"0:898","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["fullscreen","expand"],"width":14,"height":16,"path":""},"screen-normal":{"name":"screen-normal","figma":{"id":"0:906","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["fullscreen","expand","exit"],"width":14,"height":16,"path":""},"x":{"name":"x","figma":{"id":"0:932","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["remove","close","delete"],"width":12,"height":16,"path":""},"grabber":{"name":"grabber","figma":{"id":"0:942","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["mover","drap","drop","sort"],"width":8,"height":16,"path":""},"plus-small":{"name":"plus-small","figma":{"id":"0:947","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["add","new","more","small"],"width":7,"height":16,"path":""},"pulse":{"name":"pulse","figma":{"id":"0:645","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["graph","trend","line","activity"],"width":14,"height":16,"path":""},"star":{"name":"star","figma":{"id":"0:781","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["save","remember","like"],"width":14,"height":16,"path":""},"stop":{"name":"stop","figma":{"id":"0:785","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["block","spam","report"],"width":14,"height":16,"path":""},"sync":{"name":"sync","figma":{"id":"0:791","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["cycle","refresh","loop"],"width":12,"height":16,"path":""},"text-size":{"name":"text-size","figma":{"id":"0:821","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["font","size","text"],"width":18,"height":16,"path":""},"report":{"name":"report","figma":{"id":"0:885","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["report","abuse","flag"],"width":16,"height":16,"path":""},"link-external":{"name":"link-external","figma":{"id":"0:956","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["out","see","more","go","to"],"width":12,"height":16,"path":""},"checklist":{"name":"checklist","figma":{"id":"0:108","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["todo","tasks"],"width":16,"height":16,"path":""},"cloud-download":{"name":"cloud-download","figma":{"id":"0:152","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["save","install","get"],"width":16,"height":16,"path":""},"cloud-upload":{"name":"cloud-upload","figma":{"id":"0:156","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["put","export"],"width":16,"height":16,"path":""},"fold-up":{"name":"fold-up","figma":{"id":"10708:2","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["unfold","hide","collapse","up"],"width":14,"height":16,"path":""},"fold-down":{"name":"fold-down","figma":{"id":"10708:8","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["unfold","hide","collapse","down"],"width":14,"height":16,"path":""},"fold":{"name":"fold","figma":{"id":"0:329","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["unfold","hide","collapse"],"width":14,"height":16,"path":""},"tasklist":{"name":"tasklist","figma":{"id":"0:800","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["todo"],"width":16,"height":16,"path":""},"history":{"name":"history","figma":{"id":"0:404","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["time","past","revert","back"],"width":14,"height":16,"path":""},"dash":{"name":"dash","figma":{"id":"0:178","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["hyphen","range"],"width":8,"height":16,"path":""},"list-ordered":{"name":"list-ordered","figma":{"id":"0:500","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["numbers","tasks","todo","items"],"width":12,"height":16,"path":""},"list-unordered":{"name":"list-unordered","figma":{"id":"0:508","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["bullet","point","tasks","todo","items"],"width":12,"height":16,"path":""},"reply":{"name":"reply","figma":{"id":"0:554","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["reply all","back"],"width":14,"height":16,"path":""},"mute":{"name":"mute","figma":{"id":"0:599","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["quiet","sound","audio","turn","off"],"width":16,"height":16,"path":""},"comment-discussion":{"name":"comment-discussion","figma":{"id":"0:164","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["converse","talk"],"width":16,"height":16,"path":""},"comment":{"name":"comment","figma":{"id":"0:169","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["speak","bubble"],"width":16,"height":16,"path":""},"ellipsis":{"name":"ellipsis","figma":{"id":"0:249","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["dot","read","more","hidden","expand"],"width":12,"height":16,"path":""},"heart":{"name":"heart","figma":{"id":"0:400","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["love","beat"],"width":12,"height":16,"path":""},"horizontal-rule":{"name":"horizontal-rule","figma":{"id":"0:412","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["hr"],"width":10,"height":16,"path":""},"info":{"name":"info","figma":{"id":"0:430","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["help"],"width":14,"height":16,"path":""},"italic":{"name":"italic","figma":{"id":"0:454","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["font","italic","style"],"width":6,"height":16,"path":""},"unverified":{"name":"unverified","figma":{"id":"0:914","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["insecure","untrusted","signed"],"width":16,"height":16,"path":""},"verified":{"name":"verified","figma":{"id":"0:919","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["trusted","secure","trustworthy","signed"],"width":16,"height":16,"path":""},"question":{"name":"question","figma":{"id":"0:649","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["help","explain"],"width":14,"height":16,"path":""},"unfold":{"name":"unfold","figma":{"id":"0:857","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["expand","open","reveal"],"width":14,"height":16,"path":""},"sign-in":{"name":"sign-in","figma":{"id":"0:764","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["door","arrow","direction","enter","log in"],"width":14,"height":16,"path":""},"sign-out":{"name":"sign-out","figma":{"id":"0:768","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["door","arrow","direction","leave","log out"],"width":16,"height":16,"path":""},"alert":{"name":"alert","figma":{"id":"0:5","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["warning","triangle","exclamation","point"],"width":16,"height":16,"path":""},"arrow-down":{"name":"arrow-down","figma":{"id":"0:8","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["point","direction"],"width":10,"height":16,"path":""},"arrow-left":{"name":"arrow-left","figma":{"id":"0:10","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["point","direction"],"width":10,"height":16,"path":""},"arrow-right":{"name":"arrow-right","figma":{"id":"0:12","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["point","direction"],"width":10,"height":16,"path":""},"arrow-up":{"name":"arrow-up","figma":{"id":"0:14","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["point","direction"],"width":10,"height":16,"path":""},"arrow-both":{"name":"arrow-both","figma":{"id":"7345:13","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["point","direction","left","right"],"width":20,"height":16,"path":""},"arrow-small-down":{"name":"arrow-small-down","figma":{"id":"0:16","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["point","direction","little","tiny"],"width":6,"height":16,"path":""},"arrow-small-left":{"name":"arrow-small-left","figma":{"id":"0:18","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["point","direction","little","tiny"],"width":6,"height":16,"path":""},"arrow-small-right":{"name":"arrow-small-right","figma":{"id":"0:20","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["point","direction","little","tiny"],"width":6,"height":16,"path":""},"arrow-small-up":{"name":"arrow-small-up","figma":{"id":"0:22","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["point","direction","little","tiny"],"width":6,"height":16,"path":""},"check":{"name":"check","figma":{"id":"0:104","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["mark","yes","confirm","accept","ok","success"],"width":12,"height":16,"path":""},"chevron-down":{"name":"chevron-down","figma":{"id":"0:117","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["triangle","arrow"],"width":10,"height":16,"path":""},"chevron-left":{"name":"chevron-left","figma":{"id":"0:119","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["triangle","arrow"],"width":8,"height":16,"path":""},"chevron-right":{"name":"chevron-right","figma":{"id":"0:121","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["triangle","arrow"],"width":8,"height":16,"path":""},"chevron-up":{"name":"chevron-up","figma":{"id":"0:123","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["triangle","arrow"],"width":10,"height":16,"path":""},"circle-slash":{"name":"circle-slash","figma":{"id":"0:127","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["no","deny","fail","failure","error","bad"],"width":14,"height":16,"path":""},"bold":{"name":"bold","figma":{"id":"0:38","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["markdown","bold","text"],"width":10,"height":16,"path":""},"mention":{"name":"mention","figma":{"id":"0:579","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["at","ping"],"width":14,"height":16,"path":""},"skip":{"name":"skip","figma":{"id":"18971:0","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["skip","slash"],"width":16,"height":16,"path":""},"beaker":{"name":"beaker","figma":{"id":"0:26","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["experiment","labs","experimental","feature","test","science","education","study","development","testing"],"width":16,"height":16,"path":""},"bell":{"name":"bell","figma":{"id":"0:34","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["notification"],"width":14,"height":16,"path":""},"briefcase":{"name":"briefcase","figma":{"id":"0:58","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["suitcase","business"],"width":14,"height":16,"path":""},"credit-card":{"name":"credit-card","figma":{"id":"0:173","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["money","billing","payments","transactions"],"width":16,"height":16,"path":""},"device-camera-video":{"name":"device-camera-video","figma":{"id":"0:198","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["watch","view","media","stream"],"width":16,"height":16,"path":""},"device-camera":{"name":"device-camera","figma":{"id":"0:202","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["photo","picture","image","snapshot"],"width":16,"height":16,"path":""},"device-desktop":{"name":"device-desktop","figma":{"id":"0:208","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["computer","monitor"],"width":16,"height":16,"path":""},"device-mobile":{"name":"device-mobile","figma":{"id":"0:212","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["phone","iphone","cellphone"],"width":10,"height":16,"path":""},"gift":{"name":"gift","figma":{"id":"0:338","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["package","present","skill","craft","freebie"],"width":14,"height":16,"path":""},"gear":{"name":"gear","figma":{"id":"0:334","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["settings"],"width":14,"height":16,"path":""},"book":{"name":"book","figma":{"id":"0:43","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["book","journal","wiki","readme"],"width":16,"height":16,"path":""},"tag":{"name":"tag","figma":{"id":"0:795","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["release"],"width":14,"height":16,"path":""},"telescope":{"name":"telescope","figma":{"id":"0:806","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["science","space","look","view","explore"],"width":14,"height":16,"path":""},"tools":{"name":"tools","figma":{"id":"0:839","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["screwdriver","wrench","settings"],"width":16,"height":16,"path":""},"trashcan":{"name":"trashcan","figma":{"id":"0:844","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["garbage","rubbish","recycle","delete"],"width":12,"height":16,"path":""},"unmute":{"name":"unmute","figma":{"id":"0:862","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["loud","volume","audio","sound","play"],"width":16,"height":16,"path":""},"watch":{"name":"watch","figma":{"id":"0:929","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["wait","hourglass","time","date"],"width":12,"height":16,"path":""},"key":{"name":"key","figma":{"id":"0:938","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["key","lock","secure","safe"],"width":14,"height":16,"path":""},"archive":{"name":"archive","figma":{"id":"2228:2","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["box","catalog"],"width":14,"height":16,"path":""},"light-bulb":{"name":"light-bulb","figma":{"id":"0:951","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["idea"],"width":12,"height":16,"path":""},"link":{"name":"link","figma":{"id":"0:496","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["connect","hyperlink"],"width":16,"height":16,"path":""},"location":{"name":"location","figma":{"id":"0:516","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["here","marker"],"width":12,"height":16,"path":""},"lock":{"name":"lock","figma":{"id":"0:521","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["secure","safe","protected"],"width":12,"height":16,"path":""},"mail-read":{"name":"mail-read","figma":{"id":"0:547","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["email","open"],"width":14,"height":16,"path":""},"mail":{"name":"mail","figma":{"id":"0:558","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["email","unread"],"width":14,"height":16,"path":""},"megaphone":{"name":"megaphone","figma":{"id":"0:572","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["bullhorn","loud","shout","broadcast"],"width":16,"height":16,"path":""},"bookmark":{"name":"bookmark","figma":{"id":"0:54","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["tab","star"],"width":10,"height":16,"path":""},"calendar":{"name":"calendar","figma":{"id":"0:82","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["time","day","month","year","date","appointment"],"width":14,"height":16,"path":""},"clippy":{"name":"clippy","figma":{"id":"0:138","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["copy","paste","save","capture","clipboard"],"width":14,"height":16,"path":""},"clock":{"name":"clock","figma":{"id":"0:147","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["time","hour","minute","second","watch"],"width":14,"height":16,"path":""},"desktop-download":{"name":"desktop-download","figma":{"id":"0:196","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["clone","download"],"width":16,"height":16,"path":""},"globe":{"name":"globe","figma":{"id":"0:389","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["world","earth","planet"],"width":14,"height":16,"path":""},"home":{"name":"home","figma":{"id":"0:408","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["welcome","index","house","building"],"width":16,"height":16,"path":""},"inbox":{"name":"inbox","figma":{"id":"0:426","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["mail","todo","new","messages"],"width":14,"height":16,"path":""},"law":{"name":"law","figma":{"id":"0:490","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["legal","bill"],"width":14,"height":16,"path":""},"milestone":{"name":"milestone","figma":{"id":"0:583","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["marker"],"width":14,"height":16,"path":""},"mortar-board":{"name":"mortar-board","figma":{"id":"0:594","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["education","learn","teach"],"width":16,"height":16,"path":""},"package":{"name":"package","figma":{"id":"0:617","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["box","ship"],"width":16,"height":16,"path":""},"pencil":{"name":"pencil","figma":{"id":"0:630","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["edit","change","update","write"],"width":14,"height":16,"path":""},"pin":{"name":"pin","figma":{"id":"0:635","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["save","star","bookmark"],"width":16,"height":16,"path":""},"plug":{"name":"plug","figma":{"id":"0:637","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["hook","webhook"],"width":14,"height":16,"path":""},"rocket":{"name":"rocket","figma":{"id":"0:715","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["staff","stafftools","blast","off","space","launch","ship"],"width":16,"height":16,"path":""},"search":{"name":"search","figma":{"id":"0:729","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["magnifying","glass"],"width":16,"height":16,"path":""},"note":{"name":"note","figma":{"id":"0:891","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["card","paper","ticket"],"width":14,"height":16,"path":""},"shield-lock":{"name":"shield-lock","figma":{"id":"0:762","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["protect","shield","lock"],"width":14,"height":16,"path":""},"dashboard":{"name":"dashboard","figma":{"id":"0:182","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["speed","dial"],"width":16,"height":16,"path":""},"graph":{"name":"graph","figma":{"id":"0:396","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["trend","stats","statistics"],"width":16,"height":16,"path":""},"settings":{"name":"settings","figma":{"id":"0:751","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["sliders","filters","controls","levels"],"width":16,"height":16,"path":""},"project":{"name":"project","figma":{"id":"0:868","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["board","kanban","columns","scrum"],"width":15,"height":16,"path":""},"play":{"name":"play","figma":{"id":"8346:0","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["play","start","begin","action"],"width":14,"height":16,"path":""},"github-action":{"name":"github-action","figma":{"id":"8346:4","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["board","workflow","action","automation"],"width":16,"height":16,"path":""},"shield-check":{"name":"shield-check","figma":{"id":"18304:4","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["security","shield","protection","check","success"],"width":16,"height":16,"path":""},"shield-x":{"name":"shield-x","figma":{"id":"18304:6","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["security","shield","protection","fail"],"width":16,"height":16,"path":""},"shield":{"name":"shield","figma":{"id":"18304:8","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["security","shield","protection"],"width":14,"height":16,"path":""},"code":{"name":"code","figma":{"id":"0:160","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["brackets"],"width":14,"height":16,"path":""},"git-branch":{"name":"git-branch","figma":{"id":"0:360","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["fork","branch","git","duplicate"],"width":10,"height":16,"path":""},"diff-added":{"name":"diff-added","figma":{"id":"0:217","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["new","addition","plus"],"width":14,"height":16,"path":""},"diff-ignored":{"name":"diff-ignored","figma":{"id":"0:222","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["slash"],"width":14,"height":16,"path":""},"diff-modified":{"name":"diff-modified","figma":{"id":"0:227","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["dot","changed","updated"],"width":14,"height":16,"path":""},"diff-removed":{"name":"diff-removed","figma":{"id":"0:232","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["deleted","subtracted","dash"],"width":14,"height":16,"path":""},"diff-renamed":{"name":"diff-renamed","figma":{"id":"0:237","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["moved","arrow"],"width":14,"height":16,"path":""},"diff":{"name":"diff","figma":{"id":"0:242","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["difference","changes","compare"],"width":13,"height":16,"path":""},"circuit-board":{"name":"circuit-board","figma":{"id":"0:132","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["developer","hardware","electricity"],"width":14,"height":16,"path":""},"gist":{"name":"gist","figma":{"id":"0:354","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["gist","github"],"width":12,"height":16,"path":""},"git-commit":{"name":"git-commit","figma":{"id":"0:366","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["save"],"width":14,"height":16,"path":""},"git-compare":{"name":"git-compare","figma":{"id":"0:370","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["difference","changes"],"width":14,"height":16,"path":""},"git-merge":{"name":"git-merge","figma":{"id":"0:376","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["join"],"width":12,"height":16,"path":""},"git-pull-request":{"name":"git-pull-request","figma":{"id":"0:382","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["review"],"width":12,"height":16,"path":""},"issue-closed":{"name":"issue-closed","figma":{"id":"0:436","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["done","complete"],"width":16,"height":16,"path":""},"issue-opened":{"name":"issue-opened","figma":{"id":"0:442","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["new"],"width":14,"height":16,"path":""},"issue-reopened":{"name":"issue-reopened","figma":{"id":"0:448","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["regression"],"width":14,"height":16,"path":""},"database":{"name":"database","figma":{"id":"0:190","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["disks","data"],"width":12,"height":16,"path":""},"no-newline":{"name":"no-newline","figma":{"id":"0:603","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["return"],"width":16,"height":16,"path":""},"broadcast":{"name":"broadcast","figma":{"id":"0:63","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["rss","radio","signal"],"width":16,"height":16,"path":""},"keyboard":{"name":"keyboard","figma":{"id":"0:466","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["type","keys","write","shortcuts"],"width":16,"height":16,"path":""},"file-binary":{"name":"file-binary","figma":{"id":"0:260","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["image","video","word","powerpoint","excel"],"width":12,"height":16,"path":""},"file-code":{"name":"file-code","figma":{"id":"0:270","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["text","javascript","html","css","php","ruby","coffeescript","sass","scss"],"width":12,"height":16,"path":""},"file-directory":{"name":"file-directory","figma":{"id":"0:276","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["folder"],"width":14,"height":16,"path":""},"file-media":{"name":"file-media","figma":{"id":"0:280","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["image","video","audio"],"width":12,"height":16,"path":""},"file-pdf":{"name":"file-pdf","figma":{"id":"0:285","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["adobe"],"width":12,"height":16,"path":""},"file-submodule":{"name":"file-submodule","figma":{"id":"0:292","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["folder"],"width":14,"height":16,"path":""},"file-symlink-directory":{"name":"file-symlink-directory","figma":{"id":"0:298","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["folder","subfolder","link","alias"],"width":14,"height":16,"path":""},"file-symlink-file":{"name":"file-symlink-file","figma":{"id":"0:303","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["link","alias"],"width":12,"height":16,"path":""},"file-zip":{"name":"file-zip","figma":{"id":"0:316","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["compress","archive"],"width":12,"height":16,"path":""},"browser":{"name":"browser","figma":{"id":"0:70","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["window","web"],"width":14,"height":16,"path":""},"file":{"name":"file","figma":{"id":"0:308","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["file","text","words"],"width":12,"height":16,"path":""},"repo-clone":{"name":"repo-clone","figma":{"id":"0:669","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["book","journal","repository"],"width":16,"height":16,"path":""},"repo-force-push":{"name":"repo-force-push","figma":{"id":"0:681","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["book","journal","put"],"width":12,"height":16,"path":""},"repo-forked":{"name":"repo-forked","figma":{"id":"0:685","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["book","journal","copy"],"width":10,"height":16,"path":""},"repo-pull":{"name":"repo-pull","figma":{"id":"0:691","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["book","journal","get"],"width":16,"height":16,"path":""},"repo-push":{"name":"repo-push","figma":{"id":"0:700","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["book","journal","repository","put"],"width":12,"height":16,"path":""},"repo":{"name":"repo","figma":{"id":"0:706","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["book","journal","repository"],"width":12,"height":16,"path":""},"mirror":{"name":"mirror","figma":{"id":"0:589","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["reflect"],"width":16,"height":16,"path":""},"ruby":{"name":"ruby","figma":{"id":"0:724","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["code","language"],"width":16,"height":16,"path":""},"server":{"name":"server","figma":{"id":"0:733","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["computers","racks","ops"],"width":12,"height":16,"path":""},"terminal":{"name":"terminal","figma":{"id":"0:815","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["code","ops","shell"],"width":14,"height":16,"path":""},"radio-tower":{"name":"radio-tower","figma":{"id":"0:659","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["broadcast"],"width":16,"height":16,"path":""},"rss":{"name":"rss","figma":{"id":"0:719","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["broadcast","feed","atom"],"width":10,"height":16,"path":""},"versions":{"name":"versions","figma":{"id":"0:923","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["history","commits"],"width":14,"height":16,"path":""},"request-changes":{"name":"request-changes","figma":{"id":"12138:2","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["diff","changes","request"],"width":16,"height":15,"path":""},"dependent":{"name":"dependent","figma":{"id":"18304:2","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["dependency","dependent","file"],"width":16,"height":16,"path":""},"repo-template":{"name":"repo-template","figma":{"id":"18313:8","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["book","new","add","template"],"width":14,"height":16,"path":""},"repo-template-private":{"name":"repo-template-private","figma":{"id":"18313:16","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["book","new","template"],"width":14,"height":16,"path":""},"squirrel":{"name":"squirrel","figma":{"id":"0:779","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["ship","shipit","launch"],"width":16,"height":16,"path":""},"zap":{"name":"zap","figma":{"id":"0:934","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["electricity","lightning","props","like","star","save"],"width":10,"height":16,"path":""},"flame":{"name":"flame","figma":{"id":"0:325","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["fire","hot","burn","trending"],"width":12,"height":16,"path":""},"bug":{"name":"bug","figma":{"id":"0:78","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["insect","issue"],"width":16,"height":16,"path":""},"person":{"name":"person","figma":{"id":"0:633","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["people","man","woman","human"],"width":12,"height":16,"path":""},"smiley":{"name":"smiley","figma":{"id":"0:772","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["emoji","smile","mood","emotion"],"width":16,"height":16,"path":""},"hubot":{"name":"hubot","figma":{"id":"0:419","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["robot","bot"],"width":14,"height":16,"path":""},"thumbsdown":{"name":"thumbsdown","figma":{"id":"0:831","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["thumb","thumbsdown","rejected","dislike"],"width":16,"height":16,"path":""},"thumbsup":{"name":"thumbsup","figma":{"id":"0:835","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["thumb","thumbsup","prop","ship","like"],"width":16,"height":16,"path":""},"organization":{"name":"organization","figma":{"id":"0:613","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["people","group","team"],"width":16,"height":16,"path":""},"gist-secret":{"name":"gist-secret","figma":{"id":"0:347","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["gist","secret","private"],"width":14,"height":16,"path":""},"eye":{"name":"eye","figma":{"id":"0:255","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["look","watch","see"],"width":16,"height":16,"path":""},"eye-closed":{"name":"eye-closed","figma":{"id":"10292:11","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["hidden","invisible","concealed",""],"width":16,"height":13.921463966369629,"path":""},"jersey":{"name":"jersey","figma":{"id":"0:458","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["team","game","basketball"],"width":14,"height":16,"path":""},"octoface":{"name":"octoface","figma":{"id":"0:609","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["octocat","brand"],"width":16,"height":16,"path":""},"mark-github":{"name":"mark-github","figma":{"id":"0:563","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["octocat","brand","github","logo"],"width":16,"height":16,"path":""},"logo-github":{"name":"logo-github","figma":{"id":"0:536","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["brand","github","logo"],"width":45,"height":16,"path":""},"logo-gist":{"name":"logo-gist","figma":{"id":"0:529","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["brand","github","logo"],"width":25,"height":16,"path":""},"markdown":{"name":"markdown","figma":{"id":"0:567","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["markup","style"],"width":16,"height":16,"path":""},"paintcan":{"name":"paintcan","figma":{"id":"0:624","file":"FP7lqd1V00LUaT5zvdklkkZr"},"keywords":["style","theme","art","color"],"width":12,"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":""},"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":""},"square-16":{"name":"square-16","keywords":[],"width":16,"height":16,"path":""},"square-fill-16":{"name":"square-fill-16","keywords":[],"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 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="12" height="16" viewBox="0 0 12 16"><path fill-rule="evenodd" d="M1.192 3.924C1.909 3.294 2.835 3 3.727 3 4.73 3 5.513 3.485 6 3.894 6.488 3.485 7.271 3 8.273 3c.892 0 1.818.293 2.535.924C11.545 4.572 12 5.525 12 6.7c0 .962-.435 1.891-.944 2.67-.522.8-1.2 1.558-1.852 2.203a24.563 24.563 0 01-1.793 1.6c-.451.365-1.39 1.045-1.39 1.045s-1.277-.921-1.431-1.046a24.57 24.57 0 01-1.793-1.599c-.652-.645-1.33-1.404-1.853-2.202C.434 8.59 0 7.662 0 6.7c0-1.175.455-2.128 1.192-2.776zm4.96 7.694l-.151.122a22.6 22.6 0 01-1.797-1.588c-.599-.593-1.17-1.24-1.586-1.876C2.19 7.621 2 7.088 2 6.7c0-.625.226-1.022.513-1.274.305-.27.743-.426 1.214-.426.344 0 .686.172.993.43.191.161.332.314.455.448.255.278.432.472.826.472a.868.868 0 00.497-.14c.146-.096.264-.232.394-.38.112-.13.234-.27.39-.4.306-.258.647-.43.99-.43.472 0 .91.157 1.215.426.287.252.513.649.513 1.274 0 .388-.19.922-.618 1.576-.416.636-.987 1.283-1.585 1.876-.595.589-1.193 1.1-1.645 1.466z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="12" height="16" viewBox="0 0 12 16"><path fill-rule="evenodd" d="M9 2c-.97 0-1.69.42-2.2 1-.51.58-.78.92-.8 1-.02-.08-.28-.42-.8-1-.52-.58-1.17-1-2.2-1-1.632.086-2.954 1.333-3 3 0 .52.09 1.52.67 2.67C1.25 8.82 3.01 10.61 6 13c2.98-2.39 4.77-4.17 5.34-5.33C11.91 6.51 12 5.5 12 5c-.047-1.69-1.342-2.913-3-3z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="12" height="16" viewBox="0 0 12 16"><path fill-rule="evenodd" d="M8.727 3C7.091 3 6.001 4.65 6.001 4.65S4.909 3 3.273 3C1.636 3 0 4.1 0 6.3 0 9.6 6 14 6 14s6-4.4 6-7.7C12 4.1 10.364 3 8.727 3z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M4 6a2 2 0 100 4c.137 0 .402-.073.796-.318a7.49 7.49 0 001.138-.908c.285-.27.543-.542.753-.774a14.22 14.22 0 00-.753-.774 7.49 7.49 0 00-1.138-.908C4.402 6.073 4.137 6 4 6zm5.313 2c.21.232.468.504.753.774.37.35.764.676 1.138.908.394.245.659.318.796.318a2 2 0 100-4c-.137 0-.402.073-.796.318a7.483 7.483 0 00-1.138.908c-.285.27-.543.542-.753.774zM8 9.527a15.45 15.45 0 01-.691.7 9.587 9.587 0 01-1.457 1.154C5.34 11.698 4.69 12 4 12a4 4 0 010-8c.691 0 1.34.302 1.852.62.531.33 1.034.754 1.457 1.154.255.24.489.481.691.699.202-.218.436-.458.691-.7a9.587 9.587 0 011.457-1.154C10.66 4.302 11.31 4 12 4a4 4 0 010 8c-.691 0-1.34-.302-1.852-.62a9.464 9.464 0 01-1.457-1.154A14.47 14.47 0 018 9.527z"/></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="M4.5 7.5L3 9l5 5 5-5-1.5-1.5L9 10.179V2H7v8.179L4.5 7.5z"/></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 4.5L7 3 2 8l5 5 1.5-1.5L5.821 9H14V7H5.821L8.5 4.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M7.5 11.5L9 13l5-5-5-5-1.5 1.5L10.179 7H2v2h8.179L7.5 11.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M11.5 8.5L13 7 8 2 3 7l1.5 1.5L7 5.821V14h2V5.821L11.5 8.5z"/></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 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="8" height="16" viewBox="0 0 8 16"><path fill-rule="evenodd" d="M4 10.5a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM4 12a4 4 0 100-8 4 4 0 000 8z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M12 0H4c-.73 0-1 .27-1 1v15l5-3.09L13 16V1c0-.73-.27-1-1-1z"/></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="M3.5 5.25C3.5 4.2835 4.2835 3.5 5.25 3.5H10.75C11.7165 3.5 12.5 4.2835 12.5 5.25V10.75C12.5 11.7165 11.7165 12.5 10.75 12.5H5.25C4.2835 12.5 3.5 11.7165 3.5 10.75V5.25ZM5.25 5C5.11193 5 5 5.11193 5 5.25V10.75C5 10.8881 5.11193 11 5.25 11H10.75C10.8881 11 11 10.8881 11 10.75V5.25C11 5.11193 10.8881 5 10.75 5H5.25Z" fill="black"/>
3
+ </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="M5.25 3.5C4.2835 3.5 3.5 4.2835 3.5 5.25V10.75C3.5 11.7165 4.2835 12.5 5.25 12.5H10.75C11.7165 12.5 12.5 11.7165 12.5 10.75V5.25C12.5 4.2835 11.7165 3.5 10.75 3.5H5.25Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M12 0H4c-.73 0-1 .27-1 1v1.982l10 5.774V1c0-.73-.27-1-1-1zm1 12.203l1.606.928.75-1.3-13.856-8-.75 1.3L3 6.43V16l5-3.09L13 16v-3.797z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M10 8A5 5 0 110 8a5 5 0 0110 0zM3.5 5.5l4 2.5-4 2.5v-5zm3.75 7.444a5.001 5.001 0 000-9.888 5 5 0 110 9.888zm3 0a5.001 5.001 0 000-9.888 5 5 0 110 9.888z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M3 4.949a2.5 2.5 0 10-1 0v8.049c0 .547.453 1 1 1h2.05a2.5 2.5 0 004.9 0h1.1a2.5 2.5 0 100-1h-1.1a2.5 2.5 0 00-4.9 0H3v-5h2.05a2.5 2.5 0 004.9 0h1.1a2.5 2.5 0 100-1h-1.1a2.5 2.5 0 00-4.9 0H3v-2.05zm9 2.55a1.5 1.5 0 103 0 1.5 1.5 0 00-3 0zm-3 0a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0zm4.5 7.499a1.5 1.5 0 110-3.001 1.5 1.5 0 010 3zm-6-3a1.5 1.5 0 110 3 1.5 1.5 0 010-3z"/></svg>
@@ -1,3 +1,3 @@
1
1
  module Octicons
2
- VERSION = "0.0.0.pre.c5666ed".freeze
2
+ VERSION = "0.0.0.pre.c6054bd".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.c5666ed
4
+ version: 0.0.0.pre.c6054bd
5
5
  platform: ruby
6
6
  authors:
7
7
  - GitHub Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-27 00:00:00.000000000 Z
11
+ date: 2020-06-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -116,13 +116,16 @@ files:
116
116
  - lib/build/svg/globe.svg
117
117
  - lib/build/svg/grabber.svg
118
118
  - lib/build/svg/graph.svg
119
+ - lib/build/svg/heart-outline.svg
119
120
  - lib/build/svg/heart.svg
120
121
  - lib/build/svg/history.svg
121
122
  - lib/build/svg/home.svg
122
123
  - lib/build/svg/horizontal-rule.svg
123
124
  - lib/build/svg/hubot.svg
124
125
  - lib/build/svg/inbox.svg
126
+ - lib/build/svg/infinity.svg
125
127
  - lib/build/svg/info.svg
128
+ - lib/build/svg/internal-repo.svg
126
129
  - lib/build/svg/issue-closed.svg
127
130
  - lib/build/svg/issue-opened.svg
128
131
  - lib/build/svg/issue-reopened.svg
@@ -134,6 +137,10 @@ files:
134
137
  - lib/build/svg/keyboard.svg
135
138
  - lib/build/svg/law.svg
136
139
  - lib/build/svg/light-bulb.svg
140
+ - lib/build/svg/line-arrow-down.svg
141
+ - lib/build/svg/line-arrow-left.svg
142
+ - lib/build/svg/line-arrow-right.svg
143
+ - lib/build/svg/line-arrow-up.svg
137
144
  - lib/build/svg/link-external.svg
138
145
  - lib/build/svg/link.svg
139
146
  - lib/build/svg/list-ordered.svg
@@ -153,6 +160,7 @@ files:
153
160
  - lib/build/svg/mortar-board.svg
154
161
  - lib/build/svg/mute.svg
155
162
  - lib/build/svg/no-newline.svg
163
+ - lib/build/svg/north-star.svg
156
164
  - lib/build/svg/note.svg
157
165
  - lib/build/svg/octoface.svg
158
166
  - lib/build/svg/organization.svg
@@ -165,6 +173,7 @@ files:
165
173
  - lib/build/svg/plug.svg
166
174
  - lib/build/svg/plus-small.svg
167
175
  - lib/build/svg/plus.svg
176
+ - lib/build/svg/primitive-dot-stroke.svg
168
177
  - lib/build/svg/primitive-dot.svg
169
178
  - lib/build/svg/primitive-square.svg
170
179
  - lib/build/svg/project.svg
@@ -186,6 +195,7 @@ files:
186
195
  - lib/build/svg/rocket.svg
187
196
  - lib/build/svg/rss.svg
188
197
  - lib/build/svg/ruby.svg
198
+ - lib/build/svg/saved.svg
189
199
  - lib/build/svg/screen-full.svg
190
200
  - lib/build/svg/screen-normal.svg
191
201
  - lib/build/svg/search.svg
@@ -199,6 +209,8 @@ files:
199
209
  - lib/build/svg/sign-out.svg
200
210
  - lib/build/svg/skip.svg
201
211
  - lib/build/svg/smiley.svg
212
+ - lib/build/svg/square-16.svg
213
+ - lib/build/svg/square-fill-16.svg
202
214
  - lib/build/svg/squirrel.svg
203
215
  - lib/build/svg/star.svg
204
216
  - lib/build/svg/stop.svg
@@ -219,10 +231,13 @@ files:
219
231
  - lib/build/svg/triangle-up.svg
220
232
  - lib/build/svg/unfold.svg
221
233
  - lib/build/svg/unmute.svg
234
+ - lib/build/svg/unsaved.svg
222
235
  - lib/build/svg/unverified.svg
223
236
  - lib/build/svg/verified.svg
224
237
  - lib/build/svg/versions.svg
225
238
  - lib/build/svg/watch.svg
239
+ - lib/build/svg/workflow-all.svg
240
+ - lib/build/svg/workflow.svg
226
241
  - lib/build/svg/x.svg
227
242
  - lib/build/svg/zap.svg
228
243
  - lib/octicons.rb