├── .babelrc ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bower.json ├── build ├── icon.tpl └── icons.js ├── demo ├── Demo.vue ├── bundle.js ├── index.html └── index.js ├── dist └── vue-octicon.js ├── package.json ├── src ├── components │ └── Octicon.vue ├── icons │ ├── alert.js │ ├── arrow-down.js │ ├── arrow-left.js │ ├── arrow-right.js │ ├── arrow-small-down.js │ ├── arrow-small-left.js │ ├── arrow-small-right.js │ ├── arrow-small-up.js │ ├── arrow-up.js │ ├── beaker.js │ ├── bell.js │ ├── bold.js │ ├── book.js │ ├── bookmark.js │ ├── briefcase.js │ ├── broadcast.js │ ├── browser.js │ ├── bug.js │ ├── calendar.js │ ├── check.js │ ├── checklist.js │ ├── chevron-down.js │ ├── chevron-left.js │ ├── chevron-right.js │ ├── chevron-up.js │ ├── circle-slash.js │ ├── circuit-board.js │ ├── clippy.js │ ├── clock.js │ ├── cloud-download.js │ ├── cloud-upload.js │ ├── code.js │ ├── comment-discussion.js │ ├── comment.js │ ├── credit-card.js │ ├── dash.js │ ├── dashboard.js │ ├── database.js │ ├── desktop-download.js │ ├── device-camera-video.js │ ├── device-camera.js │ ├── device-desktop.js │ ├── device-mobile.js │ ├── diff-added.js │ ├── diff-ignored.js │ ├── diff-modified.js │ ├── diff-removed.js │ ├── diff-renamed.js │ ├── diff.js │ ├── ellipses.js │ ├── ellipsis.js │ ├── eye.js │ ├── file-binary.js │ ├── file-code.js │ ├── file-directory.js │ ├── file-media.js │ ├── file-pdf.js │ ├── file-submodule.js │ ├── file-symlink-directory.js │ ├── file-symlink-file.js │ ├── file-text.js │ ├── file-zip.js │ ├── file.js │ ├── flame.js │ ├── fold.js │ ├── gear.js │ ├── gift.js │ ├── gist-secret.js │ ├── gist.js │ ├── git-branch.js │ ├── git-commit.js │ ├── git-compare.js │ ├── git-merge.js │ ├── git-pull-request.js │ ├── globe.js │ ├── grabber.js │ ├── graph.js │ ├── heart.js │ ├── history.js │ ├── home.js │ ├── horizontal-rule.js │ ├── hubot.js │ ├── inbox.js │ ├── index.js │ ├── info.js │ ├── issue-closed.js │ ├── issue-opened.js │ ├── issue-reopened.js │ ├── italic.js │ ├── jersey.js │ ├── key.js │ ├── keyboard.js │ ├── law.js │ ├── light-bulb.js │ ├── link-external.js │ ├── link.js │ ├── list-ordered.js │ ├── list-unordered.js │ ├── location.js │ ├── lock.js │ ├── logo-gist.js │ ├── logo-github.js │ ├── mail-read.js │ ├── mail-reply.js │ ├── mail.js │ ├── mark-github.js │ ├── markdown.js │ ├── megaphone.js │ ├── mention.js │ ├── milestone.js │ ├── mirror.js │ ├── mortar-board.js │ ├── mute.js │ ├── no-newline.js │ ├── note.js │ ├── octoface.js │ ├── organization.js │ ├── package.js │ ├── paintcan.js │ ├── pencil.js │ ├── person.js │ ├── pin.js │ ├── plug.js │ ├── plus-small.js │ ├── plus.js │ ├── primitive-dot.js │ ├── primitive-square.js │ ├── project.js │ ├── pulse.js │ ├── question.js │ ├── quote.js │ ├── radio-tower.js │ ├── reply.js │ ├── repo-clone.js │ ├── repo-force-push.js │ ├── repo-forked.js │ ├── repo-pull.js │ ├── repo-push.js │ ├── repo.js │ ├── rocket.js │ ├── rss.js │ ├── ruby.js │ ├── screen-full.js │ ├── screen-normal.js │ ├── search.js │ ├── server.js │ ├── settings.js │ ├── shield.js │ ├── sign-in.js │ ├── sign-out.js │ ├── smiley.js │ ├── squirrel.js │ ├── star.js │ ├── stop.js │ ├── sync.js │ ├── tag.js │ ├── tasklist.js │ ├── telescope.js │ ├── terminal.js │ ├── text-size.js │ ├── three-bars.js │ ├── thumbsdown.js │ ├── thumbsup.js │ ├── tools.js │ ├── trashcan.js │ ├── triangle-down.js │ ├── triangle-left.js │ ├── triangle-right.js │ ├── triangle-up.js │ ├── unfold.js │ ├── unmute.js │ ├── unverified.js │ ├── verified.js │ ├── versions.js │ ├── watch.js │ ├── x.js │ └── zap.js ├── index.js └── util.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["es2015", { "modules": false }] 4 | ], 5 | "plugins": [ 6 | "add-module-exports" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | 11 | # Directory for instrumented libs generated by jscoverage/JSCover 12 | lib-cov 13 | 14 | # Coverage directory used by tools like istanbul 15 | coverage 16 | 17 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 18 | .grunt 19 | 20 | # node-waf configuration 21 | .lock-wscript 22 | 23 | # Compiled binary addons (http://nodejs.org/api/addons.html) 24 | build/Release 25 | 26 | # Dependency directory 27 | node_modules 28 | 29 | # Optional npm cache directory 30 | .npm 31 | 32 | # Optional REPL history 33 | .node_repl_history 34 | 35 | # Others 36 | .DS_Store 37 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | demo 3 | src 4 | .babelrc 5 | .gitignore 6 | bower.json 7 | webpack.config.js 8 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 2.1.1 2 | * Added customizable `viewBox`. 3 | 4 | 2.1.0 5 | * Added support for stacked icons. 6 | 7 | 2.0.2 8 | * Fix `.npmignore`. 9 | 10 | 2.0.1 11 | * Removed project configs for distribution to prevent problems with existing project templates. 12 | * Updated readme and build. 13 | 14 | 2.0.0 15 | * Switch to Vue.js dependency to `2.0`. 16 | * Added support for users to specify used icons to reduce bundle size. 17 | * Bump major version to 2. 18 | 19 | 0.3.0 20 | * Supported registering custom icons. 21 | 22 | 0.2.1 23 | * `scale` now works well with CSS `em` sizes. 24 | 25 | 0.2.0 26 | * Added `aria-label="false"` for icons without `label` prop. 27 | 28 | 0.1.1 29 | * Fix prop coerce 30 | 31 | 0.1.0 32 | * First version 33 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 GU Yiling 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Vue-Octicon 2 | 3 | > Octicon component for Vue.js, using inline SVG. 4 | 5 | Vue-Octicon is built upon [Octicons](https://octicons.github.com/) `v5.0.1` and depends on [Vue.js](https://vuejs.org/) `v2.0.1`+. 6 | 7 | ## Installation 8 | 9 | ### NPM (Recommended) 10 | 11 | ```bash 12 | $ npm install vue-octicon 13 | ``` 14 | 15 | ### bower 16 | 17 | ```bash 18 | $ bower install vue-octicon 19 | ``` 20 | 21 | ### manual 22 | 23 | Just download `dist/vue-octicon.js` and include it in your HTML file: 24 | 25 | ```html 26 | 27 | ``` 28 | 29 | ## Usage 30 | 31 | ```html 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | ``` 40 | 41 | ### ES Modules with NPM & vue-loader (Recommended) 42 | 43 | ```js 44 | import Vue from 'vue' 45 | import Octicon from 'vue-octicon/components/Octicon.vue' 46 | 47 | // Pick one way betweem the 2 following ways 48 | 49 | // only import the icons you use to reduce bundle size 50 | import 'vue-octicon/icons/repo' 51 | 52 | // or import all icons if you don't care about bundle size 53 | import 'vue-octicon/icons' 54 | ``` 55 | 56 | **Heads up** 57 | 58 | if you are using `vue-cli` to create your project, the `webpack` template may exclude `node_modules` from files to be transpiled by Babel. Change the `exclude` value from `/node_modules/` to `/node_modules(?![\\/]vue-octicon[\\/])/` to fix the problem.** 59 | 60 | ### CommonJS with NPM without ES Next support 61 | 62 | ```js 63 | var Vue = require('vue') 64 | 65 | // requiring the UMD module 66 | var Octicon = require('vue-octicon') 67 | 68 | // or with vue-loader you can require the src directly 69 | var Octicon = require('vue-octicon/components/Octicon.vue') 70 | 71 | // register component to use 72 | ``` 73 | 74 | ### AMD 75 | 76 | ```js 77 | require.config({ 78 | paths: { 79 | 'vue-octicon': 'path/to/vue-octicon' 80 | } 81 | }) 82 | 83 | require(['vue-octicon'], function (Octicon) { 84 | // register component to use... 85 | }) 86 | ``` 87 | 88 | ### Global variable 89 | 90 | The component class is exposed as `window.VueOcticon`. 91 | 92 | ## Local development 93 | 94 | ```bash 95 | $ npm i 96 | $ npm run dev 97 | ``` 98 | 99 | Open `http://localhost:8080/demo` to see the demo. 100 | 101 | ### Updating icons 102 | 103 | Don't touch files in `src/icons` but update `assets/icons.json` instead and run `npm run icons` to re-generate icon module files. 104 | 105 | ## Registering custom icons 106 | 107 | You can register custom icons like this: 108 | 109 | ```js 110 | // ES Modules with vue-loader 111 | import Octicon from 'vue-octicon/src/components/Octicon.vue' 112 | 113 | Octicon.register({ 114 | taobao: { 115 | width: 16, 116 | height: 12.268, 117 | d: 'M2.786,2.795 C3.580,2.795 4.223,2.223 4.223,1.509 C4.223,0.804 3.580,0.223 2.786,0.223 C1.991,0.223 1.348,0.804 1.348,1.509 C1.348,2.223 1.991,2.795 2.786,2.795 L2.786,2.795 Z M1.589,3.321 L0.688,4.705 L2.357,5.750 C2.357,5.750 3.473,6.313 2.946,7.384 C2.446,8.393 0.018,10.607 0.018,10.607 L2.196,11.964 C3.696,8.696 3.607,9.134 3.982,7.955 C4.366,6.759 4.455,5.839 3.795,5.179 C2.946,4.330 2.848,4.250 1.589,3.321 L1.589,3.321 Z M15.714,2.955 C15.714,2.955 15.250,-0.723 7.196,1.554 C7.536,0.955 7.705,0.563 7.705,0.563 L5.696,0.000 C5.696,0.000 4.884,2.643 3.438,3.884 C3.438,3.884 4.839,4.688 4.821,4.661 C5.223,4.268 5.580,3.857 5.893,3.464 C6.214,3.321 6.527,3.188 6.830,3.063 C6.455,3.741 5.857,4.741 5.250,5.375 L6.098,6.116 C6.098,6.116 6.679,5.554 7.313,4.884 L8.027,4.884 L8.027,6.125 L5.223,6.125 L5.223,7.107 L8.027,7.107 L8.027,9.482 C7.991,9.473 7.955,9.473 7.920,9.473 C7.616,9.455 7.125,9.411 6.946,9.107 C6.714,8.750 6.884,8.080 6.893,7.670 L4.955,7.670 L4.884,7.705 C4.884,7.705 4.179,10.884 6.938,10.813 C9.509,10.884 10.991,10.098 11.696,9.554 L11.982,10.607 L13.571,9.946 L12.491,7.313 L11.205,7.705 L11.446,8.616 C11.116,8.857 10.732,9.045 10.321,9.179 L10.321,7.107 L13.054,7.107 L13.054,6.125 L10.321,6.125 L10.321,4.884 L13.071,4.884 L13.071,3.902 L8.188,3.902 C8.536,3.473 8.813,3.080 8.893,2.830 L8.036,2.598 C11.688,1.295 13.723,1.518 13.705,3.661 L13.705,9.304 C13.705,9.304 13.920,11.241 11.696,11.107 L10.500,10.848 L10.214,11.991 C10.214,11.991 15.402,13.464 15.821,9.482 C16.250,5.491 15.714,2.955 15.714,2.955 L15.714,2.955 Z' 118 | } 119 | }) 120 | ``` 121 | 122 | ## Related projects 123 | 124 | * [Vue-Awesome](https://github.com/Justineo/vue-awesome) by the same author of Vue-Octicon. 125 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-octicon", 3 | "version": "2.1.1", 4 | "homepage": "https://github.com/Justineo/vue-octicon", 5 | "authors": [ 6 | "Justineo " 7 | ], 8 | "description": "Octicon component for Vue.js, using inline SVG.", 9 | "main": "dist/vue-octicon.js", 10 | "moduleType": [ 11 | "amd", 12 | "globals", 13 | "node" 14 | ], 15 | "keywords": [ 16 | "Octicon", 17 | "Vue.js" 18 | ], 19 | "license": "MIT" 20 | } 21 | -------------------------------------------------------------------------------- /build/icon.tpl: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register(${icon}) 4 | -------------------------------------------------------------------------------- /build/icons.js: -------------------------------------------------------------------------------- 1 | var fs = require('fs') 2 | var path = require('path') 3 | var icons = require('octicons') 4 | 5 | var moduleTpl = fs.readFileSync(path.resolve(__dirname, './icon.tpl'), 'utf8') 6 | var ICON_PATH = path.resolve(__dirname, '../src/icons') 7 | 8 | var indexModule = '' 9 | var names = Object.keys(icons) 10 | names.forEach(function (name) { 11 | var data = {} 12 | var icon = icons[name] 13 | let iconData = data[name] = {} 14 | iconData.width = parseFloat(icon.width) 15 | iconData.height = parseFloat(icon.height) 16 | iconData.d = icon.path.match(/\bd="([^"]+)"/)[1] 17 | 18 | fs.writeFileSync(ICON_PATH + '/' + name + '.js', moduleTpl.replace('${icon}', JSON.stringify(data))) 19 | indexModule += 'import \'./' + name + '\'\n' 20 | }) 21 | 22 | fs.writeFileSync(ICON_PATH + '/index.js', indexModule) 23 | console.log(names.length + ' icon modules generated.') 24 | -------------------------------------------------------------------------------- /demo/Demo.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | 160 | 161 | 164 | -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Octicon-Vue Demo 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /demo/index.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import Demo from './Demo.vue' 3 | import Octicon from '../src/components/Octicon.vue' 4 | 5 | Vue.component('octicon', Octicon) 6 | 7 | Octicon.register({ 8 | taobao: { 9 | width: 16, 10 | height: 12.268, 11 | d: 'M2.786,2.795 C3.580,2.795 4.223,2.223 4.223,1.509 C4.223,0.804 3.580,0.223 2.786,0.223 C1.991,0.223 1.348,0.804 1.348,1.509 C1.348,2.223 1.991,2.795 2.786,2.795 L2.786,2.795 Z M1.589,3.321 L0.688,4.705 L2.357,5.750 C2.357,5.750 3.473,6.313 2.946,7.384 C2.446,8.393 0.018,10.607 0.018,10.607 L2.196,11.964 C3.696,8.696 3.607,9.134 3.982,7.955 C4.366,6.759 4.455,5.839 3.795,5.179 C2.946,4.330 2.848,4.250 1.589,3.321 L1.589,3.321 Z M15.714,2.955 C15.714,2.955 15.250,-0.723 7.196,1.554 C7.536,0.955 7.705,0.563 7.705,0.563 L5.696,0.000 C5.696,0.000 4.884,2.643 3.438,3.884 C3.438,3.884 4.839,4.688 4.821,4.661 C5.223,4.268 5.580,3.857 5.893,3.464 C6.214,3.321 6.527,3.188 6.830,3.063 C6.455,3.741 5.857,4.741 5.250,5.375 L6.098,6.116 C6.098,6.116 6.679,5.554 7.313,4.884 L8.027,4.884 L8.027,6.125 L5.223,6.125 L5.223,7.107 L8.027,7.107 L8.027,9.482 C7.991,9.473 7.955,9.473 7.920,9.473 C7.616,9.455 7.125,9.411 6.946,9.107 C6.714,8.750 6.884,8.080 6.893,7.670 L4.955,7.670 L4.884,7.705 C4.884,7.705 4.179,10.884 6.938,10.813 C9.509,10.884 10.991,10.098 11.696,9.554 L11.982,10.607 L13.571,9.946 L12.491,7.313 L11.205,7.705 L11.446,8.616 C11.116,8.857 10.732,9.045 10.321,9.179 L10.321,7.107 L13.054,7.107 L13.054,6.125 L10.321,6.125 L10.321,4.884 L13.071,4.884 L13.071,3.902 L8.188,3.902 C8.536,3.473 8.813,3.080 8.893,2.830 L8.036,2.598 C11.688,1.295 13.723,1.518 13.705,3.661 L13.705,9.304 C13.705,9.304 13.920,11.241 11.696,11.107 L10.500,10.848 L10.214,11.991 C10.214,11.991 15.402,13.464 15.821,9.482 C16.250,5.491 15.714,2.955 15.714,2.955 L15.714,2.955 Z' 12 | } 13 | }) 14 | 15 | new Vue({ 16 | el: '#demo', 17 | components: { 18 | demo: Demo 19 | }, 20 | render: h => h(Demo) 21 | }) 22 | -------------------------------------------------------------------------------- /dist/vue-octicon.js: -------------------------------------------------------------------------------- 1 | !function(t,c){"object"==typeof exports&&"object"==typeof module?module.exports=c():"function"==typeof define&&define.amd?define([],c):"object"==typeof exports?exports.VueOcticon=c():t.VueOcticon=c()}(this,function(){return function(t){function c(i){if(h[i])return h[i].exports;var e=h[i]={i:i,l:!1,exports:{}};return t[i].call(e.exports,e,e.exports,c),e.l=!0,e.exports}var h={};return c.m=t,c.c=h,c.i=function(t){return t},c.d=function(t,c,h){Object.defineProperty(t,c,{configurable:!1,enumerable:!0,get:h})},c.n=function(t){var h=t&&t.__esModule?function(){return t["default"]}:function(){return t};return c.d(h,"a",h),h},c.o=function(t,c){return Object.prototype.hasOwnProperty.call(t,c)},c.p="/",c(c.s=185)}([function(t,c,h){var i,e;h(184),i=h(2);var n=h(182);e=i=i||{},"object"!=typeof i["default"]&&"function"!=typeof i["default"]||(e=i=i["default"]),"function"==typeof e&&(e=e.options),e.render=n.render,e.staticRenderFns=n.staticRenderFns,t.exports=i},function(t,c,h){"use strict";var i=h(3),e=(h.n(i),h(4)),n=(h.n(e),h(5)),r=(h.n(n),h(6)),v=(h.n(r),h(7)),s=(h.n(v),h(8)),a=(h.n(s),h(9)),z=(h.n(a),h(10)),l=(h.n(z),h(11)),o=(h.n(l),h(12)),u=(h.n(o),h(13)),d=(h.n(u),h(14)),H=(h.n(d),h(15)),V=(h.n(H),h(16)),g=(h.n(V),h(17)),m=(h.n(g),h(18)),f=(h.n(m),h(19)),M=(h.n(f),h(20)),w=(h.n(M),h(21)),L=(h.n(w),h(22)),p=(h.n(L),h(23)),C=(h.n(p),h(24)),b=(h.n(C),h(25)),y=(h.n(b),h(26)),S=(h.n(y),h(27)),A=(h.n(S),h(28)),x=(h.n(A),h(29)),k=(h.n(x),h(30)),j=(h.n(k),h(31)),B=(h.n(j),h(32)),N=(h.n(B),h(33)),E=(h.n(N),h(34)),O=(h.n(E),h(36)),R=(h.n(O),h(35)),T=(h.n(R),h(37)),_=(h.n(T),h(38)),q=(h.n(_),h(39)),U=(h.n(q),h(40)),F=(h.n(U),h(41)),I=(h.n(F),h(43)),W=(h.n(I),h(42)),$=(h.n(W),h(44)),D=(h.n($),h(45)),G=(h.n(D),h(51)),P=(h.n(G),h(46)),J=(h.n(P),h(47)),K=(h.n(J),h(48)),Q=(h.n(K),h(49)),X=(h.n(Q),h(50)),Y=(h.n(X),h(52)),Z=(h.n(Y),h(53)),tt=(h.n(Z),h(54)),ct=(h.n(tt),h(65)),ht=(h.n(ct),h(55)),it=(h.n(ht),h(56)),et=(h.n(it),h(57)),nt=(h.n(et),h(58)),rt=(h.n(nt),h(59)),vt=(h.n(rt),h(60)),st=(h.n(vt),h(61)),at=(h.n(st),h(62)),zt=(h.n(at),h(63)),lt=(h.n(zt),h(64)),ot=(h.n(lt),h(66)),ut=(h.n(ot),h(67)),dt=(h.n(ut),h(68)),Ht=(h.n(dt),h(69)),Vt=(h.n(Ht),h(71)),gt=(h.n(Vt),h(70)),mt=(h.n(gt),h(72)),ft=(h.n(mt),h(73)),Mt=(h.n(ft),h(74)),wt=(h.n(Mt),h(75)),Lt=(h.n(wt),h(76)),pt=(h.n(Lt),h(77)),Ct=(h.n(pt),h(78)),bt=(h.n(Ct),h(79)),yt=(h.n(bt),h(80)),St=(h.n(yt),h(81)),At=(h.n(St),h(82)),xt=(h.n(At),h(83)),kt=(h.n(xt),h(84)),jt=(h.n(kt),h(85)),Bt=(h.n(jt),h(86)),Nt=(h.n(Bt),h(87)),Et=(h.n(Nt),h(88)),Ot=(h.n(Et),h(89)),Rt=(h.n(Ot),h(90)),Tt=(h.n(Rt),h(91)),_t=(h.n(Tt),h(92)),qt=(h.n(_t),h(93)),Ut=(h.n(qt),h(94)),Ft=(h.n(Ut),h(95)),It=(h.n(Ft),h(97)),Wt=(h.n(It),h(96)),$t=(h.n(Wt),h(98)),Dt=(h.n($t),h(99)),Gt=(h.n(Dt),h(100)),Pt=(h.n(Gt),h(101)),Jt=(h.n(Pt),h(102)),Kt=(h.n(Jt),h(103)),Qt=(h.n(Kt),h(106)),Xt=(h.n(Qt),h(104)),Yt=(h.n(Xt),h(105)),Zt=(h.n(Yt),h(107)),tc=(h.n(Zt),h(108)),cc=(h.n(tc),h(109)),hc=(h.n(cc),h(110)),ic=(h.n(hc),h(111)),ec=(h.n(ic),h(112)),nc=(h.n(ec),h(113)),rc=(h.n(nc),h(114)),vc=(h.n(rc),h(115)),sc=(h.n(vc),h(116)),ac=(h.n(sc),h(117)),zc=(h.n(ac),h(118)),lc=(h.n(zc),h(119)),oc=(h.n(lc),h(120)),uc=(h.n(oc),h(121)),dc=(h.n(uc),h(122)),Hc=(h.n(dc),h(123)),Vc=(h.n(Hc),h(124)),gc=(h.n(Vc),h(126)),mc=(h.n(gc),h(125)),fc=(h.n(mc),h(127)),Mc=(h.n(fc),h(128)),wc=(h.n(Mc),h(129)),Lc=(h.n(wc),h(130)),pc=(h.n(Lc),h(131)),Cc=(h.n(pc),h(132)),bc=(h.n(Cc),h(133)),yc=(h.n(bc),h(134)),Sc=(h.n(yc),h(140)),Ac=(h.n(Sc),h(135)),xc=(h.n(Ac),h(136)),kc=(h.n(xc),h(137)),jc=(h.n(kc),h(138)),Bc=(h.n(jc),h(139)),Nc=(h.n(Bc),h(141)),Ec=(h.n(Nc),h(142)),Oc=(h.n(Ec),h(143)),Rc=(h.n(Oc),h(144)),Tc=(h.n(Rc),h(145)),_c=(h.n(Tc),h(146)),qc=(h.n(_c),h(147)),Uc=(h.n(qc),h(148)),Fc=(h.n(Uc),h(149)),Ic=(h.n(Fc),h(150)),Wc=(h.n(Ic),h(151)),$c=(h.n(Wc),h(152)),Dc=(h.n($c),h(153)),Gc=(h.n(Dc),h(154)),Pc=(h.n(Gc),h(155)),Jc=(h.n(Pc),h(156)),Kc=(h.n(Jc),h(157)),Qc=(h.n(Kc),h(158)),Xc=(h.n(Qc),h(159)),Yc=(h.n(Xc),h(160)),Zc=(h.n(Yc),h(161)),th=(h.n(Zc),h(162)),ch=(h.n(th),h(163)),hh=(h.n(ch),h(164)),ih=(h.n(hh),h(165)),eh=(h.n(ih),h(166)),nh=(h.n(eh),h(167)),rh=(h.n(nh),h(168)),vh=(h.n(rh),h(169)),sh=(h.n(vh),h(170)),ah=(h.n(sh),h(171)),zh=(h.n(ah),h(172)),lh=(h.n(zh),h(173)),oh=(h.n(lh),h(174)),uh=(h.n(oh),h(175)),dh=(h.n(uh),h(176)),Hh=(h.n(dh),h(177)),Vh=(h.n(Hh),h(178));h.n(Vh)},function(t,c,h){"use strict";var i=h(179),e={};c["default"]={name:"octicon",props:{name:{type:String,validator:function(t){return t?t in e:null}},scale:[Number,String],spin:Boolean,inverse:Boolean,flip:{validator:function(t){return"horizontal"===t||"vertical"===t}},label:String},data:function(){return{x:!1,y:!1,childrenWidth:0,childrenHeight:0,outerScale:1}},computed:{normalizedScale:function(){var t=this.scale;return t="undefined"==typeof t?1:Number(t),isNaN(t)||t<=0?(h.i(i.a)('Invalid prop: prop "scale" should be a number over 0.',this),this.outerScale):t*this.outerScale},clazz:function(){return{octicon:!0,"octicon-spin":this.spin,"octicon-flip-horizontal":"horizontal"===this.flip,"octicon-flip-vertical":"vertical"===this.flip,"octicon-inverse":this.inverse}},icon:function(){return this.name?e[this.name]:null},box:function(){return this.icon?"0 0 "+this.icon.width+" "+this.icon.height:"0 0 "+this.width+" "+this.height},width:function(){return this.childrenWidth||this.icon&&this.icon.width*this.normalizedScale||0},height:function(){return this.childrenHeight||this.icon&&this.icon.height*this.normalizedScale||0},style:function(){return 1!==this.normalizedScale&&{fontSize:this.normalizedScale+"em"}}},mounted:function(){var t=this;if(!this.icon){this.$children.forEach(function(c){c.outerScale=t.normalizedScale});var c=0,h=0;this.$children.forEach(function(t){c=Math.max(c,t.width),h=Math.max(h,t.height)}),this.childrenWidth=c,this.childrenHeight=h,this.$children.forEach(function(t){t.x=(c-t.width)/2,t.y=(h-t.height)/2})}},register:function(t){for(var c in t)e[c]=t[c]},icons:e},t.exports=c["default"]},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({alert:{width:16,height:16,d:"M8.865 1.52c-.18-.31-.51-.5-.87-.5s-.69.19-.87.5L.275 13.5c-.18.31-.18.69 0 1 .19.31.52.5.87.5h13.7c.36 0 .69-.19.86-.5.17-.31.18-.69.01-1L8.865 1.52zM8.995 13h-2v-2h2v2zm0-3h-2V6h2v4z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"arrow-down":{width:10,height:16,d:"M7 7V3H3v4H0l5 6 5-6z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"arrow-left":{width:10,height:16,d:"M6 3L0 8l6 5v-3h4V6H6z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"arrow-right":{width:10,height:16,d:"M10 8L4 3v3H0v4h4v3z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"arrow-small-down":{width:6,height:16,d:"M4 7V5H2v2H0l3 4 3-4z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"arrow-small-left":{width:6,height:16,d:"M4 7V5L0 8l4 3V9h2V7z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"arrow-small-right":{width:6,height:16,d:"M6 8L2 5v2H0v2h2v2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"arrow-small-up":{width:6,height:16,d:"M3 5L0 9h2v2h2V9h2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"arrow-up":{width:10,height:16,d:"M5 3L0 9h3v4h4V9h3z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({beaker:{width:16,height:16,d:"M14.38 14.59L11 7V3h1V2H3v1h1v4L.63 14.59A1 1 0 0 0 1.54 16h11.94c.72 0 1.2-.75.91-1.41h-.01zM3.75 10L5 7V3h5v4l1.25 3h-7.5zM8 8h1v1H8V8zM7 7H6V6h1v1zm0-3h1v1H7V4zm0-3H6V0h1v1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({bell:{width:14,height:16,d:"M14 12v1H0v-1l.73-.58c.77-.77.81-2.55 1.19-4.42C2.69 3.23 6 2 6 2c0-.55.45-1 1-1s1 .45 1 1c0 0 3.39 1.23 4.16 5 .38 1.88.42 3.66 1.19 4.42l.66.58H14zm-7 4c1.11 0 2-.89 2-2H5c0 1.11.89 2 2 2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({bold:{width:10,height:16,d:"M1 2h3.83c2.48 0 4.3.75 4.3 2.95 0 1.14-.63 2.23-1.67 2.61v.06c1.33.3 2.3 1.23 2.3 2.86 0 2.39-1.97 3.52-4.61 3.52H1V2zm3.66 4.95c1.67 0 2.38-.66 2.38-1.69 0-1.17-.78-1.61-2.34-1.61H3.13v3.3h1.53zm.27 5.39c1.77 0 2.75-.64 2.75-1.98 0-1.27-.95-1.81-2.75-1.81h-1.8v3.8h1.8v-.01z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({book:{width:16,height:16,d:"M3 5h4v1H3V5zm0 3h4V7H3v1zm0 2h4V9H3v1zm11-5h-4v1h4V5zm0 2h-4v1h4V7zm0 2h-4v1h4V9zm2-6v9c0 .55-.45 1-1 1H9.5l-1 1-1-1H2c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h5.5l1 1 1-1H15c.55 0 1 .45 1 1zm-8 .5L7.5 3H2v9h6V3.5zm7-.5H9.5l-.5.5V12h6V3z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({bookmark:{width:10,height:16,d:"M9 0H1C.27 0 0 .27 0 1v15l5-3.09L10 16V1c0-.73-.27-1-1-1zm-.78 4.25L6.36 5.61l.72 2.16c.06.22-.02.28-.2.17L5 6.6 3.12 7.94c-.19.11-.25.05-.2-.17l.72-2.16-1.86-1.36c-.17-.16-.14-.23.09-.23l2.3-.03.7-2.16h.25l.7 2.16 2.3.03c.23 0 .27.08.09.23h.01z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({briefcase:{width:14,height:16,d:"M9 4V3c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H1c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1H9zM6 3h2v1H6V3zm7 6H8v1H6V9H1V5h1v3h10V5h1v4z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({broadcast:{width:16,height:16,d:"M9 9H8c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1H6c-.55 0-1 .45-1 1v2h1v3c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-3h1v-2c0-.55-.45-1-1-1zM7 7h1v1H7V7zm2 4H8v4H7v-4H6v-1h3v1zm2.09-3.5c0-1.98-1.61-3.59-3.59-3.59A3.593 3.593 0 0 0 4 8.31v1.98c-.61-.77-1-1.73-1-2.8 0-2.48 2.02-4.5 4.5-4.5S12 5.01 12 7.49c0 1.06-.39 2.03-1 2.8V8.31c.06-.27.09-.53.09-.81zm3.91 0c0 2.88-1.63 5.38-4 6.63v-1.05a6.553 6.553 0 0 0 3.09-5.58A6.59 6.59 0 0 0 7.5.91 6.59 6.59 0 0 0 .91 7.5c0 2.36 1.23 4.42 3.09 5.58v1.05A7.497 7.497 0 0 1 7.5 0C11.64 0 15 3.36 15 7.5z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({browser:{width:14,height:16,d:"M5 3h1v1H5V3zM3 3h1v1H3V3zM1 3h1v1H1V3zm12 10H1V5h12v8zm0-9H7V3h6v1zm1-1c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V3z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({bug:{width:16,height:16,d:"M11 10h3V9h-3V8l3.17-1.03-.34-.94L11 7V6c0-.55-.45-1-1-1V4c0-.48-.36-.88-.83-.97L10.2 2H12V1H9.8l-2 2h-.59L5.2 1H3v1h1.8l1.03 1.03C5.36 3.12 5 3.51 5 4v1c-.55 0-1 .45-1 1v1l-2.83-.97-.34.94L4 8v1H1v1h3v1L.83 12.03l.34.94L4 12v1c0 .55.45 1 1 1h1l1-1V6h1v7l1 1h1c.55 0 1-.45 1-1v-1l2.83.97.34-.94L11 11v-1zM9 5H6V4h3v1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({calendar:{width:14,height:16,d:"M13 2h-1v1.5c0 .28-.22.5-.5.5h-2c-.28 0-.5-.22-.5-.5V2H6v1.5c0 .28-.22.5-.5.5h-2c-.28 0-.5-.22-.5-.5V2H2c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h11c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm0 12H2V5h11v9zM5 3H4V1h1v2zm6 0h-1V1h1v2zM6 7H5V6h1v1zm2 0H7V6h1v1zm2 0H9V6h1v1zm2 0h-1V6h1v1zM4 9H3V8h1v1zm2 0H5V8h1v1zm2 0H7V8h1v1zm2 0H9V8h1v1zm2 0h-1V8h1v1zm-8 2H3v-1h1v1zm2 0H5v-1h1v1zm2 0H7v-1h1v1zm2 0H9v-1h1v1zm2 0h-1v-1h1v1zm-8 2H3v-1h1v1zm2 0H5v-1h1v1zm2 0H7v-1h1v1zm2 0H9v-1h1v1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({check:{width:12,height:16,d:"M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({checklist:{width:16,height:16,d:"M16 8.5l-6 6-3-3L8.5 10l1.5 1.5L14.5 7 16 8.5zM5.7 12.2l.8.8H2c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h7c.55 0 1 .45 1 1v6.5l-.8-.8c-.39-.39-1.03-.39-1.42 0L5.7 10.8a.996.996 0 0 0 0 1.41v-.01zM4 4h5V3H4v1zm0 2h5V5H4v1zm0 2h3V7H4v1zM3 9H2v1h1V9zm0-2H2v1h1V7zm0-2H2v1h1V5zm0-2H2v1h1V3z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"chevron-down":{width:10,height:16,d:"M5 11L0 6l1.5-1.5L5 8.25 8.5 4.5 10 6z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"chevron-left":{width:8,height:16,d:"M5.5 3L7 4.5 3.25 8 7 11.5 5.5 13l-5-5z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"chevron-right":{width:8,height:16,d:"M7.5 8l-5 5L1 11.5 4.75 8 1 4.5 2.5 3z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"chevron-up":{width:10,height:16,d:"M10 10l-1.5 1.5L5 7.75 1.5 11.5 0 10l5-5z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"circle-slash":{width:14,height:16,d:"M7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm0 1.3c1.3 0 2.5.44 3.47 1.17l-8 8A5.755 5.755 0 0 1 1.3 8c0-3.14 2.56-5.7 5.7-5.7zm0 11.41c-1.3 0-2.5-.44-3.47-1.17l8-8c.73.97 1.17 2.17 1.17 3.47 0 3.14-2.56 5.7-5.7 5.7z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"circuit-board":{width:14,height:16,d:"M3 5c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zm8 0c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0 6c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm2-10H5v2.17c.36.19.64.47.83.83h2.34c.42-.78 1.33-1.28 2.34-1.05.75.19 1.36.8 1.53 1.55.31 1.38-.72 2.59-2.05 2.59-.8 0-1.48-.44-1.83-1.09H5.83c-.42.8-1.33 1.28-2.34 1.03-.73-.17-1.34-.78-1.52-1.52C1.72 4.49 2.2 3.59 3 3.17V1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1l5-5h2.17c.42-.78 1.33-1.28 2.34-1.05.75.19 1.36.8 1.53 1.55.31 1.38-.72 2.59-2.05 2.59-.8 0-1.48-.44-1.83-1.09H6.99L4 15h9c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({clippy:{width:14,height:16,d:"M2 13h4v1H2v-1zm5-6H2v1h5V7zm2 3V8l-3 3 3 3v-2h5v-2H9zM4.5 9H2v1h2.5V9zM2 12h2.5v-1H2v1zm9 1h1v2c-.02.28-.11.52-.3.7-.19.18-.42.28-.7.3H1c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h3c0-1.11.89-2 2-2 1.11 0 2 .89 2 2h3c.55 0 1 .45 1 1v5h-1V6H1v9h10v-2zM2 5h8c0-.55-.45-1-1-1H8c-.55 0-1-.45-1-1s-.45-1-1-1-1 .45-1 1-.45 1-1 1H3c-.55 0-1 .45-1 1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({clock:{width:14,height:16,d:"M8 8h3v2H7c-.55 0-1-.45-1-1V4h2v4zM7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 0 1 1.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"cloud-download":{width:16,height:16,d:"M9 12h2l-3 3-3-3h2V7h2v5zm3-8c0-.44-.91-3-4.5-3C5.08 1 3 2.92 3 5 1.02 5 0 6.52 0 8c0 1.53 1 3 3 3h3V9.7H3C1.38 9.7 1.3 8.28 1.3 8c0-.17.05-1.7 1.7-1.7h1.3V5c0-1.39 1.56-2.7 3.2-2.7 2.55 0 3.13 1.55 3.2 1.8v1.2H12c.81 0 2.7.22 2.7 2.2 0 2.09-2.25 2.2-2.7 2.2h-2V11h2c2.08 0 4-1.16 4-3.5C16 5.06 14.08 4 12 4z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"cloud-upload":{width:16,height:16,d:"M7 9H5l3-3 3 3H9v5H7V9zm5-4c0-.44-.91-3-4.5-3C5.08 2 3 3.92 3 6 1.02 6 0 7.52 0 9c0 1.53 1 3 3 3h3v-1.3H3c-1.62 0-1.7-1.42-1.7-1.7 0-.17.05-1.7 1.7-1.7h1.3V6c0-1.39 1.56-2.7 3.2-2.7 2.55 0 3.13 1.55 3.2 1.8v1.2H12c.81 0 2.7.22 2.7 2.2 0 2.09-2.25 2.2-2.7 2.2h-2V12h2c2.08 0 4-1.16 4-3.5C16 6.06 14.08 5 12 5z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({code:{width:14,height:16,d:"M9.5 3L8 4.5 11.5 8 8 11.5 9.5 13 14 8 9.5 3zm-5 0L0 8l4.5 5L6 11.5 2.5 8 6 4.5 4.5 3z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"comment-discussion":{width:16,height:16,d:"M15 1H6c-.55 0-1 .45-1 1v2H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h1v3l3-3h4c.55 0 1-.45 1-1V9h1l3 3V9h1c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM9 11H4.5L3 12.5V11H1V5h4v3c0 .55.45 1 1 1h3v2zm6-3h-2v1.5L11.5 8H6V2h9v6z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({comment:{width:16,height:16,d:"M14 1H2c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h2v3.5L7.5 11H14c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 9H7l-2 2v-2H2V2h12v8z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"credit-card":{width:16,height:16,d:"M12 9H2V8h10v1zm4-6v9c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h14c.55 0 1 .45 1 1zm-1 3H1v6h14V6zm0-3H1v1h14V3zm-9 7H2v1h4v-1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({dash:{width:8,height:16,d:"M0 7v2h8V7z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({dashboard:{width:16,height:16,d:"M9 5H8V4h1v1zm4 3h-1v1h1V8zM6 5H5v1h1V5zM5 8H4v1h1V8zm11-5.5l-.5-.5L9 7c-.06-.02-1 0-1 0-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-.92l6-5.58zm-1.59 4.09c.19.61.3 1.25.3 1.91 0 3.42-2.78 6.2-6.2 6.2-3.42 0-6.21-2.78-6.21-6.2 0-3.42 2.78-6.2 6.2-6.2 1.2 0 2.31.34 3.27.94l.94-.94A7.459 7.459 0 0 0 8.51 1C4.36 1 1 4.36 1 8.5 1 12.64 4.36 16 8.5 16c4.14 0 7.5-3.36 7.5-7.5 0-1.03-.2-2.02-.59-2.91l-1 1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({database:{width:12,height:16,d:"M6 15c-3.31 0-6-.9-6-2v-2c0-.17.09-.34.21-.5.67.86 3 1.5 5.79 1.5s5.12-.64 5.79-1.5c.13.16.21.33.21.5v2c0 1.1-2.69 2-6 2zm0-4c-3.31 0-6-.9-6-2V7c0-.11.04-.21.09-.31.03-.06.07-.13.12-.19C.88 7.36 3.21 8 6 8s5.12-.64 5.79-1.5c.05.06.09.13.12.19.05.1.09.21.09.31v2c0 1.1-2.69 2-6 2zm0-4c-3.31 0-6-.9-6-2V3c0-1.1 2.69-2 6-2s6 .9 6 2v2c0 1.1-2.69 2-6 2zm0-5c-2.21 0-4 .45-4 1s1.79 1 4 1 4-.45 4-1-1.79-1-4-1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"desktop-download":{width:16,height:16,d:"M4 6h3V0h2v6h3l-4 4-4-4zm11-4h-4v1h4v8H1V3h4V2H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5.34c-.25.61-.86 1.39-2.34 2h8c-1.48-.61-2.09-1.39-2.34-2H15c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"device-camera-video":{width:16,height:16,d:"M15.2 2.09L10 5.72V3c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V9.28l5.2 3.63c.33.23.8 0 .8-.41v-10c0-.41-.47-.64-.8-.41z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"device-camera":{width:16,height:16,d:"M15 3H7c0-.55-.45-1-1-1H2c-.55 0-1 .45-1 1-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM6 5H2V4h4v1zm4.5 7C8.56 12 7 10.44 7 8.5S8.56 5 10.5 5 14 6.56 14 8.5 12.44 12 10.5 12zM13 8.5c0 1.38-1.13 2.5-2.5 2.5S8 9.87 8 8.5 9.13 6 10.5 6 13 7.13 13 8.5z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"device-desktop":{width:16,height:16,d:"M15 2H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5.34c-.25.61-.86 1.39-2.34 2h8c-1.48-.61-2.09-1.39-2.34-2H15c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm0 9H1V3h14v8z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"device-mobile":{width:10,height:16,d:"M9 0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM5 15.3c-.72 0-1.3-.58-1.3-1.3 0-.72.58-1.3 1.3-1.3.72 0 1.3.58 1.3 1.3 0 .72-.58 1.3-1.3 1.3zM9 12H1V2h8v10z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"diff-added":{width:14,height:16,d:"M13 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 13H1V2h12v12zM6 9H3V7h3V4h2v3h3v2H8v3H6V9z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"diff-ignored":{width:14,height:16,d:"M13 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 13H1V2h12v12zm-8.5-2H3v-1.5L9.5 4H11v1.5L4.5 12z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"diff-modified":{width:14,height:16,d:"M13 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 13H1V2h12v12zM4 8c0-1.66 1.34-3 3-3s3 1.34 3 3-1.34 3-3 3-3-1.34-3-3z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"diff-removed":{width:14,height:16,d:"M13 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 13H1V2h12v12zm-2-5H3V7h8v2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"diff-renamed":{width:14,height:16,d:"M6 9H3V7h3V4l5 4-5 4V9zm8-7v12c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h12c.55 0 1 .45 1 1zm-1 0H1v12h12V2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({diff:{width:13,height:16,d:"M6 7h2v1H6v2H5V8H3V7h2V5h1v2zm-3 6h5v-1H3v1zM7.5 2L11 5.5V15c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h6.5zM10 6L7 3H1v12h9V6zM8.5 0H3v1h5l4 4v8h1V4.5L8.5 0z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({ellipses:{width:12,height:16,d:"M11 5H1c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM4 9H2V7h2v2zm3 0H5V7h2v2zm3 0H8V7h2v2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({ellipsis:{width:12,height:16,d:"M11 5H1c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM4 9H2V7h2v2zm3 0H5V7h2v2zm3 0H8V7h2v2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({eye:{width:16,height:16,d:"M8.06 2C3 2 0 8 0 8s3 6 8.06 6C13 14 16 8 16 8s-3-6-7.94-6zM8 12c-2.2 0-4-1.78-4-4 0-2.2 1.8-4 4-4 2.22 0 4 1.8 4 4 0 2.22-1.78 4-4 4zm2-4c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"file-binary":{width:12,height:16,d:"M4 12h1v1H2v-1h1v-2H2V9h2v3zm8-7.5V14c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h7.5L12 4.5zM11 5L8 2H1v12h10V5zM8 4H6v1h1v2H6v1h3V7H8V4zM2 4h3v4H2V4zm1 3h1V5H3v2zm3 2h3v4H6V9zm1 3h1v-2H7v2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"file-code":{width:12,height:16,d:"M8.5 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V4.5L8.5 1zM11 14H1V2h7l3 3v9zM5 6.98L3.5 8.5 5 10l-.5 1L2 8.5 4.5 6l.5.98zM7.5 6L10 8.5 7.5 11l-.5-.98L8.5 8.5 7 7l.5-1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"file-directory":{width:14,height:16,d:"M13 4H7V3c0-.66-.31-1-1-1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zM6 4H1V3h5v1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"file-media":{width:12,height:16,d:"M6 5h2v2H6V5zm6-.5V14c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h7.5L12 4.5zM11 5L8 2H1v11l3-5 2 4 2-2 3 3V5z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"file-pdf":{width:12,height:16,d:"M8.5 1H1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V4.5L8.5 1zM1 2h4a.68.68 0 0 0-.31.2 1.08 1.08 0 0 0-.23.47 4.22 4.22 0 0 0-.09 1.47c.06.609.173 1.211.34 1.8A21.78 21.78 0 0 1 3.6 8.6c-.5 1-.8 1.66-.91 1.84a7.16 7.16 0 0 0-.69.3 4.19 4.19 0 0 0-1 .64V2zm4.42 4.8a5.65 5.65 0 0 0 1.17 2.09c.275.237.595.417.94.53-.64.09-1.23.2-1.81.33a12.22 12.22 0 0 0-1.81.59c-.587.243.22-.44.61-1.25.365-.74.67-1.51.91-2.3l-.01.01zM11 14H1.5a.74.74 0 0 1-.17 0 2.12 2.12 0 0 0 .73-.44 10.14 10.14 0 0 0 1.78-2.38c.31-.13.58-.23.81-.31l.42-.14c.45-.13.94-.23 1.44-.33s1-.16 1.48-.2a8.65 8.65 0 0 0 1.39.53c.403.11.814.188 1.23.23h.38V14H11zm0-4.86a3.74 3.74 0 0 0-.64-.28 4.22 4.22 0 0 0-.75-.11c-.411.003-.822.03-1.23.08a3 3 0 0 1-1-.64 6.07 6.07 0 0 1-1.29-2.33c.111-.661.178-1.33.2-2 .02-.25.02-.5 0-.75a1.05 1.05 0 0 0-.2-.88.82.82 0 0 0-.61-.23H8l3 3v4.14z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"file-submodule":{width:14,height:16,d:"M10 7H4v7h9c.55 0 1-.45 1-1V8h-4V7zM9 9H5V8h4v1zm4-5H7V3c0-.66-.31-1-1-1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h2V7c0-.55.45-1 1-1h6c.55 0 1 .45 1 1h3V5c0-.55-.45-1-1-1zM6 4H1V3h5v1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"file-symlink-directory":{width:14,height:16,d:"M13 4H7V3c0-.66-.31-1-1-1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zM1 3h5v1H1V3zm6 9v-2c-.98-.02-1.84.22-2.55.7-.71.48-1.19 1.25-1.45 2.3.02-1.64.39-2.88 1.13-3.73C4.86 8.43 5.82 8 7.01 8V6l4 3-4 3H7z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"file-symlink-file":{width:12,height:16,d:"M8.5 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V4.5L8.5 1zM11 14H1V2h7l3 3v9zM6 4.5l4 3-4 3v-2c-.98-.02-1.84.22-2.55.7-.71.48-1.19 1.25-1.45 2.3.02-1.64.39-2.88 1.13-3.73.73-.84 1.69-1.27 2.88-1.27v-2H6z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"file-text":{width:12,height:16,d:"M6 5H2V4h4v1zM2 8h7V7H2v1zm0 2h7V9H2v1zm0 2h7v-1H2v1zm10-7.5V14c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h7.5L12 4.5zM11 5L8 2H1v12h10V5z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"file-zip":{width:12,height:16,d:"M8.5 1H1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V4.5L8.5 1zM11 14H1V2h3v1h1V2h3l3 3v9zM5 4V3h1v1H5zM4 4h1v1H4V4zm1 2V5h1v1H5zM4 6h1v1H4V6zm1 2V7h1v1H5zM4 9.28A2 2 0 0 0 3 11v1h4v-1a2 2 0 0 0-2-2V8H4v1.28zM6 10v1H4v-1h2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({file:{width:12,height:16,d:"M6 5H2V4h4v1zM2 8h7V7H2v1zm0 2h7V9H2v1zm0 2h7v-1H2v1zm10-7.5V14c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h7.5L12 4.5zM11 5L8 2H1v12h10V5z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({flame:{width:12,height:16,d:"M5.05.31c.81 2.17.41 3.38-.52 4.31C3.55 5.67 1.98 6.45.9 7.98c-1.45 2.05-1.7 6.53 3.53 7.7-2.2-1.16-2.67-4.52-.3-6.61-.61 2.03.53 3.33 1.94 2.86 1.39-.47 2.3.53 2.27 1.67-.02.78-.31 1.44-1.13 1.81 3.42-.59 4.78-3.42 4.78-5.56 0-2.84-2.53-3.22-1.25-5.61-1.52.13-2.03 1.13-1.89 2.75.09 1.08-1.02 1.8-1.86 1.33-.67-.41-.66-1.19-.06-1.78C8.18 5.31 8.68 2.45 5.05.32L5.03.3l.02.01z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({fold:{width:14,height:16,d:"M7 9l3 3H8v3H6v-3H4l3-3zm3-6H8V0H6v3H4l3 3 3-3zm4 2c0-.55-.45-1-1-1h-2.5l-1 1h3l-2 2h-7l-2-2h3l-1-1H1c-.55 0-1 .45-1 1l2.5 2.5L0 10c0 .55.45 1 1 1h2.5l1-1h-3l2-2h7l2 2h-3l1 1H13c.55 0 1-.45 1-1l-2.5-2.5L14 5z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({gear:{width:14,height:16,d:"M14 8.77v-1.6l-1.94-.64-.45-1.09.88-1.84-1.13-1.13-1.81.91-1.09-.45-.69-1.92h-1.6l-.63 1.94-1.11.45-1.84-.88-1.13 1.13.91 1.81-.45 1.09L0 7.23v1.59l1.94.64.45 1.09-.88 1.84 1.13 1.13 1.81-.91 1.09.45.69 1.92h1.59l.63-1.94 1.11-.45 1.84.88 1.13-1.13-.92-1.81.47-1.09L14 8.75v.02zM7 11c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({gift:{width:14,height:16,d:"M13 4h-1.38c.19-.33.33-.67.36-.91.06-.67-.11-1.22-.52-1.61C11.1 1.1 10.65 1 10.1 1h-.11c-.53.02-1.11.25-1.53.58-.42.33-.73.72-.97 1.2-.23-.48-.55-.88-.97-1.2-.42-.32-1-.58-1.53-.58h-.03c-.56 0-1.06.09-1.44.48-.41.39-.58.94-.52 1.61.03.23.17.58.36.91H1.98c-.55 0-1 .45-1 1v3h1v5c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V8h1V5c0-.55-.45-1-1-1H13zm-4.78-.88c.17-.36.42-.67.75-.92.3-.23.72-.39 1.05-.41h.09c.45 0 .66.11.8.25s.33.39.3.95c-.05.19-.25.61-.5 1h-2.9l.41-.88v.01zM4.09 2.04c.13-.13.31-.25.91-.25.31 0 .72.17 1.03.41.33.25.58.55.75.92L7.2 4H4.3c-.25-.39-.45-.81-.5-1-.03-.56.16-.81.3-.95l-.01-.01zM7 12.99H3V8h4v5-.01zm0-6H2V5h5v2-.01zm5 6H8V8h4v5-.01zm1-6H8V5h5v2-.01z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"gist-secret":{width:14,height:16,d:"M8 10.5L9 14H5l1-3.5L5.25 9h3.5L8 10.5zM10 6H4L2 7h10l-2-1zM9 2L7 3 5 2 4 5h6L9 2zm4.03 7.75L10 9l1 2-2 3h3.22c.45 0 .86-.31.97-.75l.56-2.28c.14-.53-.19-1.08-.72-1.22zM4 9l-3.03.75c-.53.14-.86.69-.72 1.22l.56 2.28c.11.44.52.75.97.75H5l-2-3 1-2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({gist:{width:12,height:16,d:"M7.5 5L10 7.5 7.5 10l-.75-.75L8.5 7.5 6.75 5.75 7.5 5zm-3 0L2 7.5 4.5 10l.75-.75L3.5 7.5l1.75-1.75L4.5 5zM0 13V2c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v11c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1zm1 0h10V2H1v11z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"git-branch":{width:10,height:16,d:"M10 5c0-1.11-.89-2-2-2a1.993 1.993 0 0 0-1 3.72v.3c-.02.52-.23.98-.63 1.38-.4.4-.86.61-1.38.63-.83.02-1.48.16-2 .45V4.72a1.993 1.993 0 0 0-1-3.72C.88 1 0 1.89 0 3a2 2 0 0 0 1 1.72v6.56c-.59.35-1 .99-1 1.72 0 1.11.89 2 2 2 1.11 0 2-.89 2-2 0-.53-.2-1-.53-1.36.09-.06.48-.41.59-.47.25-.11.56-.17.94-.17 1.05-.05 1.95-.45 2.75-1.25S8.95 7.77 9 6.73h-.02C9.59 6.37 10 5.73 10 5zM2 1.8c.66 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2C1.35 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2zm0 12.41c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm6-8c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"git-commit":{width:14,height:16,d:"M10.86 7c-.45-1.72-2-3-3.86-3-1.86 0-3.41 1.28-3.86 3H0v2h3.14c.45 1.72 2 3 3.86 3 1.86 0 3.41-1.28 3.86-3H14V7h-3.14zM7 10.2c-1.22 0-2.2-.98-2.2-2.2 0-1.22.98-2.2 2.2-2.2 1.22 0 2.2.98 2.2 2.2 0 1.22-.98 2.2-2.2 2.2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"git-compare":{width:14,height:16,d:"M5 12H4c-.27-.02-.48-.11-.69-.31-.21-.2-.3-.42-.31-.69V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V11c.03.78.34 1.47.94 2.06.6.59 1.28.91 2.06.94h1v2l3-3-3-3v2zM2 1.8c.66 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2C1.35 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2zm11 9.48V5c-.03-.78-.34-1.47-.94-2.06-.6-.59-1.28-.91-2.06-.94H9V0L6 3l3 3V4h1c.27.02.48.11.69.31.21.2.3.42.31.69v6.28A1.993 1.993 0 0 0 12 15a1.993 1.993 0 0 0 1-3.72zm-1 2.92c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"git-merge":{width:12,height:16,d:"M10 7c-.73 0-1.38.41-1.73 1.02V8C7.22 7.98 6 7.64 5.14 6.98c-.75-.58-1.5-1.61-1.89-2.44A1.993 1.993 0 0 0 2 .99C.89.99 0 1.89 0 3a2 2 0 0 0 1 1.72v6.56c-.59.35-1 .99-1 1.72 0 1.11.89 2 2 2a1.993 1.993 0 0 0 1-3.72V7.67c.67.7 1.44 1.27 2.3 1.69.86.42 2.03.63 2.97.64v-.02c.36.61 1 1.02 1.73 1.02 1.11 0 2-.89 2-2 0-1.11-.89-2-2-2zm-6.8 6c0 .66-.55 1.2-1.2 1.2-.65 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm8 6c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"git-pull-request":{width:12,height:16,d:"M11 11.28V5c-.03-.78-.34-1.47-.94-2.06C9.46 2.35 8.78 2.03 8 2H7V0L4 3l3 3V4h1c.27.02.48.11.69.31.21.2.3.42.31.69v6.28A1.993 1.993 0 0 0 10 15a1.993 1.993 0 0 0 1-3.72zm-1 2.92c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zM4 3c0-1.11-.89-2-2-2a1.993 1.993 0 0 0-1 3.72v6.56A1.993 1.993 0 0 0 2 15a1.993 1.993 0 0 0 1-3.72V4.72c.59-.34 1-.98 1-1.72zm-.8 10c0 .66-.55 1.2-1.2 1.2-.65 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({globe:{width:14,height:16,d:"M7 1C3.14 1 0 4.14 0 8s3.14 7 7 7c.48 0 .94-.05 1.38-.14-.17-.08-.2-.73-.02-1.09.19-.41.81-1.45.2-1.8-.61-.35-.44-.5-.81-.91-.37-.41-.22-.47-.25-.58-.08-.34.36-.89.39-.94.02-.06.02-.27 0-.33 0-.08-.27-.22-.34-.23-.06 0-.11.11-.2.13-.09.02-.5-.25-.59-.33-.09-.08-.14-.23-.27-.34-.13-.13-.14-.03-.33-.11s-.8-.31-1.28-.48c-.48-.19-.52-.47-.52-.66-.02-.2-.3-.47-.42-.67-.14-.2-.16-.47-.2-.41-.04.06.25.78.2.81-.05.02-.16-.2-.3-.38-.14-.19.14-.09-.3-.95s.14-1.3.17-1.75c.03-.45.38.17.19-.13-.19-.3 0-.89-.14-1.11-.13-.22-.88.25-.88.25.02-.22.69-.58 1.16-.92.47-.34.78-.06 1.16.05.39.13.41.09.28-.05-.13-.13.06-.17.36-.13.28.05.38.41.83.36.47-.03.05.09.11.22s-.06.11-.38.3c-.3.2.02.22.55.61s.38-.25.31-.55c-.07-.3.39-.06.39-.06.33.22.27.02.5.08.23.06.91.64.91.64-.83.44-.31.48-.17.59.14.11-.28.3-.28.3-.17-.17-.19.02-.3.08-.11.06-.02.22-.02.22-.56.09-.44.69-.42.83 0 .14-.38.36-.47.58-.09.2.25.64.06.66-.19.03-.34-.66-1.31-.41-.3.08-.94.41-.59 1.08.36.69.92-.19 1.11-.09.19.1-.06.53-.02.55.04.02.53.02.56.61.03.59.77.53.92.55.17 0 .7-.44.77-.45.06-.03.38-.28 1.03.09.66.36.98.31 1.2.47.22.16.08.47.28.58.2.11 1.06-.03 1.28.31.22.34-.88 2.09-1.22 2.28-.34.19-.48.64-.84.92s-.81.64-1.27.91c-.41.23-.47.66-.66.8 3.14-.7 5.48-3.5 5.48-6.84 0-3.86-3.14-7-7-7L7 1zm1.64 6.56c-.09.03-.28.22-.78-.08-.48-.3-.81-.23-.86-.28 0 0-.05-.11.17-.14.44-.05.98.41 1.11.41.13 0 .19-.13.41-.05.22.08.05.13-.05.14zM6.34 1.7c-.05-.03.03-.08.09-.14.03-.03.02-.11.05-.14.11-.11.61-.25.52.03-.11.27-.58.3-.66.25zm1.23.89c-.19-.02-.58-.05-.52-.14.3-.28-.09-.38-.34-.38-.25-.02-.34-.16-.22-.19.12-.03.61.02.7.08.08.06.52.25.55.38.02.13 0 .25-.17.25zm1.47-.05c-.14.09-.83-.41-.95-.52-.56-.48-.89-.31-1-.41-.11-.1-.08-.19.11-.34.19-.15.69.06 1 .09.3.03.66.27.66.55.02.25.33.5.19.63h-.01z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({grabber:{width:8,height:16,d:"M8 4v1H0V4h8zM0 8h8V7H0v1zm0 3h8v-1H0v1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({graph:{width:16,height:16,d:"M16 14v1H0V0h1v14h15zM5 13H3V8h2v5zm4 0H7V3h2v10zm4 0h-2V6h2v7z" 2 | }})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({heart:{width:12,height:16,d:"M11.2 3c-.52-.63-1.25-.95-2.2-1-.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-.95.05-1.69.38-2.2 1-.52.61-.78 1.28-.8 2 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-.02-.72-.28-1.39-.8-2.02V3z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({history:{width:14,height:16,d:"M8 13H6V6h5v2H8v5zM7 1C4.81 1 2.87 2.02 1.59 3.59L0 2v4h4L2.5 4.5C3.55 3.17 5.17 2.3 7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 0 1 1.3 8c0-.34.03-.67.09-1H.08C.03 7.33 0 7.66 0 8c0 3.86 3.14 7 7 7s7-3.14 7-7-3.14-7-7-7z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({home:{width:16,height:16,d:"M16 9l-3-3V2h-2v2L8 1 0 9h2l1 5c0 .55.45 1 1 1h8c.55 0 1-.45 1-1l1-5h2zm-4 5H9v-4H7v4H4L2.81 7.69 8 2.5l5.19 5.19L12 14z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"horizontal-rule":{width:10,height:16,d:"M1 7h2v2h1V3H3v3H1V3H0v6h1V7zm9 2V7H9v2h1zm0-3V4H9v2h1zM7 6V4h2V3H6v6h1V7h2V6H7zm-7 7h10v-2H0v2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({hubot:{width:14,height:16,d:"M3 6c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1H3zm8 1.75L9.75 9h-1.5L7 7.75 5.75 9h-1.5L3 7.75V7h.75L5 8.25 6.25 7h1.5L9 8.25 10.25 7H11v.75zM5 11h4v1H5v-1zm2-9C3.14 2 0 4.91 0 8.5V13c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V8.5C14 4.91 10.86 2 7 2zm6 11H1V8.5c0-3.09 2.64-5.59 6-5.59s6 2.5 6 5.59V13z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({inbox:{width:14,height:16,d:"M14 9l-1.13-7.14c-.08-.48-.5-.86-1-.86H2.13c-.5 0-.92.38-1 .86L0 9v5c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V9zm-3.28.55l-.44.89c-.17.34-.52.56-.91.56H4.61c-.38 0-.72-.22-.89-.55l-.44-.91c-.17-.33-.52-.55-.89-.55H1l1-7h10l1 7h-1.38c-.39 0-.73.22-.91.55l.01.01z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({info:{width:14,height:16,d:"M6.3 5.69a.942.942 0 0 1-.28-.7c0-.28.09-.52.28-.7.19-.18.42-.28.7-.28.28 0 .52.09.7.28.18.19.28.42.28.7 0 .28-.09.52-.28.7a1 1 0 0 1-.7.3c-.28 0-.52-.11-.7-.3zM8 7.99c-.02-.25-.11-.48-.31-.69-.2-.19-.42-.3-.69-.31H6c-.27.02-.48.13-.69.31-.2.2-.3.44-.31.69h1v3c.02.27.11.5.31.69.2.2.42.31.69.31h1c.27 0 .48-.11.69-.31.2-.19.3-.42.31-.69H8V7.98v.01zM7 2.3c-3.14 0-5.7 2.54-5.7 5.68 0 3.14 2.56 5.7 5.7 5.7s5.7-2.55 5.7-5.7c0-3.15-2.56-5.69-5.7-5.69v.01zM7 .98c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.12-7-7 3.14-7 7-7z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"issue-closed":{width:16,height:16,d:"M7 10h2v2H7v-2zm2-6H7v5h2V4zm1.5 1.5l-1 1L12 9l4-4.5-1-1L12 7l-1.5-1.5zM8 13.7A5.71 5.71 0 0 1 2.3 8c0-3.14 2.56-5.7 5.7-5.7 1.83 0 3.45.88 4.5 2.2l.92-.92A6.947 6.947 0 0 0 8 1C4.14 1 1 4.14 1 8s3.14 7 7 7 7-3.14 7-7l-1.52 1.52c-.66 2.41-2.86 4.19-5.48 4.19v-.01z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"issue-opened":{width:14,height:16,d:"M7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 0 1 1.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm1 3H6v5h2V4zm0 6H6v2h2v-2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"issue-reopened":{width:14,height:16,d:"M8 9H6V4h2v5zm-2 3h2v-2H6v2zm6.33-2H10l1.5 1.5c-1.05 1.33-2.67 2.2-4.5 2.2A5.71 5.71 0 0 1 1.3 8c0-.34.03-.67.09-1H.08C.03 7.33 0 7.66 0 8c0 3.86 3.14 7 7 7 2.19 0 4.13-1.02 5.41-2.59L14 14v-4h-1.67zM1.67 6H4L2.5 4.5C3.55 3.17 5.17 2.3 7 2.3c3.14 0 5.7 2.56 5.7 5.7 0 .34-.03.67-.09 1h1.31c.05-.33.08-.66.08-1 0-3.86-3.14-7-7-7-2.19 0-4.13 1.02-5.41 2.59L0 2v4h1.67z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({italic:{width:6,height:16,d:"M2.81 5h1.98L3 14H1l1.81-9zm.36-2.7c0-.7.58-1.3 1.33-1.3.56 0 1.13.38 1.13 1.03 0 .75-.59 1.3-1.33 1.3-.58 0-1.13-.38-1.13-1.03z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({jersey:{width:14,height:16,d:"M4.5 6l-.5.5v5l.5.5h2l.5-.5v-5L6.5 6h-2zM6 11H5V7h1v4zm6.27-7.25C12.05 2.37 11.96 1.12 12 0H9.02c0 .27-.13.48-.39.69-.25.2-.63.3-1.13.3-.5 0-.88-.09-1.13-.3-.23-.2-.36-.42-.36-.69H3c.05 1.13-.03 2.38-.25 3.75C2.55 5.13 1.95 5.88 1 6v9c.02.27.11.48.31.69.2.21.42.3.69.31h11c.27-.02.48-.11.69-.31.21-.2.3-.42.31-.69V6c-.95-.13-1.53-.88-1.75-2.25h.02zM13 15H2V7c.89-.5 1.48-1.25 1.72-2.25S4.03 2.5 4 1h1c-.02.78.16 1.47.52 2.06.36.58 1.02.89 2 .94.98-.02 1.64-.33 2-.94.36-.59.5-1.28.48-2.06h1c.02 1.42.13 2.55.33 3.38.2.81.69 2 1.67 2.63v8V15zM8.5 6l-.5.5v5l.5.5h2l.5-.5v-5l-.5-.5h-2zm1.5 5H9V7h1v4z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({key:{width:14,height:16,d:"M12.83 2.17C12.08 1.42 11.14 1.03 10 1c-1.13.03-2.08.42-2.83 1.17S6.04 3.86 6.01 5c0 .3.03.59.09.89L0 12v1l1 1h2l1-1v-1h1v-1h1v-1h2l1.09-1.11c.3.08.59.11.91.11 1.14-.03 2.08-.42 2.83-1.17S13.97 6.14 14 5c-.03-1.14-.42-2.08-1.17-2.83zM11 5.38c-.77 0-1.38-.61-1.38-1.38 0-.77.61-1.38 1.38-1.38.77 0 1.38.61 1.38 1.38 0 .77-.61 1.38-1.38 1.38z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({keyboard:{width:16,height:16,d:"M10 5H9V4h1v1zM3 6H2v1h1V6zm5-2H7v1h1V4zM4 4H2v1h2V4zm8 7h2v-1h-2v1zM8 7h1V6H8v1zm-4 3H2v1h2v-1zm8-6h-1v1h1V4zm2 0h-1v1h1V4zm-2 5h2V6h-2v3zm4-6v9c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h14c.55 0 1 .45 1 1zm-1 0H1v9h14V3zM6 7h1V6H6v1zm0-3H5v1h1V4zM4 7h1V6H4v1zm1 4h6v-1H5v1zm5-4h1V6h-1v1zM3 8H2v1h1V8zm5 0v1h1V8H8zM6 8v1h1V8H6zM5 8H4v1h1V8zm5 1h1V8h-1v1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({law:{width:14,height:16,d:"M7 4c-.83 0-1.5-.67-1.5-1.5S6.17 1 7 1s1.5.67 1.5 1.5S7.83 4 7 4zm7 6c0 1.11-.89 2-2 2h-1c-1.11 0-2-.89-2-2l2-4h-1c-.55 0-1-.45-1-1H8v8c.42 0 1 .45 1 1h1c.42 0 1 .45 1 1H3c0-.55.58-1 1-1h1c0-.55.58-1 1-1h.03L6 5H5c0 .55-.45 1-1 1H3l2 4c0 1.11-.89 2-2 2H2c-1.11 0-2-.89-2-2l2-4H1V5h3c0-.55.45-1 1-1h4c.55 0 1 .45 1 1h3v1h-1l2 4zM2.5 7L1 10h3L2.5 7zM13 10l-1.5-3-1.5 3h3z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"light-bulb":{width:12,height:16,d:"M6.5 0C3.48 0 1 2.19 1 5c0 .92.55 2.25 1 3 1.34 2.25 1.78 2.78 2 4v1h5v-1c.22-1.22.66-1.75 2-4 .45-.75 1-2.08 1-3 0-2.81-2.48-5-5.5-5zm3.64 7.48c-.25.44-.47.8-.67 1.11-.86 1.41-1.25 2.06-1.45 3.23-.02.05-.02.11-.02.17H5c0-.06 0-.13-.02-.17-.2-1.17-.59-1.83-1.45-3.23-.2-.31-.42-.67-.67-1.11C2.44 6.78 2 5.65 2 5c0-2.2 2.02-4 4.5-4 1.22 0 2.36.42 3.22 1.19C10.55 2.94 11 3.94 11 5c0 .66-.44 1.78-.86 2.48zM4 14h5c-.23 1.14-1.3 2-2.5 2s-2.27-.86-2.5-2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"link-external":{width:12,height:16,d:"M11 10h1v3c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h3v1H1v10h10v-3zM6 2l2.25 2.25L5 7.5 6.5 9l3.25-3.25L12 8V2H6z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({link:{width:16,height:16,d:"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"list-ordered":{width:12,height:16,d:"M12 13c0 .59 0 1-.59 1H4.59C4 14 4 13.59 4 13c0-.59 0-1 .59-1h6.81c.59 0 .59.41.59 1H12zM4.59 4h6.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1H4.59C4 2 4 2.41 4 3c0 .59 0 1 .59 1zm6.81 3H4.59C4 7 4 7.41 4 8c0 .59 0 1 .59 1h6.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1zM2 1h-.72c-.3.19-.58.25-1.03.34V2H1v2.14H.16V5H3v-.86H2V1zm.25 8.13c-.17 0-.45.03-.66.06.53-.56 1.14-1.25 1.14-1.89C2.71 6.52 2.17 6 1.37 6c-.59 0-.97.2-1.38.64l.58.58c.19-.19.38-.38.64-.38.28 0 .48.16.48.52 0 .53-.77 1.2-1.7 2.06V10h3l-.09-.88h-.66l.01.01zm-.08 3.78v-.03c.44-.19.64-.47.64-.86 0-.7-.56-1.11-1.44-1.11-.48 0-.89.19-1.28.52l.55.64c.25-.2.44-.31.69-.31.27 0 .42.13.42.36 0 .27-.2.44-.86.44v.75c.83 0 .98.17.98.47 0 .25-.23.38-.58.38-.28 0-.56-.14-.81-.38l-.48.66c.3.36.77.56 1.41.56.83 0 1.53-.41 1.53-1.16 0-.5-.31-.81-.77-.94v.01z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"list-unordered":{width:12,height:16,d:"M2 13c0 .59 0 1-.59 1H.59C0 14 0 13.59 0 13c0-.59 0-1 .59-1h.81c.59 0 .59.41.59 1H2zm2.59-9h6.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1H4.59C4 2 4 2.41 4 3c0 .59 0 1 .59 1zM1.41 7H.59C0 7 0 7.41 0 8c0 .59 0 1 .59 1h.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1h.01zm0-5H.59C0 2 0 2.41 0 3c0 .59 0 1 .59 1h.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1h.01zm10 5H4.59C4 7 4 7.41 4 8c0 .59 0 1 .59 1h6.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1h.01zm0 5H4.59C4 12 4 12.41 4 13c0 .59 0 1 .59 1h6.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1h.01z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({location:{width:12,height:16,d:"M6 0C2.69 0 0 2.5 0 5.5 0 10.02 6 16 6 16s6-5.98 6-10.5C12 2.5 9.31 0 6 0zm0 14.55C4.14 12.52 1 8.44 1 5.5 1 3.02 3.25 1 6 1c1.34 0 2.61.48 3.56 1.36.92.86 1.44 1.97 1.44 3.14 0 2.94-3.14 7.02-5 9.05zM8 5.5c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({lock:{width:12,height:16,d:"M4 13H3v-1h1v1zm8-6v7c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h1V4c0-2.2 1.8-4 4-4s4 1.8 4 4v2h1c.55 0 1 .45 1 1zM3.8 6h4.41V4c0-1.22-.98-2.2-2.2-2.2-1.22 0-2.2.98-2.2 2.2v2H3.8zM11 7H2v7h9V7zM4 8H3v1h1V8zm0 2H3v1h1v-1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"logo-gist":{width:25,height:16,d:"M4.7 8.73h2.45v4.02c-.55.27-1.64.34-2.53.34-2.56 0-3.47-2.2-3.47-5.05 0-2.85.91-5.06 3.48-5.06 1.28 0 2.06.23 3.28.73V2.66C7.27 2.33 6.25 2 4.63 2 1.13 2 0 4.69 0 8.03c0 3.34 1.11 6.03 4.63 6.03 1.64 0 2.81-.27 3.59-.64V7.73H4.7v1zm6.39 3.72V6.06h-1.05v6.28c0 1.25.58 1.72 1.72 1.72v-.89c-.48 0-.67-.16-.67-.7v-.02zm.25-8.72c0-.44-.33-.78-.78-.78s-.77.34-.77.78.33.78.77.78.78-.34.78-.78zm4.34 5.69c-1.5-.13-1.78-.48-1.78-1.17 0-.77.33-1.34 1.88-1.34 1.05 0 1.66.16 2.27.36v-.94c-.69-.3-1.52-.39-2.25-.39-2.2 0-2.92 1.2-2.92 2.31 0 1.08.47 1.88 2.73 2.08 1.55.13 1.77.63 1.77 1.34 0 .73-.44 1.42-2.06 1.42-1.11 0-1.86-.19-2.33-.36v.94c.5.2 1.58.39 2.33.39 2.38 0 3.14-1.2 3.14-2.41 0-1.28-.53-2.03-2.75-2.23h-.03zm8.58-2.47v-.86h-2.42v-2.5l-1.08.31v2.11l-1.56.44v.48h1.56v5c0 1.53 1.19 2.13 2.5 2.13.19 0 .52-.02.69-.05v-.89c-.19.03-.41.03-.61.03-.97 0-1.5-.39-1.5-1.34V6.94h2.42v.02-.01z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"logo-github":{width:45,height:16,d:"M18.53 12.03h-.02c.009 0 .015.01.024.011h.006l-.01-.01zm.004.011c-.093.001-.327.05-.574.05-.78 0-1.05-.36-1.05-.83V8.13h1.59c.09 0 .16-.08.16-.19v-1.7c0-.09-.08-.17-.16-.17h-1.59V3.96c0-.08-.05-.13-.14-.13h-2.16c-.09 0-.14.05-.14.13v2.17s-1.09.27-1.16.28c-.08.02-.13.09-.13.17v1.36c0 .11.08.19.17.19h1.11v3.28c0 2.44 1.7 2.69 2.86 2.69.53 0 1.17-.17 1.27-.22.06-.02.09-.09.09-.16v-1.5a.177.177 0 0 0-.146-.18zm23.696-2.2c0-1.81-.73-2.05-1.5-1.97-.6.04-1.08.34-1.08.34v3.52s.49.34 1.22.36c1.03.03 1.36-.34 1.36-2.25zm2.43-.16c0 3.43-1.11 4.41-3.05 4.41-1.64 0-2.52-.83-2.52-.83s-.04.46-.09.52c-.03.06-.08.08-.14.08h-1.48c-.1 0-.19-.08-.19-.17l.02-11.11c0-.09.08-.17.17-.17h2.13c.09 0 .17.08.17.17v3.77s.82-.53 2.02-.53l-.01-.02c1.2 0 2.97.45 2.97 3.88zm-8.72-3.61H33.84c-.11 0-.17.08-.17.19v5.44s-.55.39-1.3.39-.97-.34-.97-1.09V6.25c0-.09-.08-.17-.17-.17h-2.14c-.09 0-.17.08-.17.17v5.11c0 2.2 1.23 2.75 2.92 2.75 1.39 0 2.52-.77 2.52-.77s.05.39.08.45c.02.05.09.09.16.09h1.34c.11 0 .17-.08.17-.17l.02-7.47c0-.09-.08-.17-.19-.17zm-23.7-.01h-2.13c-.09 0-.17.09-.17.2v7.34c0 .2.13.27.3.27h1.92c.2 0 .25-.09.25-.27V6.23c0-.09-.08-.17-.17-.17zm-1.05-3.38c-.77 0-1.38.61-1.38 1.38 0 .77.61 1.38 1.38 1.38.75 0 1.36-.61 1.36-1.38 0-.77-.61-1.38-1.36-1.38zm16.49-.25h-2.11c-.09 0-.17.08-.17.17v4.09h-3.31V2.6c0-.09-.08-.17-.17-.17h-2.13c-.09 0-.17.08-.17.17v11.11c0 .09.09.17.17.17h2.13c.09 0 .17-.08.17-.17V8.96h3.31l-.02 4.75c0 .09.08.17.17.17h2.13c.09 0 .17-.08.17-.17V2.6c0-.09-.08-.17-.17-.17zM8.81 7.35v5.74c0 .04-.01.11-.06.13 0 0-1.25.89-3.31.89-2.49 0-5.44-.78-5.44-5.92S2.58 1.99 5.1 2c2.18 0 3.06.49 3.2.58.04.05.06.09.06.14L7.94 4.5c0 .09-.09.2-.2.17-.36-.11-.9-.33-2.17-.33-1.47 0-3.05.42-3.05 3.73s1.5 3.7 2.58 3.7c.92 0 1.25-.11 1.25-.11v-2.3H4.88c-.11 0-.19-.08-.19-.17V7.35c0-.09.08-.17.19-.17h3.74c.11 0 .19.08.19.17z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"mail-read":{width:14,height:16,d:"M6 5H4V4h2v1zm3 1H4v1h5V6zm5-.48V14c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V5.52c0-.33.16-.63.42-.81L2 3.58V3c0-.55.45-1 1-1h1.2L7 0l2.8 2H11c.55 0 1 .45 1 1v.58l1.58 1.13c.27.19.42.48.42.81zM3 7.5L7 10l4-2.5V3H3v4.5zm-2 6l4.5-3-4.5-3v6zm11 .5l-5-3-5 3h10zm1-6.5l-4.5 3 4.5 3v-6z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"mail-reply":{width:12,height:16,d:"M6 2.5L0 7l6 4.5v-3c1.73 0 5.14.95 6 4.38 0-4.55-3.06-7.05-6-7.38v-3z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({mail:{width:14,height:16,d:"M0 4v8c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1zm13 0L7 9 1 4h12zM1 5.5l4 3-4 3v-6zM2 12l3.5-3L7 10.5 8.5 9l3.5 3H2zm11-.5l-4-3 4-3v6z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"mark-github":{width:16,height:16,d:"M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({markdown:{width:16,height:16,d:"M14.85 3H1.15C.52 3 0 3.52 0 4.15v7.69C0 12.48.52 13 1.15 13h13.69c.64 0 1.15-.52 1.15-1.15v-7.7C16 3.52 15.48 3 14.85 3zM9 11H7V8L5.5 9.92 4 8v3H2V5h2l1.5 2L7 5h2v6zm2.99.5L9.5 8H11V5h2v3h1.5l-2.51 3.5z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({megaphone:{width:16,height:16,d:"M10 1c-.17 0-.36.05-.52.14C8.04 2.02 4.5 4.58 3 5c-1.38 0-3 .67-3 2.5S1.63 10 3 10c.3.08.64.23 1 .41V15h2v-3.45c1.34.86 2.69 1.83 3.48 2.31.16.09.34.14.52.14.52 0 1-.42 1-1V2c0-.58-.48-1-1-1zm0 12c-.38-.23-.89-.58-1.5-1-.16-.11-.33-.22-.5-.34V3.31c.16-.11.31-.2.47-.31.61-.41 1.16-.77 1.53-1v11zm2-6h4v1h-4V7zm0 2l4 2v1l-4-2V9zm4-6v1l-4 2V5l4-2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({mention:{width:14,height:16,d:"M6.58 15c1.25 0 2.52-.31 3.56-.94l-.42-.94c-.84.52-1.89.83-3.03.83-3.23 0-5.64-2.08-5.64-5.72 0-4.37 3.23-7.18 6.58-7.18 3.45 0 5.22 2.19 5.22 5.2 0 2.39-1.34 3.86-2.5 3.86-1.05 0-1.36-.73-1.05-2.19l.73-3.75H8.98l-.11.72c-.41-.63-.94-.83-1.56-.83-2.19 0-3.66 2.39-3.66 4.38 0 1.67.94 2.61 2.3 2.61.84 0 1.67-.53 2.3-1.25.11.94.94 1.45 1.98 1.45 1.67 0 3.77-1.67 3.77-5C14 2.61 11.59 0 7.83 0 3.66 0 0 3.33 0 8.33 0 12.71 2.92 15 6.58 15zm-.31-5c-.73 0-1.36-.52-1.36-1.67 0-1.45.94-3.22 2.41-3.22.52 0 .84.2 1.25.83l-.52 3.02c-.63.73-1.25 1.05-1.78 1.05V10z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({milestone:{width:14,height:16,d:"M8 2H6V0h2v2zm4 5H2c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h10l2 2-2 2zM8 4H6v2h2V4zM6 16h2V8H6v8z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({mirror:{width:16,height:16,d:"M15.5 4.7L8.5 0l-7 4.7c-.3.19-.5.45-.5.8V16l7.5-4 7.5 4V5.5c0-.34-.2-.61-.5-.8zm-.5 9.8l-6-3.25V10H8v1.25L2 14.5v-9l6-4V6h1V1.5l6 4v9zM6 7h5V5l3 3-3 3V9H6v2L3 8l3-3v2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"mortar-board":{width:16,height:16,d:"M7.83 9.19L4 8c-4-8 0 1.5 0 2.5S5.8 12 8 12s4-.5 4-1.5V8L8.17 9.19a.73.73 0 0 1-.36 0h.02zm.28-6.39a.34.34 0 0 0-.2 0L.27 5.18a.35.35 0 0 0 0 .67L2 6.4v1.77c-.3.17-.5.5-.5.86 0 .19.05.36.14.5-.08.14-.14.31-.14.5v2.58c0 .55 2 .55 2 0v-2.58c0-.19-.05-.36-.14-.5.08-.14.14-.31.14-.5 0-.38-.2-.69-.5-.86V6.72l4.89 1.53c.06.02.14.02.2 0l7.64-2.38a.35.35 0 0 0 0-.67L8.1 2.81l.01-.01zM8.02 6c-.55 0-1-.22-1-.5s.45-.5 1-.5 1 .22 1 .5-.45.5-1 .5z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({mute:{width:16,height:16,d:"M8 2.81v10.38c0 .67-.81 1-1.28.53L3 10H1c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h2l3.72-3.72C7.19 1.81 8 2.14 8 2.81zm7.53 3.22l-1.06-1.06-1.97 1.97-1.97-1.97-1.06 1.06L11.44 8 9.47 9.97l1.06 1.06 1.97-1.97 1.97 1.97 1.06-1.06L13.56 8l1.97-1.97z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"no-newline":{width:16,height:16,d:"M16 5v3c0 .55-.45 1-1 1h-3v2L9 8l3-3v2h2V5h2zM8 8c0 2.2-1.8 4-4 4s-4-1.8-4-4 1.8-4 4-4 4 1.8 4 4zM1.5 9.66L5.66 5.5C5.18 5.19 4.61 5 4 5 2.34 5 1 6.34 1 8c0 .61.19 1.17.5 1.66zM7 8c0-.61-.19-1.17-.5-1.66L2.34 10.5c.48.31 1.05.5 1.66.5 1.66 0 3-1.34 3-3z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({note:{width:14,height:16,d:"M3 10h4V9H3v1zm0-2h6V7H3v1zm0-2h8V5H3v1zm10 6H1V3h12v9zM1 2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1H1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({octoface:{width:16,height:16,d:"M14.7 5.34c.13-.32.55-1.59-.13-3.31 0 0-1.05-.33-3.44 1.3-1-.28-2.07-.32-3.13-.32s-2.13.04-3.13.32c-2.39-1.64-3.44-1.3-3.44-1.3-.68 1.72-.26 2.99-.13 3.31C.49 6.21 0 7.33 0 8.69 0 13.84 3.33 15 7.98 15S16 13.84 16 8.69c0-1.36-.49-2.48-1.3-3.35zM8 14.02c-3.3 0-5.98-.15-5.98-3.35 0-.76.38-1.48 1.02-2.07 1.07-.98 2.9-.46 4.96-.46 2.07 0 3.88-.52 4.96.46.65.59 1.02 1.3 1.02 2.07 0 3.19-2.68 3.35-5.98 3.35zM5.49 9.01c-.66 0-1.2.8-1.2 1.78s.54 1.79 1.2 1.79c.66 0 1.2-.8 1.2-1.79s-.54-1.78-1.2-1.78zm5.02 0c-.66 0-1.2.79-1.2 1.78s.54 1.79 1.2 1.79c.66 0 1.2-.8 1.2-1.79s-.53-1.78-1.2-1.78z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({organization:{width:16,height:16,d:"M16 12.999c0 .439-.45 1-1 1H7.995c-.539 0-.994-.447-.995-.999H1c-.54 0-1-.561-1-1 0-2.634 3-4 3-4s.229-.409 0-1c-.841-.621-1.058-.59-1-3 .058-2.419 1.367-3 2.5-3s2.442.58 2.5 3c.058 2.41-.159 2.379-1 3-.229.59 0 1 0 1s1.549.711 2.42 2.088C9.196 9.369 10 8.999 10 8.999s.229-.409 0-1c-.841-.62-1.058-.59-1-3 .058-2.419 1.367-3 2.5-3s2.437.581 2.495 3c.059 2.41-.158 2.38-1 3-.229.59 0 1 0 1s3.005 1.366 3.005 4"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"package":{width:16,height:16,d:"M1 4.27v7.47c0 .45.3.84.75.97l6.5 1.73c.16.05.34.05.5 0l6.5-1.73c.45-.13.75-.52.75-.97V4.27c0-.45-.3-.84-.75-.97l-6.5-1.74a1.4 1.4 0 0 0-.5 0L1.75 3.3c-.45.13-.75.52-.75.97zm7 9.09l-6-1.59V5l6 1.61v6.75zM2 4l2.5-.67L11 5.06l-2.5.67L2 4zm13 7.77l-6 1.59V6.61l2-.55V8.5l2-.53V5.53L15 5v6.77zm-2-7.24L6.5 2.8l2-.53L15 4l-2 .53z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({paintcan:{width:12,height:16,d:"M6 0C2.69 0 0 2.69 0 6v1c0 .55.45 1 1 1v5c0 1.1 2.24 2 5 2s5-.9 5-2V8c.55 0 1-.45 1-1V6c0-3.31-2.69-6-6-6zm3 10v.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5V10c0-.28-.22-.5-.5-.5s-.5.22-.5.5v2.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-2c0-.28-.22-.5-.5-.5s-.5.22-.5.5v.5c0 .55-.45 1-1 1s-1-.45-1-1v-1c-.55 0-1-.45-1-1V7.2c.91.49 2.36.8 4 .8 1.64 0 3.09-.31 4-.8V9c0 .55-.45 1-1 1zM6 7c-1.68 0-3.12-.41-3.71-1C2.88 5.41 4.32 5 6 5c1.68 0 3.12.41 3.71 1-.59.59-2.03 1-3.71 1zm0-3c-2.76 0-5 .89-5 2 0-2.76 2.24-5 5-5s5 2.24 5 5c0-1.1-2.24-2-5-2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({pencil:{width:14,height:16,d:"M0 12v3h3l8-8-3-3-8 8zm3 2H1v-2h1v1h1v1zm10.3-9.3L12 6 9 3l1.3-1.3a.996.996 0 0 1 1.41 0l1.59 1.59c.39.39.39 1.02 0 1.41z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({person:{width:12,height:16,d:"M12 14.002a.998.998 0 0 1-.998.998H1.001A1 1 0 0 1 0 13.999V13c0-2.633 4-4 4-4s.229-.409 0-1c-.841-.62-.944-1.59-1-4 .173-2.413 1.867-3 3-3s2.827.586 3 3c-.056 2.41-.159 3.38-1 4-.229.59 0 1 0 1s4 1.367 4 4v1.002z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({pin:{width:16,height:16,d:"M10 1.2V2l.5 1L6 6H2.2c-.44 0-.67.53-.34.86L5 10l-4 5 5-4 3.14 3.14a.5.5 0 0 0 .86-.34V10l3-4.5 1 .5h.8c.44 0 .67-.53.34-.86L10.86.86a.5.5 0 0 0-.86.34z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({plug:{width:14,height:16,d:"M14 6V5h-4V3H8v1H6c-1.03 0-1.77.81-2 2L3 7c-1.66 0-3 1.34-3 3v2h1v-2c0-1.11.89-2 2-2l1 1c.25 1.16.98 2 2 2h2v1h2v-2h4V9h-4V6h4z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"plus-small":{width:7,height:16,d:"M4 7V4H3v3H0v1h3v3h1V8h3V7H4z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({plus:{width:12,height:16,d:"M12 9H7v5H5V9H0V7h5V2h2v5h5z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"primitive-dot":{width:8,height:16,d:"M0 8c0-2.2 1.8-4 4-4s4 1.8 4 4-1.8 4-4 4-4-1.8-4-4z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"primitive-square":{width:8,height:16,d:"M8 12H0V4h8z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({project:{width:15,height:16,d:"M10 12h3V2h-3v10zm-4-2h3V2H6v8zm-4 4h3V2H2v12zm-1 1h13V1H1v14zM14 0H1a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h13a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({pulse:{width:14,height:16,d:"M11.5 8L8.8 5.4 6.6 8.5 5.5 1.6 2.38 8H0v2h3.6l.9-1.8.9 5.4L9 8.5l1.6 1.5H14V8z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({question:{width:14,height:16,d:"M6 10h2v2H6v-2zm4-3.5C10 8.64 8 9 8 9H6c0-.55.45-1 1-1h.5c.28 0 .5-.22.5-.5v-1c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5V7H4c0-1.5 1.5-3 3-3s3 1 3 2.5zM7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 0 1 1.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({quote:{width:14,height:16,d:"M6.16 3.5C3.73 5.06 2.55 6.67 2.55 9.36c.16-.05.3-.05.44-.05 1.27 0 2.5.86 2.5 2.41 0 1.61-1.03 2.61-2.5 2.61-1.9 0-2.99-1.52-2.99-4.25 0-3.8 1.75-6.53 5.02-8.42L6.16 3.5zm7 0c-2.43 1.56-3.61 3.17-3.61 5.86.16-.05.3-.05.44-.05 1.27 0 2.5.86 2.5 2.41 0 1.61-1.03 2.61-2.5 2.61-1.89 0-2.98-1.52-2.98-4.25 0-3.8 1.75-6.53 5.02-8.42l1.14 1.84h-.01z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"radio-tower":{width:16,height:16,d:"M4.79 6.11c.25-.25.25-.67 0-.92-.32-.33-.48-.76-.48-1.19 0-.43.16-.86.48-1.19.25-.26.25-.67 0-.92a.613.613 0 0 0-.45-.19c-.16 0-.33.06-.45.19-.57.58-.85 1.35-.85 2.11 0 .76.29 1.53.85 2.11.25.25.66.25.9 0zM2.33.52a.651.651 0 0 0-.92 0C.48 1.48.01 2.74.01 3.99c0 1.26.47 2.52 1.4 3.48.25.26.66.26.91 0s.25-.68 0-.94c-.68-.7-1.02-1.62-1.02-2.54 0-.92.34-1.84 1.02-2.54a.66.66 0 0 0 .01-.93zm5.69 5.1A1.62 1.62 0 1 0 6.4 4c-.01.89.72 1.62 1.62 1.62zM14.59.53a.628.628 0 0 0-.91 0c-.25.26-.25.68 0 .94.68.7 1.02 1.62 1.02 2.54 0 .92-.34 1.83-1.02 2.54-.25.26-.25.68 0 .94a.651.651 0 0 0 .92 0c.93-.96 1.4-2.22 1.4-3.48A5.048 5.048 0 0 0 14.59.53zM8.02 6.92c-.41 0-.83-.1-1.2-.3l-3.15 8.37h1.49l.86-1h4l.84 1h1.49L9.21 6.62c-.38.2-.78.3-1.19.3zm-.01.48L9.02 11h-2l.99-3.6zm-1.99 5.59l1-1h2l1 1h-4zm5.19-11.1c-.25.25-.25.67 0 .92.32.33.48.76.48 1.19 0 .43-.16.86-.48 1.19-.25.26-.25.67 0 .92a.63.63 0 0 0 .9 0c.57-.58.85-1.35.85-2.11 0-.76-.28-1.53-.85-2.11a.634.634 0 0 0-.9 0z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({reply:{width:14,height:16,d:"M6 3.5c3.92.44 8 3.125 8 10-2.312-5.062-4.75-6-8-6V11L.5 5.5 6 0v3.5z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"repo-clone":{width:16,height:16,d:"M15 0H9v7c0 .55.45 1 1 1h1v1h1V8h3c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-4 7h-1V6h1v1zm4 0h-3V6h3v1zm0-2h-4V1h4v4zM4 5H3V4h1v1zm0-2H3V2h1v1zM2 1h6V0H1C.45 0 0 .45 0 1v12c0 .55.45 1 1 1h2v2l1.5-1.5L6 16v-2h5c.55 0 1-.45 1-1v-3H2V1zm9 10v2H6v-1H3v1H1v-2h10zM3 8h1v1H3V8zm1-1H3V6h1v1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"repo-force-push":{width:12,height:16,d:"M10 9H8v7H6V9H4l2.25-3H4l3-4 3 4H7.75L10 9zm1-9H1C.45 0 0 .45 0 1v12c0 .55.45 1 1 1h4v-1H1v-2h4v-1H2V1h9v9H9v1h2v2H9v1h2c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"repo-forked":{width:10,height:16,d:"M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"repo-pull":{width:16,height:16,d:"M13 8V6H7V4h6V2l3 3-3 3zM4 2H3v1h1V2zm7 5h1v6c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v2h-1V1H2v9h9V7zm0 4H1v2h2v-1h3v1h5v-2zM4 6H3v1h1V6zm0-2H3v1h1V4zM3 9h1V8H3v1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"repo-push":{width:12,height:16,d:"M4 3H3V2h1v1zM3 5h1V4H3v1zm4 0L4 9h2v7h2V9h2L7 5zm4-5H1C.45 0 0 .45 0 1v12c0 .55.45 1 1 1h4v-1H1v-2h4v-1H2V1h9.02L11 10H9v1h2v2H9v1h2c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({repo:{width:12,height:16,d:"M4 9H3V8h1v1zm0-3H3v1h1V6zm0-2H3v1h1V4zm0-2H3v1h1V2zm8-1v12c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1zm-1 10H1v2h2v-1h3v1h5v-2zm0-10H2v9h9V1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({rocket:{width:16,height:16,d:"M12.17 3.83c-.27-.27-.47-.55-.63-.88-.16-.31-.27-.66-.34-1.02-.58.33-1.16.7-1.73 1.13-.58.44-1.14.94-1.69 1.48-.7.7-1.33 1.81-1.78 2.45H3L0 10h3l2-2c-.34.77-1.02 2.98-1 3l1 1c.02.02 2.23-.64 3-1l-2 2v3l3-3v-3c.64-.45 1.75-1.09 2.45-1.78.55-.55 1.05-1.13 1.47-1.7.44-.58.81-1.16 1.14-1.72-.36-.08-.7-.19-1.03-.34a3.39 3.39 0 0 1-.86-.63M16 0s-.09.38-.3 1.06c-.2.7-.55 1.58-1.06 2.66-.7-.08-1.27-.33-1.66-.72-.39-.39-.63-.94-.7-1.64C13.36.84 14.23.48 14.92.28 15.62.08 16 0 16 0"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({rss:{width:10,height:16,d:"M2 13H0v-2c1.11 0 2 .89 2 2zM0 3v1a9 9 0 0 1 9 9h1C10 7.48 5.52 3 0 3zm0 4v1c2.75 0 5 2.25 5 5h1c0-3.31-2.69-6-6-6z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({ruby:{width:16,height:16,d:"M13 6l-5 5V4h3l2 2zm3 0l-8 8-8-8 4-4h8l4 4zm-8 6.5L14.5 6l-3-3h-7l-3 3L8 12.5z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"screen-full":{width:14,height:16,d:"M13 10h1v3c0 .547-.453 1-1 1h-3v-1h3v-3zM1 10H0v3c0 .547.453 1 1 1h3v-1H1v-3zm0-7h3V2H1c-.547 0-1 .453-1 1v3h1V3zm1 1h10v8H2V4zm2 6h6V6H4v4zm6-8v1h3v3h1V3c0-.547-.453-1-1-1h-3z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"screen-normal":{width:14,height:16,d:"M2 4H0V3h2V1h1v2c0 .547-.453 1-1 1zm0 8H0v1h2v2h1v-2c0-.547-.453-1-1-1zm9-2c0 .547-.453 1-1 1H4c-.547 0-1-.453-1-1V6c0-.547.453-1 1-1h6c.547 0 1 .453 1 1v4zM9 7H5v2h4V7zm2 6v2h1v-2h2v-1h-2c-.547 0-1 .453-1 1zm1-10V1h-1v2c0 .547.453 1 1 1h2V3h-2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({search:{width:16,height:16,d:"M15.7 13.3l-3.81-3.83A5.93 5.93 0 0 0 13 6c0-3.31-2.69-6-6-6S1 2.69 1 6s2.69 6 6 6c1.3 0 2.48-.41 3.47-1.11l3.83 3.81c.19.2.45.3.7.3.25 0 .52-.09.7-.3a.996.996 0 0 0 0-1.41v.01zM7 10.7c-2.59 0-4.7-2.11-4.7-4.7 0-2.59 2.11-4.7 4.7-4.7 2.59 0 4.7 2.11 4.7 4.7 0 2.59-2.11 4.7-4.7 4.7z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({server:{width:12,height:16,d:"M11 6H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1zM2 9H1V7h1v2zm2 0H3V7h1v2zm2 0H5V7h1v2zm2 0H7V7h1v2zm3-8H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM2 4H1V2h1v2zm2 0H3V2h1v2zm2 0H5V2h1v2zm2 0H7V2h1v2zm3-1h-1V2h1v1zm0 8H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm-9 3H1v-2h1v2zm2 0H3v-2h1v2zm2 0H5v-2h1v2zm2 0H7v-2h1v2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({settings:{width:16,height:16,d:"M4 7H3V2h1v5zm-1 7h1v-3H3v3zm5 0h1V8H8v6zm5 0h1v-2h-1v2zm1-12h-1v6h1V2zM9 2H8v2h1V2zM5 8H2c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm5-3H7c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm5 4h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({shield:{width:14,height:16,d:"M7 0L0 2v6.02C0 12.69 5.31 16 7 16c1.69 0 7-3.31 7-7.98V2L7 0zM5 11l1.14-2.8a.568.568 0 0 0-.25-.59C5.33 7.25 5 6.66 5 6c0-1.09.89-2 1.98-2C8.06 4 9 4.91 9 6c0 .66-.33 1.25-.89 1.61-.19.13-.3.36-.25.59L9 11H5z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"sign-in":{width:14,height:16,d:"M7 6.75V12h4V8h1v4c0 .55-.45 1-1 1H7v3l-5.45-2.72c-.33-.17-.55-.52-.55-.91V1c0-.55.45-1 1-1h9c.55 0 1 .45 1 1v3h-1V1H3l4 2v2.25L10 3v2h4v2h-4v2L7 6.75z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"sign-out":{width:16,height:16,d:"M12 9V7H8V5h4V3l4 3-4 3zm-2 3H6V3L2 1h8v3h1V1c0-.55-.45-1-1-1H1C.45 0 0 .45 0 1v11.38c0 .39.22.73.55.91L6 16.01V13h4c.55 0 1-.45 1-1V8h-1v4z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({smiley:{width:16,height:16,d:"M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.81 12.81a6.72 6.72 0 0 1-2.17 1.45c-.83.36-1.72.53-2.64.53-.92 0-1.81-.17-2.64-.53-.81-.34-1.55-.83-2.17-1.45a6.773 6.773 0 0 1-1.45-2.17A6.59 6.59 0 0 1 1.21 8c0-.92.17-1.81.53-2.64.34-.81.83-1.55 1.45-2.17.62-.62 1.36-1.11 2.17-1.45A6.59 6.59 0 0 1 8 1.21c.92 0 1.81.17 2.64.53.81.34 1.55.83 2.17 1.45.62.62 1.11 1.36 1.45 2.17.36.83.53 1.72.53 2.64 0 .92-.17 1.81-.53 2.64-.34.81-.83 1.55-1.45 2.17zM4 6.8v-.59c0-.66.53-1.19 1.2-1.19h.59c.66 0 1.19.53 1.19 1.19v.59c0 .67-.53 1.2-1.19 1.2H5.2C4.53 8 4 7.47 4 6.8zm5 0v-.59c0-.66.53-1.19 1.2-1.19h.59c.66 0 1.19.53 1.19 1.19v.59c0 .67-.53 1.2-1.19 1.2h-.59C9.53 8 9 7.47 9 6.8zm4 3.2c-.72 1.88-2.91 3-5 3s-4.28-1.13-5-3c-.14-.39.23-1 .66-1h8.59c.41 0 .89.61.75 1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({squirrel:{width:16,height:16,d:"M12 1C9.79 1 8 2.31 8 3.92c0 1.94.5 3.03 0 6.08 0-4.5-2.77-6.34-4-6.34.05-.5-.48-.66-.48-.66s-.22.11-.3.34c-.27-.31-.56-.27-.56-.27l-.13.58S.7 4.29.68 6.87c.2.33 1.53.6 2.47.43.89.05.67.79.47.99C2.78 9.13 2 8 1 8S0 9 1 9s1 1 3 1c-3.09 1.2 0 4 0 4H3c-1 0-1 1-1 1h6c3 0 5-1 5-3.47 0-.85-.43-1.79-1-2.53-1.11-1.46.23-2.68 1-2 .77.68 3 1 3-2 0-2.21-1.79-4-4-4zM2.5 6c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({star:{width:14,height:16,d:"M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({stop:{width:14,height:16,d:"M10 1H4L0 5v6l4 4h6l4-4V5l-4-4zm3 9.5L9.5 14h-5L1 10.5v-5L4.5 2h5L13 5.5v5zM6 4h2v5H6V4zm0 6h2v2H6v-2z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({sync:{width:12,height:16,d:"M10.24 7.4a4.15 4.15 0 0 1-1.2 3.6 4.346 4.346 0 0 1-5.41.54L4.8 10.4.5 9.8l.6 4.2 1.31-1.26c2.36 1.74 5.7 1.57 7.84-.54a5.876 5.876 0 0 0 1.74-4.46l-1.75-.34zM2.96 5a4.346 4.346 0 0 1 5.41-.54L7.2 5.6l4.3.6-.6-4.2-1.31 1.26c-2.36-1.74-5.7-1.57-7.85.54C.5 5.03-.06 6.65.01 8.26l1.75.35A4.17 4.17 0 0 1 2.96 5z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({tag:{width:14,height:16,d:"M7.73 1.73C7.26 1.26 6.62 1 5.96 1H3.5C2.13 1 1 2.13 1 3.5v2.47c0 .66.27 1.3.73 1.77l6.06 6.06c.39.39 1.02.39 1.41 0l4.59-4.59a.996.996 0 0 0 0-1.41L7.73 1.73zM2.38 7.09c-.31-.3-.47-.7-.47-1.13V3.5c0-.88.72-1.59 1.59-1.59h2.47c.42 0 .83.16 1.13.47l6.14 6.13-4.73 4.73-6.13-6.15zM3.01 3h2v2H3V3h.01z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({tasklist:{width:16,height:16,d:"M15.41 9H7.59C7 9 7 8.59 7 8c0-.59 0-1 .59-1h7.81c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zM9.59 4C9 4 9 3.59 9 3c0-.59 0-1 .59-1h5.81c.59 0 .59.41.59 1 0 .59 0 1-.59 1H9.59zM0 3.91l1.41-1.3L3 4.2 7.09 0 8.5 1.41 3 6.91l-3-3zM7.59 12h7.81c.59 0 .59.41.59 1 0 .59 0 1-.59 1H7.59C7 14 7 13.59 7 13c0-.59 0-1 .59-1z" 3 | }})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({telescope:{width:14,height:16,d:"M8 9l3 6h-1l-2-4v5H7v-6l-2 5H4l2-5 2-1zM7 0H6v1h1V0zM5 3H4v1h1V3zM2 1H1v1h1V1zM.63 9a.52.52 0 0 0-.16.67l.55.92c.13.23.41.31.64.2l1.39-.66-1.16-2-1.27.86.01.01zm7.89-5.39l-5.8 3.95L3.95 9.7l6.33-3.03-1.77-3.06h.01zm4.22 1.28l-1.47-2.52a.51.51 0 0 0-.72-.17l-1.2.83 1.84 3.2 1.33-.64c.27-.13.36-.44.22-.7z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({terminal:{width:14,height:16,d:"M7 10h4v1H7v-1zm-3 1l3-3-3-3-.75.75L5.5 8l-2.25 2.25L4 11zm10-8v10c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h12c.55 0 1 .45 1 1zm-1 0H1v10h12V3z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"text-size":{width:18,height:16,d:"M13.62 9.08L12.1 3.66h-.06l-1.5 5.42h3.08zM5.7 10.13S4.68 6.52 4.53 6.02h-.08l-1.13 4.11H5.7zM17.31 14h-2.25l-.95-3.25h-4.07L9.09 14H6.84l-.69-2.33H2.87L2.17 14H0l3.3-9.59h2.5l2.17 6.34L10.86 2h2.52l3.94 12h-.01z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"three-bars":{width:12,height:16,d:"M11.41 9H.59C0 9 0 8.59 0 8c0-.59 0-1 .59-1H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zm0-4H.59C0 5 0 4.59 0 4c0-.59 0-1 .59-1H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zM.59 11H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1H.59C0 13 0 12.59 0 12c0-.59 0-1 .59-1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({thumbsdown:{width:16,height:16,d:"M15.98 7.83l-.97-5.95C14.84.5 13.13 0 12 0H5.69c-.2 0-.38.05-.53.14L3.72 1H2C.94 1 0 1.94 0 3v4c0 1.06.94 2.02 2 2h2c.91 0 1.39.45 2.39 1.55.91 1 .88 1.8.63 3.27-.08.5.06 1 .42 1.42.39.47.98.77 1.56.77 1.83 0 3-3.72 3-5.02l-.02-.98h2.04c1.16 0 1.95-.8 1.98-1.97 0-.06.02-.13-.02-.2v-.01zm-1.97 1.19h-1.99c-.7 0-1.03.28-1.03.97l.03 1.03c0 1.27-1.17 4-2 4-.5 0-1.08-.5-1-1 .25-1.58.34-2.78-.89-4.14C6.11 8.75 5.36 8 4 8V2l1.67-1H12c.73 0 1.95.31 2 1l.02.02 1 6c-.03.64-.38 1-1 1h-.01z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({thumbsup:{width:16,height:16,d:"M14 14c-.05.69-1.27 1-2 1H5.67L4 14V8c1.36 0 2.11-.75 3.13-1.88 1.23-1.36 1.14-2.56.88-4.13-.08-.5.5-1 1-1 .83 0 2 2.73 2 4l-.02 1.03c0 .69.33.97 1.02.97h2c.63 0 .98.36 1 1l-1 6L14 14zm0-8h-2.02l.02-.98C12 3.72 10.83 0 9 0c-.58 0-1.17.3-1.56.77-.36.41-.5.91-.42 1.41.25 1.48.28 2.28-.63 3.28-1 1.09-1.48 1.55-2.39 1.55H2C.94 7 0 7.94 0 9v4c0 1.06.94 2 2 2h1.72l1.44.86c.16.09.33.14.52.14h6.33c1.13 0 2.84-.5 3-1.88l.98-5.95c.02-.08.02-.14.02-.2-.03-1.17-.84-1.97-2-1.97H14z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({tools:{width:16,height:16,d:"M4.48 7.27c.26.26 1.28 1.33 1.28 1.33l.56-.58-.88-.91 1.69-1.8s-.76-.74-.43-.45c.32-1.19.03-2.51-.87-3.44C4.93.5 3.66.2 2.52.51l1.93 2-.51 1.96-1.89.52-1.93-2C-.19 4.17.1 5.48 1 6.4c.94.98 2.29 1.26 3.48.87zm6.44 1.94l-2.33 2.3 3.84 3.98c.31.33.73.49 1.14.49.41 0 .82-.16 1.14-.49.63-.65.63-1.7 0-2.35l-3.79-3.93zM16 2.53L13.55 0 6.33 7.46l.88.91-4.31 4.46-.99.53-1.39 2.27.35.37 2.2-1.44.51-1.02L7.9 9.08l.88.91L16 2.53z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({trashcan:{width:12,height:16,d:"M11 2H9c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1H2c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1v9c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-1 12H3V5h1v8h1V5h1v8h1V5h1v8h1V5h1v9zm1-10H2V3h9v1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"triangle-down":{width:12,height:16,d:"M0 5l6 6 6-6z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"triangle-left":{width:6,height:16,d:"M6 2L0 8l6 6z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"triangle-right":{width:6,height:16,d:"M0 14l6-6-6-6z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({"triangle-up":{width:12,height:16,d:"M12 11L6 5l-6 6z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({unfold:{width:14,height:16,d:"M11.5 7.5L14 10c0 .55-.45 1-1 1H9v-1h3.5l-2-2h-7l-2 2H5v1H1c-.55 0-1-.45-1-1l2.5-2.5L0 5c0-.55.45-1 1-1h4v1H1.5l2 2h7l2-2H9V4h4c.55 0 1 .45 1 1l-2.5 2.5zM6 6h2V3h2L7 0 4 3h2v3zm2 3H6v3H4l3 3 3-3H8V9z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({unmute:{width:16,height:16,d:"M12 8.02c0 1.09-.45 2.09-1.17 2.83l-.67-.67c.55-.56.89-1.31.89-2.16 0-.85-.34-1.61-.89-2.16l.67-.67A3.99 3.99 0 0 1 12 8.02zM7.72 2.28L4 6H2c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h2l3.72 3.72c.47.47 1.28.14 1.28-.53V2.81c0-.67-.81-1-1.28-.53zm5.94.08l-.67.67a6.996 6.996 0 0 1 2.06 4.98c0 1.94-.78 3.7-2.06 4.98l.67.67A7.973 7.973 0 0 0 16 8c0-2.22-.89-4.22-2.34-5.66v.02zm-1.41 1.41l-.69.67a5.05 5.05 0 0 1 1.48 3.58c0 1.39-.56 2.66-1.48 3.56l.69.67A5.971 5.971 0 0 0 14 8.02c0-1.65-.67-3.16-1.75-4.25z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({unverified:{width:16,height:16,d:"M15.67 7.06l-1.08-1.34c-.17-.22-.28-.48-.31-.77l-.19-1.7a1.51 1.51 0 0 0-1.33-1.33l-1.7-.19c-.3-.03-.56-.16-.78-.33L8.94.32c-.55-.44-1.33-.44-1.88 0L5.72 1.4c-.22.17-.48.28-.77.31l-1.7.19c-.7.08-1.25.63-1.33 1.33l-.19 1.7c-.03.3-.16.56-.33.78L.32 7.05c-.44.55-.44 1.33 0 1.88l1.08 1.34c.17.22.28.48.31.77l.19 1.7c.08.7.63 1.25 1.33 1.33l1.7.19c.3.03.56.16.78.33l1.34 1.08c.55.44 1.33.44 1.88 0l1.34-1.08c.22-.17.48-.28.77-.31l1.7-.19c.7-.08 1.25-.63 1.33-1.33l.19-1.7c.03-.3.16-.56.33-.78l1.08-1.34c.44-.55.44-1.33 0-1.88zM9 11.5c0 .28-.22.5-.5.5h-1c-.27 0-.5-.22-.5-.5v-1c0-.28.23-.5.5-.5h1c.28 0 .5.22.5.5v1zm1.56-4.89c-.06.17-.17.33-.3.47-.13.16-.14.19-.33.38-.16.17-.31.3-.52.45-.11.09-.2.19-.28.27-.08.08-.14.17-.19.27-.05.1-.08.19-.11.3-.03.11-.03.13-.03.25H7.13c0-.22 0-.31.03-.48.03-.19.08-.36.14-.52.06-.14.14-.28.25-.42.11-.13.23-.25.41-.38.27-.19.36-.3.48-.52.12-.22.2-.38.2-.59 0-.27-.06-.45-.2-.58-.13-.13-.31-.19-.58-.19-.09 0-.19.02-.3.05-.11.03-.17.09-.25.16-.08.07-.14.11-.2.2a.41.41 0 0 0-.09.28h-2c0-.38.13-.56.27-.83.16-.27.36-.5.61-.67.25-.17.55-.3.88-.38.33-.08.7-.13 1.09-.13.44 0 .83.05 1.17.13.34.09.63.22.88.39.23.17.41.38.55.63.13.25.19.55.19.88 0 .22 0 .42-.08.59l-.02-.01z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({verified:{width:16,height:16,d:"M15.67 7.06l-1.08-1.34c-.17-.22-.28-.48-.31-.77l-.19-1.7a1.51 1.51 0 0 0-1.33-1.33l-1.7-.19c-.3-.03-.56-.16-.78-.33L8.94.32c-.55-.44-1.33-.44-1.88 0L5.72 1.4c-.22.17-.48.28-.77.31l-1.7.19c-.7.08-1.25.63-1.33 1.33l-.19 1.7c-.03.3-.16.56-.33.78L.32 7.05c-.44.55-.44 1.33 0 1.88l1.08 1.34c.17.22.28.48.31.77l.19 1.7c.08.7.63 1.25 1.33 1.33l1.7.19c.3.03.56.16.78.33l1.34 1.08c.55.44 1.33.44 1.88 0l1.34-1.08c.22-.17.48-.28.77-.31l1.7-.19c.7-.08 1.25-.63 1.33-1.33l.19-1.7c.03-.3.16-.56.33-.78l1.08-1.34c.44-.55.44-1.33 0-1.88zM6.5 12L3 8.5 4.5 7l2 2 5-5L13 5.55 6.5 12z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({versions:{width:14,height:16,d:"M13 3H7c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-1 8H8V5h4v6zM4 4h1v1H4v6h1v1H4c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1zM1 5h1v1H1v4h1v1H1c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({watch:{width:12,height:16,d:"M6 8h2v1H5V5h1v3zm6 0c0 2.22-1.2 4.16-3 5.19V15c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1v-1.81C1.2 12.16 0 10.22 0 8s1.2-4.16 3-5.19V1c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v1.81c1.8 1.03 3 2.97 3 5.19zm-1 0c0-2.77-2.23-5-5-5S1 5.23 1 8s2.23 5 5 5 5-2.23 5-5z"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({x:{width:12,height:16,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"}})},function(t,c,h){"use strict";var i=h(0),e=h.n(i);e.a.register({zap:{width:10,height:16,d:"M10 7H6l3-7-9 9h4l-3 7z"}})},function(t,c,h){"use strict";h.d(c,"a",function(){return i});var i=function(){}},function(t,c,h){c=t.exports=h(181)(),c.push([t.i,"\n.octicon {\n display: inline-block;\n fill: currentColor;\n}\n.octicon > path {\n transform-origin: 50% 50%;\n}\n.octicon-flip-horizontal > path {\n transform: scale(-1, 1);\n}\n.octicon-flip-vertical > path {\n transform: scale(1, -1);\n}\n.octicon-spin > path {\n animation: octicon-spin 1s 0s infinite linear;\n}\n.octicon-inverse {\n color: #fff;\n}\n@keyframes octicon-spin {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n",""])},function(t,c){t.exports=function(){var t=[];return t.toString=function(){for(var t=[],c=0;c=0&&V.splice(c,1)}function r(t){var c=document.createElement("style");return c.type="text/css",e(t,c),c}function v(t,c){var h,i,e;if(c.singleton){var v=H++;h=d||(d=r(c)),i=s.bind(null,h,v,!1),e=s.bind(null,h,v,!0)}else h=r(c),i=a.bind(null,h),e=function(){n(h)};return i(t),function(c){if(c){if(c.css===t.css&&c.media===t.media&&c.sourceMap===t.sourceMap)return;i(t=c)}else e()}}function s(t,c,h,i){var e=h?"":i.css;if(t.styleSheet)t.styleSheet.cssText=g(c,e);else{var n=document.createTextNode(e),r=t.childNodes;r[c]&&t.removeChild(r[c]),r.length?t.insertBefore(n,r[c]):t.appendChild(n)}}function a(t,c){var h=c.css,i=c.media,e=c.sourceMap;if(i&&t.setAttribute("media",i),e&&(h+="\n/*# sourceURL="+e.sources[0]+" */",h+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(e))))+" */"),t.styleSheet)t.styleSheet.cssText=h;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(h))}}var z={},l=function(t){var c;return function(){return"undefined"==typeof c&&(c=t.apply(this,arguments)),c}},o=l(function(){return/msie [6-9]\b/.test(window.navigator.userAgent.toLowerCase())}),u=l(function(){return document.head||document.getElementsByTagName("head")[0]}),d=null,H=0,V=[];t.exports=function(t,c){if("undefined"!=typeof DEBUG&&DEBUG&&"object"!=typeof document)throw new Error("The style-loader cannot be used in a non-browser environment");c=c||{},"undefined"==typeof c.singleton&&(c.singleton=o()),"undefined"==typeof c.insertAt&&(c.insertAt="bottom");var e=i(t);return h(e,c),function(t){for(var n=[],r=0;r 2 | 3 | 4 | 5 | 6 | 7 | 42 | 43 | 156 | -------------------------------------------------------------------------------- /src/icons/alert.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"alert":{"width":16,"height":16,"d":"M8.865 1.52c-.18-.31-.51-.5-.87-.5s-.69.19-.87.5L.275 13.5c-.18.31-.18.69 0 1 .19.31.52.5.87.5h13.7c.36 0 .69-.19.86-.5.17-.31.18-.69.01-1L8.865 1.52zM8.995 13h-2v-2h2v2zm0-3h-2V6h2v4z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/arrow-down.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"arrow-down":{"width":10,"height":16,"d":"M7 7V3H3v4H0l5 6 5-6z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/arrow-left.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"arrow-left":{"width":10,"height":16,"d":"M6 3L0 8l6 5v-3h4V6H6z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/arrow-right.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"arrow-right":{"width":10,"height":16,"d":"M10 8L4 3v3H0v4h4v3z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/arrow-small-down.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"arrow-small-down":{"width":6,"height":16,"d":"M4 7V5H2v2H0l3 4 3-4z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/arrow-small-left.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"arrow-small-left":{"width":6,"height":16,"d":"M4 7V5L0 8l4 3V9h2V7z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/arrow-small-right.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"arrow-small-right":{"width":6,"height":16,"d":"M6 8L2 5v2H0v2h2v2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/arrow-small-up.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"arrow-small-up":{"width":6,"height":16,"d":"M3 5L0 9h2v2h2V9h2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/arrow-up.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"arrow-up":{"width":10,"height":16,"d":"M5 3L0 9h3v4h4V9h3z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/beaker.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"beaker":{"width":16,"height":16,"d":"M14.38 14.59L11 7V3h1V2H3v1h1v4L.63 14.59A1 1 0 0 0 1.54 16h11.94c.72 0 1.2-.75.91-1.41h-.01zM3.75 10L5 7V3h5v4l1.25 3h-7.5zM8 8h1v1H8V8zM7 7H6V6h1v1zm0-3h1v1H7V4zm0-3H6V0h1v1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/bell.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"bell":{"width":14,"height":16,"d":"M14 12v1H0v-1l.73-.58c.77-.77.81-2.55 1.19-4.42C2.69 3.23 6 2 6 2c0-.55.45-1 1-1s1 .45 1 1c0 0 3.39 1.23 4.16 5 .38 1.88.42 3.66 1.19 4.42l.66.58H14zm-7 4c1.11 0 2-.89 2-2H5c0 1.11.89 2 2 2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/bold.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"bold":{"width":10,"height":16,"d":"M1 2h3.83c2.48 0 4.3.75 4.3 2.95 0 1.14-.63 2.23-1.67 2.61v.06c1.33.3 2.3 1.23 2.3 2.86 0 2.39-1.97 3.52-4.61 3.52H1V2zm3.66 4.95c1.67 0 2.38-.66 2.38-1.69 0-1.17-.78-1.61-2.34-1.61H3.13v3.3h1.53zm.27 5.39c1.77 0 2.75-.64 2.75-1.98 0-1.27-.95-1.81-2.75-1.81h-1.8v3.8h1.8v-.01z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/book.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"book":{"width":16,"height":16,"d":"M3 5h4v1H3V5zm0 3h4V7H3v1zm0 2h4V9H3v1zm11-5h-4v1h4V5zm0 2h-4v1h4V7zm0 2h-4v1h4V9zm2-6v9c0 .55-.45 1-1 1H9.5l-1 1-1-1H2c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h5.5l1 1 1-1H15c.55 0 1 .45 1 1zm-8 .5L7.5 3H2v9h6V3.5zm7-.5H9.5l-.5.5V12h6V3z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/bookmark.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"bookmark":{"width":10,"height":16,"d":"M9 0H1C.27 0 0 .27 0 1v15l5-3.09L10 16V1c0-.73-.27-1-1-1zm-.78 4.25L6.36 5.61l.72 2.16c.06.22-.02.28-.2.17L5 6.6 3.12 7.94c-.19.11-.25.05-.2-.17l.72-2.16-1.86-1.36c-.17-.16-.14-.23.09-.23l2.3-.03.7-2.16h.25l.7 2.16 2.3.03c.23 0 .27.08.09.23h.01z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/briefcase.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"briefcase":{"width":14,"height":16,"d":"M9 4V3c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H1c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1H9zM6 3h2v1H6V3zm7 6H8v1H6V9H1V5h1v3h10V5h1v4z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/broadcast.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"broadcast":{"width":16,"height":16,"d":"M9 9H8c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1H6c-.55 0-1 .45-1 1v2h1v3c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-3h1v-2c0-.55-.45-1-1-1zM7 7h1v1H7V7zm2 4H8v4H7v-4H6v-1h3v1zm2.09-3.5c0-1.98-1.61-3.59-3.59-3.59A3.593 3.593 0 0 0 4 8.31v1.98c-.61-.77-1-1.73-1-2.8 0-2.48 2.02-4.5 4.5-4.5S12 5.01 12 7.49c0 1.06-.39 2.03-1 2.8V8.31c.06-.27.09-.53.09-.81zm3.91 0c0 2.88-1.63 5.38-4 6.63v-1.05a6.553 6.553 0 0 0 3.09-5.58A6.59 6.59 0 0 0 7.5.91 6.59 6.59 0 0 0 .91 7.5c0 2.36 1.23 4.42 3.09 5.58v1.05A7.497 7.497 0 0 1 7.5 0C11.64 0 15 3.36 15 7.5z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/browser.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"browser":{"width":14,"height":16,"d":"M5 3h1v1H5V3zM3 3h1v1H3V3zM1 3h1v1H1V3zm12 10H1V5h12v8zm0-9H7V3h6v1zm1-1c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V3z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/bug.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"bug":{"width":16,"height":16,"d":"M11 10h3V9h-3V8l3.17-1.03-.34-.94L11 7V6c0-.55-.45-1-1-1V4c0-.48-.36-.88-.83-.97L10.2 2H12V1H9.8l-2 2h-.59L5.2 1H3v1h1.8l1.03 1.03C5.36 3.12 5 3.51 5 4v1c-.55 0-1 .45-1 1v1l-2.83-.97-.34.94L4 8v1H1v1h3v1L.83 12.03l.34.94L4 12v1c0 .55.45 1 1 1h1l1-1V6h1v7l1 1h1c.55 0 1-.45 1-1v-1l2.83.97.34-.94L11 11v-1zM9 5H6V4h3v1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/calendar.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"calendar":{"width":14,"height":16,"d":"M13 2h-1v1.5c0 .28-.22.5-.5.5h-2c-.28 0-.5-.22-.5-.5V2H6v1.5c0 .28-.22.5-.5.5h-2c-.28 0-.5-.22-.5-.5V2H2c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h11c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm0 12H2V5h11v9zM5 3H4V1h1v2zm6 0h-1V1h1v2zM6 7H5V6h1v1zm2 0H7V6h1v1zm2 0H9V6h1v1zm2 0h-1V6h1v1zM4 9H3V8h1v1zm2 0H5V8h1v1zm2 0H7V8h1v1zm2 0H9V8h1v1zm2 0h-1V8h1v1zm-8 2H3v-1h1v1zm2 0H5v-1h1v1zm2 0H7v-1h1v1zm2 0H9v-1h1v1zm2 0h-1v-1h1v1zm-8 2H3v-1h1v1zm2 0H5v-1h1v1zm2 0H7v-1h1v1zm2 0H9v-1h1v1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/check.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"check":{"width":12,"height":16,"d":"M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/checklist.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"checklist":{"width":16,"height":16,"d":"M16 8.5l-6 6-3-3L8.5 10l1.5 1.5L14.5 7 16 8.5zM5.7 12.2l.8.8H2c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h7c.55 0 1 .45 1 1v6.5l-.8-.8c-.39-.39-1.03-.39-1.42 0L5.7 10.8a.996.996 0 0 0 0 1.41v-.01zM4 4h5V3H4v1zm0 2h5V5H4v1zm0 2h3V7H4v1zM3 9H2v1h1V9zm0-2H2v1h1V7zm0-2H2v1h1V5zm0-2H2v1h1V3z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/chevron-down.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"chevron-down":{"width":10,"height":16,"d":"M5 11L0 6l1.5-1.5L5 8.25 8.5 4.5 10 6z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/chevron-left.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"chevron-left":{"width":8,"height":16,"d":"M5.5 3L7 4.5 3.25 8 7 11.5 5.5 13l-5-5z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/chevron-right.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"chevron-right":{"width":8,"height":16,"d":"M7.5 8l-5 5L1 11.5 4.75 8 1 4.5 2.5 3z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/chevron-up.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"chevron-up":{"width":10,"height":16,"d":"M10 10l-1.5 1.5L5 7.75 1.5 11.5 0 10l5-5z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/circle-slash.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"circle-slash":{"width":14,"height":16,"d":"M7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm0 1.3c1.3 0 2.5.44 3.47 1.17l-8 8A5.755 5.755 0 0 1 1.3 8c0-3.14 2.56-5.7 5.7-5.7zm0 11.41c-1.3 0-2.5-.44-3.47-1.17l8-8c.73.97 1.17 2.17 1.17 3.47 0 3.14-2.56 5.7-5.7 5.7z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/circuit-board.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"circuit-board":{"width":14,"height":16,"d":"M3 5c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zm8 0c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0 6c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm2-10H5v2.17c.36.19.64.47.83.83h2.34c.42-.78 1.33-1.28 2.34-1.05.75.19 1.36.8 1.53 1.55.31 1.38-.72 2.59-2.05 2.59-.8 0-1.48-.44-1.83-1.09H5.83c-.42.8-1.33 1.28-2.34 1.03-.73-.17-1.34-.78-1.52-1.52C1.72 4.49 2.2 3.59 3 3.17V1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1l5-5h2.17c.42-.78 1.33-1.28 2.34-1.05.75.19 1.36.8 1.53 1.55.31 1.38-.72 2.59-2.05 2.59-.8 0-1.48-.44-1.83-1.09H6.99L4 15h9c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/clippy.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"clippy":{"width":14,"height":16,"d":"M2 13h4v1H2v-1zm5-6H2v1h5V7zm2 3V8l-3 3 3 3v-2h5v-2H9zM4.5 9H2v1h2.5V9zM2 12h2.5v-1H2v1zm9 1h1v2c-.02.28-.11.52-.3.7-.19.18-.42.28-.7.3H1c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h3c0-1.11.89-2 2-2 1.11 0 2 .89 2 2h3c.55 0 1 .45 1 1v5h-1V6H1v9h10v-2zM2 5h8c0-.55-.45-1-1-1H8c-.55 0-1-.45-1-1s-.45-1-1-1-1 .45-1 1-.45 1-1 1H3c-.55 0-1 .45-1 1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/clock.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"clock":{"width":14,"height":16,"d":"M8 8h3v2H7c-.55 0-1-.45-1-1V4h2v4zM7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 0 1 1.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/cloud-download.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"cloud-download":{"width":16,"height":16,"d":"M9 12h2l-3 3-3-3h2V7h2v5zm3-8c0-.44-.91-3-4.5-3C5.08 1 3 2.92 3 5 1.02 5 0 6.52 0 8c0 1.53 1 3 3 3h3V9.7H3C1.38 9.7 1.3 8.28 1.3 8c0-.17.05-1.7 1.7-1.7h1.3V5c0-1.39 1.56-2.7 3.2-2.7 2.55 0 3.13 1.55 3.2 1.8v1.2H12c.81 0 2.7.22 2.7 2.2 0 2.09-2.25 2.2-2.7 2.2h-2V11h2c2.08 0 4-1.16 4-3.5C16 5.06 14.08 4 12 4z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/cloud-upload.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"cloud-upload":{"width":16,"height":16,"d":"M7 9H5l3-3 3 3H9v5H7V9zm5-4c0-.44-.91-3-4.5-3C5.08 2 3 3.92 3 6 1.02 6 0 7.52 0 9c0 1.53 1 3 3 3h3v-1.3H3c-1.62 0-1.7-1.42-1.7-1.7 0-.17.05-1.7 1.7-1.7h1.3V6c0-1.39 1.56-2.7 3.2-2.7 2.55 0 3.13 1.55 3.2 1.8v1.2H12c.81 0 2.7.22 2.7 2.2 0 2.09-2.25 2.2-2.7 2.2h-2V12h2c2.08 0 4-1.16 4-3.5C16 6.06 14.08 5 12 5z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/code.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"code":{"width":14,"height":16,"d":"M9.5 3L8 4.5 11.5 8 8 11.5 9.5 13 14 8 9.5 3zm-5 0L0 8l4.5 5L6 11.5 2.5 8 6 4.5 4.5 3z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/comment-discussion.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"comment-discussion":{"width":16,"height":16,"d":"M15 1H6c-.55 0-1 .45-1 1v2H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h1v3l3-3h4c.55 0 1-.45 1-1V9h1l3 3V9h1c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM9 11H4.5L3 12.5V11H1V5h4v3c0 .55.45 1 1 1h3v2zm6-3h-2v1.5L11.5 8H6V2h9v6z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/comment.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"comment":{"width":16,"height":16,"d":"M14 1H2c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h2v3.5L7.5 11H14c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 9H7l-2 2v-2H2V2h12v8z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/credit-card.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"credit-card":{"width":16,"height":16,"d":"M12 9H2V8h10v1zm4-6v9c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h14c.55 0 1 .45 1 1zm-1 3H1v6h14V6zm0-3H1v1h14V3zm-9 7H2v1h4v-1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/dash.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"dash":{"width":8,"height":16,"d":"M0 7v2h8V7z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/dashboard.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"dashboard":{"width":16,"height":16,"d":"M9 5H8V4h1v1zm4 3h-1v1h1V8zM6 5H5v1h1V5zM5 8H4v1h1V8zm11-5.5l-.5-.5L9 7c-.06-.02-1 0-1 0-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-.92l6-5.58zm-1.59 4.09c.19.61.3 1.25.3 1.91 0 3.42-2.78 6.2-6.2 6.2-3.42 0-6.21-2.78-6.21-6.2 0-3.42 2.78-6.2 6.2-6.2 1.2 0 2.31.34 3.27.94l.94-.94A7.459 7.459 0 0 0 8.51 1C4.36 1 1 4.36 1 8.5 1 12.64 4.36 16 8.5 16c4.14 0 7.5-3.36 7.5-7.5 0-1.03-.2-2.02-.59-2.91l-1 1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/database.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"database":{"width":12,"height":16,"d":"M6 15c-3.31 0-6-.9-6-2v-2c0-.17.09-.34.21-.5.67.86 3 1.5 5.79 1.5s5.12-.64 5.79-1.5c.13.16.21.33.21.5v2c0 1.1-2.69 2-6 2zm0-4c-3.31 0-6-.9-6-2V7c0-.11.04-.21.09-.31.03-.06.07-.13.12-.19C.88 7.36 3.21 8 6 8s5.12-.64 5.79-1.5c.05.06.09.13.12.19.05.1.09.21.09.31v2c0 1.1-2.69 2-6 2zm0-4c-3.31 0-6-.9-6-2V3c0-1.1 2.69-2 6-2s6 .9 6 2v2c0 1.1-2.69 2-6 2zm0-5c-2.21 0-4 .45-4 1s1.79 1 4 1 4-.45 4-1-1.79-1-4-1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/desktop-download.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"desktop-download":{"width":16,"height":16,"d":"M4 6h3V0h2v6h3l-4 4-4-4zm11-4h-4v1h4v8H1V3h4V2H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5.34c-.25.61-.86 1.39-2.34 2h8c-1.48-.61-2.09-1.39-2.34-2H15c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/device-camera-video.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"device-camera-video":{"width":16,"height":16,"d":"M15.2 2.09L10 5.72V3c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V9.28l5.2 3.63c.33.23.8 0 .8-.41v-10c0-.41-.47-.64-.8-.41z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/device-camera.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"device-camera":{"width":16,"height":16,"d":"M15 3H7c0-.55-.45-1-1-1H2c-.55 0-1 .45-1 1-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM6 5H2V4h4v1zm4.5 7C8.56 12 7 10.44 7 8.5S8.56 5 10.5 5 14 6.56 14 8.5 12.44 12 10.5 12zM13 8.5c0 1.38-1.13 2.5-2.5 2.5S8 9.87 8 8.5 9.13 6 10.5 6 13 7.13 13 8.5z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/device-desktop.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"device-desktop":{"width":16,"height":16,"d":"M15 2H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5.34c-.25.61-.86 1.39-2.34 2h8c-1.48-.61-2.09-1.39-2.34-2H15c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm0 9H1V3h14v8z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/device-mobile.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"device-mobile":{"width":10,"height":16,"d":"M9 0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM5 15.3c-.72 0-1.3-.58-1.3-1.3 0-.72.58-1.3 1.3-1.3.72 0 1.3.58 1.3 1.3 0 .72-.58 1.3-1.3 1.3zM9 12H1V2h8v10z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/diff-added.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"diff-added":{"width":14,"height":16,"d":"M13 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 13H1V2h12v12zM6 9H3V7h3V4h2v3h3v2H8v3H6V9z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/diff-ignored.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"diff-ignored":{"width":14,"height":16,"d":"M13 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 13H1V2h12v12zm-8.5-2H3v-1.5L9.5 4H11v1.5L4.5 12z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/diff-modified.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"diff-modified":{"width":14,"height":16,"d":"M13 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 13H1V2h12v12zM4 8c0-1.66 1.34-3 3-3s3 1.34 3 3-1.34 3-3 3-3-1.34-3-3z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/diff-removed.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"diff-removed":{"width":14,"height":16,"d":"M13 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 13H1V2h12v12zm-2-5H3V7h8v2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/diff-renamed.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"diff-renamed":{"width":14,"height":16,"d":"M6 9H3V7h3V4l5 4-5 4V9zm8-7v12c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h12c.55 0 1 .45 1 1zm-1 0H1v12h12V2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/diff.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"diff":{"width":13,"height":16,"d":"M6 7h2v1H6v2H5V8H3V7h2V5h1v2zm-3 6h5v-1H3v1zM7.5 2L11 5.5V15c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h6.5zM10 6L7 3H1v12h9V6zM8.5 0H3v1h5l4 4v8h1V4.5L8.5 0z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/ellipses.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"ellipses":{"width":12,"height":16,"d":"M11 5H1c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM4 9H2V7h2v2zm3 0H5V7h2v2zm3 0H8V7h2v2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/ellipsis.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"ellipsis":{"width":12,"height":16,"d":"M11 5H1c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM4 9H2V7h2v2zm3 0H5V7h2v2zm3 0H8V7h2v2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/eye.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"eye":{"width":16,"height":16,"d":"M8.06 2C3 2 0 8 0 8s3 6 8.06 6C13 14 16 8 16 8s-3-6-7.94-6zM8 12c-2.2 0-4-1.78-4-4 0-2.2 1.8-4 4-4 2.22 0 4 1.8 4 4 0 2.22-1.78 4-4 4zm2-4c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/file-binary.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"file-binary":{"width":12,"height":16,"d":"M4 12h1v1H2v-1h1v-2H2V9h2v3zm8-7.5V14c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h7.5L12 4.5zM11 5L8 2H1v12h10V5zM8 4H6v1h1v2H6v1h3V7H8V4zM2 4h3v4H2V4zm1 3h1V5H3v2zm3 2h3v4H6V9zm1 3h1v-2H7v2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/file-code.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"file-code":{"width":12,"height":16,"d":"M8.5 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V4.5L8.5 1zM11 14H1V2h7l3 3v9zM5 6.98L3.5 8.5 5 10l-.5 1L2 8.5 4.5 6l.5.98zM7.5 6L10 8.5 7.5 11l-.5-.98L8.5 8.5 7 7l.5-1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/file-directory.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"file-directory":{"width":14,"height":16,"d":"M13 4H7V3c0-.66-.31-1-1-1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zM6 4H1V3h5v1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/file-media.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"file-media":{"width":12,"height":16,"d":"M6 5h2v2H6V5zm6-.5V14c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h7.5L12 4.5zM11 5L8 2H1v11l3-5 2 4 2-2 3 3V5z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/file-pdf.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"file-pdf":{"width":12,"height":16,"d":"M8.5 1H1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V4.5L8.5 1zM1 2h4a.68.68 0 0 0-.31.2 1.08 1.08 0 0 0-.23.47 4.22 4.22 0 0 0-.09 1.47c.06.609.173 1.211.34 1.8A21.78 21.78 0 0 1 3.6 8.6c-.5 1-.8 1.66-.91 1.84a7.16 7.16 0 0 0-.69.3 4.19 4.19 0 0 0-1 .64V2zm4.42 4.8a5.65 5.65 0 0 0 1.17 2.09c.275.237.595.417.94.53-.64.09-1.23.2-1.81.33a12.22 12.22 0 0 0-1.81.59c-.587.243.22-.44.61-1.25.365-.74.67-1.51.91-2.3l-.01.01zM11 14H1.5a.74.74 0 0 1-.17 0 2.12 2.12 0 0 0 .73-.44 10.14 10.14 0 0 0 1.78-2.38c.31-.13.58-.23.81-.31l.42-.14c.45-.13.94-.23 1.44-.33s1-.16 1.48-.2a8.65 8.65 0 0 0 1.39.53c.403.11.814.188 1.23.23h.38V14H11zm0-4.86a3.74 3.74 0 0 0-.64-.28 4.22 4.22 0 0 0-.75-.11c-.411.003-.822.03-1.23.08a3 3 0 0 1-1-.64 6.07 6.07 0 0 1-1.29-2.33c.111-.661.178-1.33.2-2 .02-.25.02-.5 0-.75a1.05 1.05 0 0 0-.2-.88.82.82 0 0 0-.61-.23H8l3 3v4.14z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/file-submodule.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"file-submodule":{"width":14,"height":16,"d":"M10 7H4v7h9c.55 0 1-.45 1-1V8h-4V7zM9 9H5V8h4v1zm4-5H7V3c0-.66-.31-1-1-1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h2V7c0-.55.45-1 1-1h6c.55 0 1 .45 1 1h3V5c0-.55-.45-1-1-1zM6 4H1V3h5v1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/file-symlink-directory.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"file-symlink-directory":{"width":14,"height":16,"d":"M13 4H7V3c0-.66-.31-1-1-1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zM1 3h5v1H1V3zm6 9v-2c-.98-.02-1.84.22-2.55.7-.71.48-1.19 1.25-1.45 2.3.02-1.64.39-2.88 1.13-3.73C4.86 8.43 5.82 8 7.01 8V6l4 3-4 3H7z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/file-symlink-file.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"file-symlink-file":{"width":12,"height":16,"d":"M8.5 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V4.5L8.5 1zM11 14H1V2h7l3 3v9zM6 4.5l4 3-4 3v-2c-.98-.02-1.84.22-2.55.7-.71.48-1.19 1.25-1.45 2.3.02-1.64.39-2.88 1.13-3.73.73-.84 1.69-1.27 2.88-1.27v-2H6z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/file-text.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"file-text":{"width":12,"height":16,"d":"M6 5H2V4h4v1zM2 8h7V7H2v1zm0 2h7V9H2v1zm0 2h7v-1H2v1zm10-7.5V14c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h7.5L12 4.5zM11 5L8 2H1v12h10V5z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/file-zip.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"file-zip":{"width":12,"height":16,"d":"M8.5 1H1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V4.5L8.5 1zM11 14H1V2h3v1h1V2h3l3 3v9zM5 4V3h1v1H5zM4 4h1v1H4V4zm1 2V5h1v1H5zM4 6h1v1H4V6zm1 2V7h1v1H5zM4 9.28A2 2 0 0 0 3 11v1h4v-1a2 2 0 0 0-2-2V8H4v1.28zM6 10v1H4v-1h2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/file.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"file":{"width":12,"height":16,"d":"M6 5H2V4h4v1zM2 8h7V7H2v1zm0 2h7V9H2v1zm0 2h7v-1H2v1zm10-7.5V14c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h7.5L12 4.5zM11 5L8 2H1v12h10V5z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/flame.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"flame":{"width":12,"height":16,"d":"M5.05.31c.81 2.17.41 3.38-.52 4.31C3.55 5.67 1.98 6.45.9 7.98c-1.45 2.05-1.7 6.53 3.53 7.7-2.2-1.16-2.67-4.52-.3-6.61-.61 2.03.53 3.33 1.94 2.86 1.39-.47 2.3.53 2.27 1.67-.02.78-.31 1.44-1.13 1.81 3.42-.59 4.78-3.42 4.78-5.56 0-2.84-2.53-3.22-1.25-5.61-1.52.13-2.03 1.13-1.89 2.75.09 1.08-1.02 1.8-1.86 1.33-.67-.41-.66-1.19-.06-1.78C8.18 5.31 8.68 2.45 5.05.32L5.03.3l.02.01z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/fold.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"fold":{"width":14,"height":16,"d":"M7 9l3 3H8v3H6v-3H4l3-3zm3-6H8V0H6v3H4l3 3 3-3zm4 2c0-.55-.45-1-1-1h-2.5l-1 1h3l-2 2h-7l-2-2h3l-1-1H1c-.55 0-1 .45-1 1l2.5 2.5L0 10c0 .55.45 1 1 1h2.5l1-1h-3l2-2h7l2 2h-3l1 1H13c.55 0 1-.45 1-1l-2.5-2.5L14 5z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/gear.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"gear":{"width":14,"height":16,"d":"M14 8.77v-1.6l-1.94-.64-.45-1.09.88-1.84-1.13-1.13-1.81.91-1.09-.45-.69-1.92h-1.6l-.63 1.94-1.11.45-1.84-.88-1.13 1.13.91 1.81-.45 1.09L0 7.23v1.59l1.94.64.45 1.09-.88 1.84 1.13 1.13 1.81-.91 1.09.45.69 1.92h1.59l.63-1.94 1.11-.45 1.84.88 1.13-1.13-.92-1.81.47-1.09L14 8.75v.02zM7 11c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/gift.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"gift":{"width":14,"height":16,"d":"M13 4h-1.38c.19-.33.33-.67.36-.91.06-.67-.11-1.22-.52-1.61C11.1 1.1 10.65 1 10.1 1h-.11c-.53.02-1.11.25-1.53.58-.42.33-.73.72-.97 1.2-.23-.48-.55-.88-.97-1.2-.42-.32-1-.58-1.53-.58h-.03c-.56 0-1.06.09-1.44.48-.41.39-.58.94-.52 1.61.03.23.17.58.36.91H1.98c-.55 0-1 .45-1 1v3h1v5c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V8h1V5c0-.55-.45-1-1-1H13zm-4.78-.88c.17-.36.42-.67.75-.92.3-.23.72-.39 1.05-.41h.09c.45 0 .66.11.8.25s.33.39.3.95c-.05.19-.25.61-.5 1h-2.9l.41-.88v.01zM4.09 2.04c.13-.13.31-.25.91-.25.31 0 .72.17 1.03.41.33.25.58.55.75.92L7.2 4H4.3c-.25-.39-.45-.81-.5-1-.03-.56.16-.81.3-.95l-.01-.01zM7 12.99H3V8h4v5-.01zm0-6H2V5h5v2-.01zm5 6H8V8h4v5-.01zm1-6H8V5h5v2-.01z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/gist-secret.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"gist-secret":{"width":14,"height":16,"d":"M8 10.5L9 14H5l1-3.5L5.25 9h3.5L8 10.5zM10 6H4L2 7h10l-2-1zM9 2L7 3 5 2 4 5h6L9 2zm4.03 7.75L10 9l1 2-2 3h3.22c.45 0 .86-.31.97-.75l.56-2.28c.14-.53-.19-1.08-.72-1.22zM4 9l-3.03.75c-.53.14-.86.69-.72 1.22l.56 2.28c.11.44.52.75.97.75H5l-2-3 1-2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/gist.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"gist":{"width":12,"height":16,"d":"M7.5 5L10 7.5 7.5 10l-.75-.75L8.5 7.5 6.75 5.75 7.5 5zm-3 0L2 7.5 4.5 10l.75-.75L3.5 7.5l1.75-1.75L4.5 5zM0 13V2c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v11c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1zm1 0h10V2H1v11z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/git-branch.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"git-branch":{"width":10,"height":16,"d":"M10 5c0-1.11-.89-2-2-2a1.993 1.993 0 0 0-1 3.72v.3c-.02.52-.23.98-.63 1.38-.4.4-.86.61-1.38.63-.83.02-1.48.16-2 .45V4.72a1.993 1.993 0 0 0-1-3.72C.88 1 0 1.89 0 3a2 2 0 0 0 1 1.72v6.56c-.59.35-1 .99-1 1.72 0 1.11.89 2 2 2 1.11 0 2-.89 2-2 0-.53-.2-1-.53-1.36.09-.06.48-.41.59-.47.25-.11.56-.17.94-.17 1.05-.05 1.95-.45 2.75-1.25S8.95 7.77 9 6.73h-.02C9.59 6.37 10 5.73 10 5zM2 1.8c.66 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2C1.35 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2zm0 12.41c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm6-8c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/git-commit.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"git-commit":{"width":14,"height":16,"d":"M10.86 7c-.45-1.72-2-3-3.86-3-1.86 0-3.41 1.28-3.86 3H0v2h3.14c.45 1.72 2 3 3.86 3 1.86 0 3.41-1.28 3.86-3H14V7h-3.14zM7 10.2c-1.22 0-2.2-.98-2.2-2.2 0-1.22.98-2.2 2.2-2.2 1.22 0 2.2.98 2.2 2.2 0 1.22-.98 2.2-2.2 2.2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/git-compare.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"git-compare":{"width":14,"height":16,"d":"M5 12H4c-.27-.02-.48-.11-.69-.31-.21-.2-.3-.42-.31-.69V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V11c.03.78.34 1.47.94 2.06.6.59 1.28.91 2.06.94h1v2l3-3-3-3v2zM2 1.8c.66 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2C1.35 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2zm11 9.48V5c-.03-.78-.34-1.47-.94-2.06-.6-.59-1.28-.91-2.06-.94H9V0L6 3l3 3V4h1c.27.02.48.11.69.31.21.2.3.42.31.69v6.28A1.993 1.993 0 0 0 12 15a1.993 1.993 0 0 0 1-3.72zm-1 2.92c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/git-merge.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"git-merge":{"width":12,"height":16,"d":"M10 7c-.73 0-1.38.41-1.73 1.02V8C7.22 7.98 6 7.64 5.14 6.98c-.75-.58-1.5-1.61-1.89-2.44A1.993 1.993 0 0 0 2 .99C.89.99 0 1.89 0 3a2 2 0 0 0 1 1.72v6.56c-.59.35-1 .99-1 1.72 0 1.11.89 2 2 2a1.993 1.993 0 0 0 1-3.72V7.67c.67.7 1.44 1.27 2.3 1.69.86.42 2.03.63 2.97.64v-.02c.36.61 1 1.02 1.73 1.02 1.11 0 2-.89 2-2 0-1.11-.89-2-2-2zm-6.8 6c0 .66-.55 1.2-1.2 1.2-.65 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm8 6c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/git-pull-request.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"git-pull-request":{"width":12,"height":16,"d":"M11 11.28V5c-.03-.78-.34-1.47-.94-2.06C9.46 2.35 8.78 2.03 8 2H7V0L4 3l3 3V4h1c.27.02.48.11.69.31.21.2.3.42.31.69v6.28A1.993 1.993 0 0 0 10 15a1.993 1.993 0 0 0 1-3.72zm-1 2.92c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zM4 3c0-1.11-.89-2-2-2a1.993 1.993 0 0 0-1 3.72v6.56A1.993 1.993 0 0 0 2 15a1.993 1.993 0 0 0 1-3.72V4.72c.59-.34 1-.98 1-1.72zm-.8 10c0 .66-.55 1.2-1.2 1.2-.65 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/globe.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"globe":{"width":14,"height":16,"d":"M7 1C3.14 1 0 4.14 0 8s3.14 7 7 7c.48 0 .94-.05 1.38-.14-.17-.08-.2-.73-.02-1.09.19-.41.81-1.45.2-1.8-.61-.35-.44-.5-.81-.91-.37-.41-.22-.47-.25-.58-.08-.34.36-.89.39-.94.02-.06.02-.27 0-.33 0-.08-.27-.22-.34-.23-.06 0-.11.11-.2.13-.09.02-.5-.25-.59-.33-.09-.08-.14-.23-.27-.34-.13-.13-.14-.03-.33-.11s-.8-.31-1.28-.48c-.48-.19-.52-.47-.52-.66-.02-.2-.3-.47-.42-.67-.14-.2-.16-.47-.2-.41-.04.06.25.78.2.81-.05.02-.16-.2-.3-.38-.14-.19.14-.09-.3-.95s.14-1.3.17-1.75c.03-.45.38.17.19-.13-.19-.3 0-.89-.14-1.11-.13-.22-.88.25-.88.25.02-.22.69-.58 1.16-.92.47-.34.78-.06 1.16.05.39.13.41.09.28-.05-.13-.13.06-.17.36-.13.28.05.38.41.83.36.47-.03.05.09.11.22s-.06.11-.38.3c-.3.2.02.22.55.61s.38-.25.31-.55c-.07-.3.39-.06.39-.06.33.22.27.02.5.08.23.06.91.64.91.64-.83.44-.31.48-.17.59.14.11-.28.3-.28.3-.17-.17-.19.02-.3.08-.11.06-.02.22-.02.22-.56.09-.44.69-.42.83 0 .14-.38.36-.47.58-.09.2.25.64.06.66-.19.03-.34-.66-1.31-.41-.3.08-.94.41-.59 1.08.36.69.92-.19 1.11-.09.19.1-.06.53-.02.55.04.02.53.02.56.61.03.59.77.53.92.55.17 0 .7-.44.77-.45.06-.03.38-.28 1.03.09.66.36.98.31 1.2.47.22.16.08.47.28.58.2.11 1.06-.03 1.28.31.22.34-.88 2.09-1.22 2.28-.34.19-.48.64-.84.92s-.81.64-1.27.91c-.41.23-.47.66-.66.8 3.14-.7 5.48-3.5 5.48-6.84 0-3.86-3.14-7-7-7L7 1zm1.64 6.56c-.09.03-.28.22-.78-.08-.48-.3-.81-.23-.86-.28 0 0-.05-.11.17-.14.44-.05.98.41 1.11.41.13 0 .19-.13.41-.05.22.08.05.13-.05.14zM6.34 1.7c-.05-.03.03-.08.09-.14.03-.03.02-.11.05-.14.11-.11.61-.25.52.03-.11.27-.58.3-.66.25zm1.23.89c-.19-.02-.58-.05-.52-.14.3-.28-.09-.38-.34-.38-.25-.02-.34-.16-.22-.19.12-.03.61.02.7.08.08.06.52.25.55.38.02.13 0 .25-.17.25zm1.47-.05c-.14.09-.83-.41-.95-.52-.56-.48-.89-.31-1-.41-.11-.1-.08-.19.11-.34.19-.15.69.06 1 .09.3.03.66.27.66.55.02.25.33.5.19.63h-.01z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/grabber.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"grabber":{"width":8,"height":16,"d":"M8 4v1H0V4h8zM0 8h8V7H0v1zm0 3h8v-1H0v1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/graph.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"graph":{"width":16,"height":16,"d":"M16 14v1H0V0h1v14h15zM5 13H3V8h2v5zm4 0H7V3h2v10zm4 0h-2V6h2v7z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/heart.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"heart":{"width":12,"height":16,"d":"M11.2 3c-.52-.63-1.25-.95-2.2-1-.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-.95.05-1.69.38-2.2 1-.52.61-.78 1.28-.8 2 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-.02-.72-.28-1.39-.8-2.02V3z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/history.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"history":{"width":14,"height":16,"d":"M8 13H6V6h5v2H8v5zM7 1C4.81 1 2.87 2.02 1.59 3.59L0 2v4h4L2.5 4.5C3.55 3.17 5.17 2.3 7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 0 1 1.3 8c0-.34.03-.67.09-1H.08C.03 7.33 0 7.66 0 8c0 3.86 3.14 7 7 7s7-3.14 7-7-3.14-7-7-7z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/home.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"home":{"width":16,"height":16,"d":"M16 9l-3-3V2h-2v2L8 1 0 9h2l1 5c0 .55.45 1 1 1h8c.55 0 1-.45 1-1l1-5h2zm-4 5H9v-4H7v4H4L2.81 7.69 8 2.5l5.19 5.19L12 14z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/horizontal-rule.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"horizontal-rule":{"width":10,"height":16,"d":"M1 7h2v2h1V3H3v3H1V3H0v6h1V7zm9 2V7H9v2h1zm0-3V4H9v2h1zM7 6V4h2V3H6v6h1V7h2V6H7zm-7 7h10v-2H0v2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/hubot.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"hubot":{"width":14,"height":16,"d":"M3 6c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1H3zm8 1.75L9.75 9h-1.5L7 7.75 5.75 9h-1.5L3 7.75V7h.75L5 8.25 6.25 7h1.5L9 8.25 10.25 7H11v.75zM5 11h4v1H5v-1zm2-9C3.14 2 0 4.91 0 8.5V13c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V8.5C14 4.91 10.86 2 7 2zm6 11H1V8.5c0-3.09 2.64-5.59 6-5.59s6 2.5 6 5.59V13z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/inbox.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"inbox":{"width":14,"height":16,"d":"M14 9l-1.13-7.14c-.08-.48-.5-.86-1-.86H2.13c-.5 0-.92.38-1 .86L0 9v5c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V9zm-3.28.55l-.44.89c-.17.34-.52.56-.91.56H4.61c-.38 0-.72-.22-.89-.55l-.44-.91c-.17-.33-.52-.55-.89-.55H1l1-7h10l1 7h-1.38c-.39 0-.73.22-.91.55l.01.01z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/index.js: -------------------------------------------------------------------------------- 1 | import './alert' 2 | import './arrow-down' 3 | import './arrow-left' 4 | import './arrow-right' 5 | import './arrow-small-down' 6 | import './arrow-small-left' 7 | import './arrow-small-right' 8 | import './arrow-small-up' 9 | import './arrow-up' 10 | import './beaker' 11 | import './bell' 12 | import './bold' 13 | import './book' 14 | import './bookmark' 15 | import './briefcase' 16 | import './broadcast' 17 | import './browser' 18 | import './bug' 19 | import './calendar' 20 | import './check' 21 | import './checklist' 22 | import './chevron-down' 23 | import './chevron-left' 24 | import './chevron-right' 25 | import './chevron-up' 26 | import './circle-slash' 27 | import './circuit-board' 28 | import './clippy' 29 | import './clock' 30 | import './cloud-download' 31 | import './cloud-upload' 32 | import './code' 33 | import './comment' 34 | import './comment-discussion' 35 | import './credit-card' 36 | import './dash' 37 | import './dashboard' 38 | import './database' 39 | import './desktop-download' 40 | import './device-camera' 41 | import './device-camera-video' 42 | import './device-desktop' 43 | import './device-mobile' 44 | import './diff' 45 | import './diff-added' 46 | import './diff-ignored' 47 | import './diff-modified' 48 | import './diff-removed' 49 | import './diff-renamed' 50 | import './ellipses' 51 | import './ellipsis' 52 | import './eye' 53 | import './file' 54 | import './file-binary' 55 | import './file-code' 56 | import './file-directory' 57 | import './file-media' 58 | import './file-pdf' 59 | import './file-submodule' 60 | import './file-symlink-directory' 61 | import './file-symlink-file' 62 | import './file-text' 63 | import './file-zip' 64 | import './flame' 65 | import './fold' 66 | import './gear' 67 | import './gift' 68 | import './gist' 69 | import './gist-secret' 70 | import './git-branch' 71 | import './git-commit' 72 | import './git-compare' 73 | import './git-merge' 74 | import './git-pull-request' 75 | import './globe' 76 | import './grabber' 77 | import './graph' 78 | import './heart' 79 | import './history' 80 | import './home' 81 | import './horizontal-rule' 82 | import './hubot' 83 | import './inbox' 84 | import './info' 85 | import './issue-closed' 86 | import './issue-opened' 87 | import './issue-reopened' 88 | import './italic' 89 | import './jersey' 90 | import './key' 91 | import './keyboard' 92 | import './law' 93 | import './light-bulb' 94 | import './link' 95 | import './link-external' 96 | import './list-ordered' 97 | import './list-unordered' 98 | import './location' 99 | import './lock' 100 | import './logo-gist' 101 | import './logo-github' 102 | import './mail' 103 | import './mail-read' 104 | import './mail-reply' 105 | import './mark-github' 106 | import './markdown' 107 | import './megaphone' 108 | import './mention' 109 | import './milestone' 110 | import './mirror' 111 | import './mortar-board' 112 | import './mute' 113 | import './no-newline' 114 | import './note' 115 | import './octoface' 116 | import './organization' 117 | import './package' 118 | import './paintcan' 119 | import './pencil' 120 | import './person' 121 | import './pin' 122 | import './plug' 123 | import './plus' 124 | import './plus-small' 125 | import './primitive-dot' 126 | import './primitive-square' 127 | import './project' 128 | import './pulse' 129 | import './question' 130 | import './quote' 131 | import './radio-tower' 132 | import './reply' 133 | import './repo' 134 | import './repo-clone' 135 | import './repo-force-push' 136 | import './repo-forked' 137 | import './repo-pull' 138 | import './repo-push' 139 | import './rocket' 140 | import './rss' 141 | import './ruby' 142 | import './screen-full' 143 | import './screen-normal' 144 | import './search' 145 | import './server' 146 | import './settings' 147 | import './shield' 148 | import './sign-in' 149 | import './sign-out' 150 | import './smiley' 151 | import './squirrel' 152 | import './star' 153 | import './stop' 154 | import './sync' 155 | import './tag' 156 | import './tasklist' 157 | import './telescope' 158 | import './terminal' 159 | import './text-size' 160 | import './three-bars' 161 | import './thumbsdown' 162 | import './thumbsup' 163 | import './tools' 164 | import './trashcan' 165 | import './triangle-down' 166 | import './triangle-left' 167 | import './triangle-right' 168 | import './triangle-up' 169 | import './unfold' 170 | import './unmute' 171 | import './unverified' 172 | import './verified' 173 | import './versions' 174 | import './watch' 175 | import './x' 176 | import './zap' 177 | -------------------------------------------------------------------------------- /src/icons/info.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"info":{"width":14,"height":16,"d":"M6.3 5.69a.942.942 0 0 1-.28-.7c0-.28.09-.52.28-.7.19-.18.42-.28.7-.28.28 0 .52.09.7.28.18.19.28.42.28.7 0 .28-.09.52-.28.7a1 1 0 0 1-.7.3c-.28 0-.52-.11-.7-.3zM8 7.99c-.02-.25-.11-.48-.31-.69-.2-.19-.42-.3-.69-.31H6c-.27.02-.48.13-.69.31-.2.2-.3.44-.31.69h1v3c.02.27.11.5.31.69.2.2.42.31.69.31h1c.27 0 .48-.11.69-.31.2-.19.3-.42.31-.69H8V7.98v.01zM7 2.3c-3.14 0-5.7 2.54-5.7 5.68 0 3.14 2.56 5.7 5.7 5.7s5.7-2.55 5.7-5.7c0-3.15-2.56-5.69-5.7-5.69v.01zM7 .98c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.12-7-7 3.14-7 7-7z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/issue-closed.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"issue-closed":{"width":16,"height":16,"d":"M7 10h2v2H7v-2zm2-6H7v5h2V4zm1.5 1.5l-1 1L12 9l4-4.5-1-1L12 7l-1.5-1.5zM8 13.7A5.71 5.71 0 0 1 2.3 8c0-3.14 2.56-5.7 5.7-5.7 1.83 0 3.45.88 4.5 2.2l.92-.92A6.947 6.947 0 0 0 8 1C4.14 1 1 4.14 1 8s3.14 7 7 7 7-3.14 7-7l-1.52 1.52c-.66 2.41-2.86 4.19-5.48 4.19v-.01z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/issue-opened.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"issue-opened":{"width":14,"height":16,"d":"M7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 0 1 1.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm1 3H6v5h2V4zm0 6H6v2h2v-2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/issue-reopened.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"issue-reopened":{"width":14,"height":16,"d":"M8 9H6V4h2v5zm-2 3h2v-2H6v2zm6.33-2H10l1.5 1.5c-1.05 1.33-2.67 2.2-4.5 2.2A5.71 5.71 0 0 1 1.3 8c0-.34.03-.67.09-1H.08C.03 7.33 0 7.66 0 8c0 3.86 3.14 7 7 7 2.19 0 4.13-1.02 5.41-2.59L14 14v-4h-1.67zM1.67 6H4L2.5 4.5C3.55 3.17 5.17 2.3 7 2.3c3.14 0 5.7 2.56 5.7 5.7 0 .34-.03.67-.09 1h1.31c.05-.33.08-.66.08-1 0-3.86-3.14-7-7-7-2.19 0-4.13 1.02-5.41 2.59L0 2v4h1.67z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/italic.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"italic":{"width":6,"height":16,"d":"M2.81 5h1.98L3 14H1l1.81-9zm.36-2.7c0-.7.58-1.3 1.33-1.3.56 0 1.13.38 1.13 1.03 0 .75-.59 1.3-1.33 1.3-.58 0-1.13-.38-1.13-1.03z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/jersey.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"jersey":{"width":14,"height":16,"d":"M4.5 6l-.5.5v5l.5.5h2l.5-.5v-5L6.5 6h-2zM6 11H5V7h1v4zm6.27-7.25C12.05 2.37 11.96 1.12 12 0H9.02c0 .27-.13.48-.39.69-.25.2-.63.3-1.13.3-.5 0-.88-.09-1.13-.3-.23-.2-.36-.42-.36-.69H3c.05 1.13-.03 2.38-.25 3.75C2.55 5.13 1.95 5.88 1 6v9c.02.27.11.48.31.69.2.21.42.3.69.31h11c.27-.02.48-.11.69-.31.21-.2.3-.42.31-.69V6c-.95-.13-1.53-.88-1.75-2.25h.02zM13 15H2V7c.89-.5 1.48-1.25 1.72-2.25S4.03 2.5 4 1h1c-.02.78.16 1.47.52 2.06.36.58 1.02.89 2 .94.98-.02 1.64-.33 2-.94.36-.59.5-1.28.48-2.06h1c.02 1.42.13 2.55.33 3.38.2.81.69 2 1.67 2.63v8V15zM8.5 6l-.5.5v5l.5.5h2l.5-.5v-5l-.5-.5h-2zm1.5 5H9V7h1v4z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/key.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"key":{"width":14,"height":16,"d":"M12.83 2.17C12.08 1.42 11.14 1.03 10 1c-1.13.03-2.08.42-2.83 1.17S6.04 3.86 6.01 5c0 .3.03.59.09.89L0 12v1l1 1h2l1-1v-1h1v-1h1v-1h2l1.09-1.11c.3.08.59.11.91.11 1.14-.03 2.08-.42 2.83-1.17S13.97 6.14 14 5c-.03-1.14-.42-2.08-1.17-2.83zM11 5.38c-.77 0-1.38-.61-1.38-1.38 0-.77.61-1.38 1.38-1.38.77 0 1.38.61 1.38 1.38 0 .77-.61 1.38-1.38 1.38z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/keyboard.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"keyboard":{"width":16,"height":16,"d":"M10 5H9V4h1v1zM3 6H2v1h1V6zm5-2H7v1h1V4zM4 4H2v1h2V4zm8 7h2v-1h-2v1zM8 7h1V6H8v1zm-4 3H2v1h2v-1zm8-6h-1v1h1V4zm2 0h-1v1h1V4zm-2 5h2V6h-2v3zm4-6v9c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h14c.55 0 1 .45 1 1zm-1 0H1v9h14V3zM6 7h1V6H6v1zm0-3H5v1h1V4zM4 7h1V6H4v1zm1 4h6v-1H5v1zm5-4h1V6h-1v1zM3 8H2v1h1V8zm5 0v1h1V8H8zM6 8v1h1V8H6zM5 8H4v1h1V8zm5 1h1V8h-1v1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/law.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"law":{"width":14,"height":16,"d":"M7 4c-.83 0-1.5-.67-1.5-1.5S6.17 1 7 1s1.5.67 1.5 1.5S7.83 4 7 4zm7 6c0 1.11-.89 2-2 2h-1c-1.11 0-2-.89-2-2l2-4h-1c-.55 0-1-.45-1-1H8v8c.42 0 1 .45 1 1h1c.42 0 1 .45 1 1H3c0-.55.58-1 1-1h1c0-.55.58-1 1-1h.03L6 5H5c0 .55-.45 1-1 1H3l2 4c0 1.11-.89 2-2 2H2c-1.11 0-2-.89-2-2l2-4H1V5h3c0-.55.45-1 1-1h4c.55 0 1 .45 1 1h3v1h-1l2 4zM2.5 7L1 10h3L2.5 7zM13 10l-1.5-3-1.5 3h3z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/light-bulb.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"light-bulb":{"width":12,"height":16,"d":"M6.5 0C3.48 0 1 2.19 1 5c0 .92.55 2.25 1 3 1.34 2.25 1.78 2.78 2 4v1h5v-1c.22-1.22.66-1.75 2-4 .45-.75 1-2.08 1-3 0-2.81-2.48-5-5.5-5zm3.64 7.48c-.25.44-.47.8-.67 1.11-.86 1.41-1.25 2.06-1.45 3.23-.02.05-.02.11-.02.17H5c0-.06 0-.13-.02-.17-.2-1.17-.59-1.83-1.45-3.23-.2-.31-.42-.67-.67-1.11C2.44 6.78 2 5.65 2 5c0-2.2 2.02-4 4.5-4 1.22 0 2.36.42 3.22 1.19C10.55 2.94 11 3.94 11 5c0 .66-.44 1.78-.86 2.48zM4 14h5c-.23 1.14-1.3 2-2.5 2s-2.27-.86-2.5-2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/link-external.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"link-external":{"width":12,"height":16,"d":"M11 10h1v3c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h3v1H1v10h10v-3zM6 2l2.25 2.25L5 7.5 6.5 9l3.25-3.25L12 8V2H6z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/link.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"link":{"width":16,"height":16,"d":"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/list-ordered.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"list-ordered":{"width":12,"height":16,"d":"M12 13c0 .59 0 1-.59 1H4.59C4 14 4 13.59 4 13c0-.59 0-1 .59-1h6.81c.59 0 .59.41.59 1H12zM4.59 4h6.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1H4.59C4 2 4 2.41 4 3c0 .59 0 1 .59 1zm6.81 3H4.59C4 7 4 7.41 4 8c0 .59 0 1 .59 1h6.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1zM2 1h-.72c-.3.19-.58.25-1.03.34V2H1v2.14H.16V5H3v-.86H2V1zm.25 8.13c-.17 0-.45.03-.66.06.53-.56 1.14-1.25 1.14-1.89C2.71 6.52 2.17 6 1.37 6c-.59 0-.97.2-1.38.64l.58.58c.19-.19.38-.38.64-.38.28 0 .48.16.48.52 0 .53-.77 1.2-1.7 2.06V10h3l-.09-.88h-.66l.01.01zm-.08 3.78v-.03c.44-.19.64-.47.64-.86 0-.7-.56-1.11-1.44-1.11-.48 0-.89.19-1.28.52l.55.64c.25-.2.44-.31.69-.31.27 0 .42.13.42.36 0 .27-.2.44-.86.44v.75c.83 0 .98.17.98.47 0 .25-.23.38-.58.38-.28 0-.56-.14-.81-.38l-.48.66c.3.36.77.56 1.41.56.83 0 1.53-.41 1.53-1.16 0-.5-.31-.81-.77-.94v.01z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/list-unordered.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"list-unordered":{"width":12,"height":16,"d":"M2 13c0 .59 0 1-.59 1H.59C0 14 0 13.59 0 13c0-.59 0-1 .59-1h.81c.59 0 .59.41.59 1H2zm2.59-9h6.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1H4.59C4 2 4 2.41 4 3c0 .59 0 1 .59 1zM1.41 7H.59C0 7 0 7.41 0 8c0 .59 0 1 .59 1h.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1h.01zm0-5H.59C0 2 0 2.41 0 3c0 .59 0 1 .59 1h.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1h.01zm10 5H4.59C4 7 4 7.41 4 8c0 .59 0 1 .59 1h6.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1h.01zm0 5H4.59C4 12 4 12.41 4 13c0 .59 0 1 .59 1h6.81c.59 0 .59-.41.59-1 0-.59 0-1-.59-1h.01z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/location.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"location":{"width":12,"height":16,"d":"M6 0C2.69 0 0 2.5 0 5.5 0 10.02 6 16 6 16s6-5.98 6-10.5C12 2.5 9.31 0 6 0zm0 14.55C4.14 12.52 1 8.44 1 5.5 1 3.02 3.25 1 6 1c1.34 0 2.61.48 3.56 1.36.92.86 1.44 1.97 1.44 3.14 0 2.94-3.14 7.02-5 9.05zM8 5.5c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/lock.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"lock":{"width":12,"height":16,"d":"M4 13H3v-1h1v1zm8-6v7c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h1V4c0-2.2 1.8-4 4-4s4 1.8 4 4v2h1c.55 0 1 .45 1 1zM3.8 6h4.41V4c0-1.22-.98-2.2-2.2-2.2-1.22 0-2.2.98-2.2 2.2v2H3.8zM11 7H2v7h9V7zM4 8H3v1h1V8zm0 2H3v1h1v-1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/logo-gist.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"logo-gist":{"width":25,"height":16,"d":"M4.7 8.73h2.45v4.02c-.55.27-1.64.34-2.53.34-2.56 0-3.47-2.2-3.47-5.05 0-2.85.91-5.06 3.48-5.06 1.28 0 2.06.23 3.28.73V2.66C7.27 2.33 6.25 2 4.63 2 1.13 2 0 4.69 0 8.03c0 3.34 1.11 6.03 4.63 6.03 1.64 0 2.81-.27 3.59-.64V7.73H4.7v1zm6.39 3.72V6.06h-1.05v6.28c0 1.25.58 1.72 1.72 1.72v-.89c-.48 0-.67-.16-.67-.7v-.02zm.25-8.72c0-.44-.33-.78-.78-.78s-.77.34-.77.78.33.78.77.78.78-.34.78-.78zm4.34 5.69c-1.5-.13-1.78-.48-1.78-1.17 0-.77.33-1.34 1.88-1.34 1.05 0 1.66.16 2.27.36v-.94c-.69-.3-1.52-.39-2.25-.39-2.2 0-2.92 1.2-2.92 2.31 0 1.08.47 1.88 2.73 2.08 1.55.13 1.77.63 1.77 1.34 0 .73-.44 1.42-2.06 1.42-1.11 0-1.86-.19-2.33-.36v.94c.5.2 1.58.39 2.33.39 2.38 0 3.14-1.2 3.14-2.41 0-1.28-.53-2.03-2.75-2.23h-.03zm8.58-2.47v-.86h-2.42v-2.5l-1.08.31v2.11l-1.56.44v.48h1.56v5c0 1.53 1.19 2.13 2.5 2.13.19 0 .52-.02.69-.05v-.89c-.19.03-.41.03-.61.03-.97 0-1.5-.39-1.5-1.34V6.94h2.42v.02-.01z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/logo-github.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"logo-github":{"width":45,"height":16,"d":"M18.53 12.03h-.02c.009 0 .015.01.024.011h.006l-.01-.01zm.004.011c-.093.001-.327.05-.574.05-.78 0-1.05-.36-1.05-.83V8.13h1.59c.09 0 .16-.08.16-.19v-1.7c0-.09-.08-.17-.16-.17h-1.59V3.96c0-.08-.05-.13-.14-.13h-2.16c-.09 0-.14.05-.14.13v2.17s-1.09.27-1.16.28c-.08.02-.13.09-.13.17v1.36c0 .11.08.19.17.19h1.11v3.28c0 2.44 1.7 2.69 2.86 2.69.53 0 1.17-.17 1.27-.22.06-.02.09-.09.09-.16v-1.5a.177.177 0 0 0-.146-.18zm23.696-2.2c0-1.81-.73-2.05-1.5-1.97-.6.04-1.08.34-1.08.34v3.52s.49.34 1.22.36c1.03.03 1.36-.34 1.36-2.25zm2.43-.16c0 3.43-1.11 4.41-3.05 4.41-1.64 0-2.52-.83-2.52-.83s-.04.46-.09.52c-.03.06-.08.08-.14.08h-1.48c-.1 0-.19-.08-.19-.17l.02-11.11c0-.09.08-.17.17-.17h2.13c.09 0 .17.08.17.17v3.77s.82-.53 2.02-.53l-.01-.02c1.2 0 2.97.45 2.97 3.88zm-8.72-3.61H33.84c-.11 0-.17.08-.17.19v5.44s-.55.39-1.3.39-.97-.34-.97-1.09V6.25c0-.09-.08-.17-.17-.17h-2.14c-.09 0-.17.08-.17.17v5.11c0 2.2 1.23 2.75 2.92 2.75 1.39 0 2.52-.77 2.52-.77s.05.39.08.45c.02.05.09.09.16.09h1.34c.11 0 .17-.08.17-.17l.02-7.47c0-.09-.08-.17-.19-.17zm-23.7-.01h-2.13c-.09 0-.17.09-.17.2v7.34c0 .2.13.27.3.27h1.92c.2 0 .25-.09.25-.27V6.23c0-.09-.08-.17-.17-.17zm-1.05-3.38c-.77 0-1.38.61-1.38 1.38 0 .77.61 1.38 1.38 1.38.75 0 1.36-.61 1.36-1.38 0-.77-.61-1.38-1.36-1.38zm16.49-.25h-2.11c-.09 0-.17.08-.17.17v4.09h-3.31V2.6c0-.09-.08-.17-.17-.17h-2.13c-.09 0-.17.08-.17.17v11.11c0 .09.09.17.17.17h2.13c.09 0 .17-.08.17-.17V8.96h3.31l-.02 4.75c0 .09.08.17.17.17h2.13c.09 0 .17-.08.17-.17V2.6c0-.09-.08-.17-.17-.17zM8.81 7.35v5.74c0 .04-.01.11-.06.13 0 0-1.25.89-3.31.89-2.49 0-5.44-.78-5.44-5.92S2.58 1.99 5.1 2c2.18 0 3.06.49 3.2.58.04.05.06.09.06.14L7.94 4.5c0 .09-.09.2-.2.17-.36-.11-.9-.33-2.17-.33-1.47 0-3.05.42-3.05 3.73s1.5 3.7 2.58 3.7c.92 0 1.25-.11 1.25-.11v-2.3H4.88c-.11 0-.19-.08-.19-.17V7.35c0-.09.08-.17.19-.17h3.74c.11 0 .19.08.19.17z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/mail-read.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"mail-read":{"width":14,"height":16,"d":"M6 5H4V4h2v1zm3 1H4v1h5V6zm5-.48V14c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V5.52c0-.33.16-.63.42-.81L2 3.58V3c0-.55.45-1 1-1h1.2L7 0l2.8 2H11c.55 0 1 .45 1 1v.58l1.58 1.13c.27.19.42.48.42.81zM3 7.5L7 10l4-2.5V3H3v4.5zm-2 6l4.5-3-4.5-3v6zm11 .5l-5-3-5 3h10zm1-6.5l-4.5 3 4.5 3v-6z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/mail-reply.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"mail-reply":{"width":12,"height":16,"d":"M6 2.5L0 7l6 4.5v-3c1.73 0 5.14.95 6 4.38 0-4.55-3.06-7.05-6-7.38v-3z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/mail.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"mail":{"width":14,"height":16,"d":"M0 4v8c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1zm13 0L7 9 1 4h12zM1 5.5l4 3-4 3v-6zM2 12l3.5-3L7 10.5 8.5 9l3.5 3H2zm11-.5l-4-3 4-3v6z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/mark-github.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"mark-github":{"width":16,"height":16,"d":"M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/markdown.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"markdown":{"width":16,"height":16,"d":"M14.85 3H1.15C.52 3 0 3.52 0 4.15v7.69C0 12.48.52 13 1.15 13h13.69c.64 0 1.15-.52 1.15-1.15v-7.7C16 3.52 15.48 3 14.85 3zM9 11H7V8L5.5 9.92 4 8v3H2V5h2l1.5 2L7 5h2v6zm2.99.5L9.5 8H11V5h2v3h1.5l-2.51 3.5z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/megaphone.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"megaphone":{"width":16,"height":16,"d":"M10 1c-.17 0-.36.05-.52.14C8.04 2.02 4.5 4.58 3 5c-1.38 0-3 .67-3 2.5S1.63 10 3 10c.3.08.64.23 1 .41V15h2v-3.45c1.34.86 2.69 1.83 3.48 2.31.16.09.34.14.52.14.52 0 1-.42 1-1V2c0-.58-.48-1-1-1zm0 12c-.38-.23-.89-.58-1.5-1-.16-.11-.33-.22-.5-.34V3.31c.16-.11.31-.2.47-.31.61-.41 1.16-.77 1.53-1v11zm2-6h4v1h-4V7zm0 2l4 2v1l-4-2V9zm4-6v1l-4 2V5l4-2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/mention.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"mention":{"width":14,"height":16,"d":"M6.58 15c1.25 0 2.52-.31 3.56-.94l-.42-.94c-.84.52-1.89.83-3.03.83-3.23 0-5.64-2.08-5.64-5.72 0-4.37 3.23-7.18 6.58-7.18 3.45 0 5.22 2.19 5.22 5.2 0 2.39-1.34 3.86-2.5 3.86-1.05 0-1.36-.73-1.05-2.19l.73-3.75H8.98l-.11.72c-.41-.63-.94-.83-1.56-.83-2.19 0-3.66 2.39-3.66 4.38 0 1.67.94 2.61 2.3 2.61.84 0 1.67-.53 2.3-1.25.11.94.94 1.45 1.98 1.45 1.67 0 3.77-1.67 3.77-5C14 2.61 11.59 0 7.83 0 3.66 0 0 3.33 0 8.33 0 12.71 2.92 15 6.58 15zm-.31-5c-.73 0-1.36-.52-1.36-1.67 0-1.45.94-3.22 2.41-3.22.52 0 .84.2 1.25.83l-.52 3.02c-.63.73-1.25 1.05-1.78 1.05V10z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/milestone.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"milestone":{"width":14,"height":16,"d":"M8 2H6V0h2v2zm4 5H2c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h10l2 2-2 2zM8 4H6v2h2V4zM6 16h2V8H6v8z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/mirror.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"mirror":{"width":16,"height":16,"d":"M15.5 4.7L8.5 0l-7 4.7c-.3.19-.5.45-.5.8V16l7.5-4 7.5 4V5.5c0-.34-.2-.61-.5-.8zm-.5 9.8l-6-3.25V10H8v1.25L2 14.5v-9l6-4V6h1V1.5l6 4v9zM6 7h5V5l3 3-3 3V9H6v2L3 8l3-3v2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/mortar-board.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"mortar-board":{"width":16,"height":16,"d":"M7.83 9.19L4 8c-4-8 0 1.5 0 2.5S5.8 12 8 12s4-.5 4-1.5V8L8.17 9.19a.73.73 0 0 1-.36 0h.02zm.28-6.39a.34.34 0 0 0-.2 0L.27 5.18a.35.35 0 0 0 0 .67L2 6.4v1.77c-.3.17-.5.5-.5.86 0 .19.05.36.14.5-.08.14-.14.31-.14.5v2.58c0 .55 2 .55 2 0v-2.58c0-.19-.05-.36-.14-.5.08-.14.14-.31.14-.5 0-.38-.2-.69-.5-.86V6.72l4.89 1.53c.06.02.14.02.2 0l7.64-2.38a.35.35 0 0 0 0-.67L8.1 2.81l.01-.01zM8.02 6c-.55 0-1-.22-1-.5s.45-.5 1-.5 1 .22 1 .5-.45.5-1 .5z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/mute.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"mute":{"width":16,"height":16,"d":"M8 2.81v10.38c0 .67-.81 1-1.28.53L3 10H1c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h2l3.72-3.72C7.19 1.81 8 2.14 8 2.81zm7.53 3.22l-1.06-1.06-1.97 1.97-1.97-1.97-1.06 1.06L11.44 8 9.47 9.97l1.06 1.06 1.97-1.97 1.97 1.97 1.06-1.06L13.56 8l1.97-1.97z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/no-newline.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"no-newline":{"width":16,"height":16,"d":"M16 5v3c0 .55-.45 1-1 1h-3v2L9 8l3-3v2h2V5h2zM8 8c0 2.2-1.8 4-4 4s-4-1.8-4-4 1.8-4 4-4 4 1.8 4 4zM1.5 9.66L5.66 5.5C5.18 5.19 4.61 5 4 5 2.34 5 1 6.34 1 8c0 .61.19 1.17.5 1.66zM7 8c0-.61-.19-1.17-.5-1.66L2.34 10.5c.48.31 1.05.5 1.66.5 1.66 0 3-1.34 3-3z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/note.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"note":{"width":14,"height":16,"d":"M3 10h4V9H3v1zm0-2h6V7H3v1zm0-2h8V5H3v1zm10 6H1V3h12v9zM1 2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1H1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/octoface.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"octoface":{"width":16,"height":16,"d":"M14.7 5.34c.13-.32.55-1.59-.13-3.31 0 0-1.05-.33-3.44 1.3-1-.28-2.07-.32-3.13-.32s-2.13.04-3.13.32c-2.39-1.64-3.44-1.3-3.44-1.3-.68 1.72-.26 2.99-.13 3.31C.49 6.21 0 7.33 0 8.69 0 13.84 3.33 15 7.98 15S16 13.84 16 8.69c0-1.36-.49-2.48-1.3-3.35zM8 14.02c-3.3 0-5.98-.15-5.98-3.35 0-.76.38-1.48 1.02-2.07 1.07-.98 2.9-.46 4.96-.46 2.07 0 3.88-.52 4.96.46.65.59 1.02 1.3 1.02 2.07 0 3.19-2.68 3.35-5.98 3.35zM5.49 9.01c-.66 0-1.2.8-1.2 1.78s.54 1.79 1.2 1.79c.66 0 1.2-.8 1.2-1.79s-.54-1.78-1.2-1.78zm5.02 0c-.66 0-1.2.79-1.2 1.78s.54 1.79 1.2 1.79c.66 0 1.2-.8 1.2-1.79s-.53-1.78-1.2-1.78z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/organization.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"organization":{"width":16,"height":16,"d":"M16 12.999c0 .439-.45 1-1 1H7.995c-.539 0-.994-.447-.995-.999H1c-.54 0-1-.561-1-1 0-2.634 3-4 3-4s.229-.409 0-1c-.841-.621-1.058-.59-1-3 .058-2.419 1.367-3 2.5-3s2.442.58 2.5 3c.058 2.41-.159 2.379-1 3-.229.59 0 1 0 1s1.549.711 2.42 2.088C9.196 9.369 10 8.999 10 8.999s.229-.409 0-1c-.841-.62-1.058-.59-1-3 .058-2.419 1.367-3 2.5-3s2.437.581 2.495 3c.059 2.41-.158 2.38-1 3-.229.59 0 1 0 1s3.005 1.366 3.005 4"}}) 4 | -------------------------------------------------------------------------------- /src/icons/package.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"package":{"width":16,"height":16,"d":"M1 4.27v7.47c0 .45.3.84.75.97l6.5 1.73c.16.05.34.05.5 0l6.5-1.73c.45-.13.75-.52.75-.97V4.27c0-.45-.3-.84-.75-.97l-6.5-1.74a1.4 1.4 0 0 0-.5 0L1.75 3.3c-.45.13-.75.52-.75.97zm7 9.09l-6-1.59V5l6 1.61v6.75zM2 4l2.5-.67L11 5.06l-2.5.67L2 4zm13 7.77l-6 1.59V6.61l2-.55V8.5l2-.53V5.53L15 5v6.77zm-2-7.24L6.5 2.8l2-.53L15 4l-2 .53z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/paintcan.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"paintcan":{"width":12,"height":16,"d":"M6 0C2.69 0 0 2.69 0 6v1c0 .55.45 1 1 1v5c0 1.1 2.24 2 5 2s5-.9 5-2V8c.55 0 1-.45 1-1V6c0-3.31-2.69-6-6-6zm3 10v.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5V10c0-.28-.22-.5-.5-.5s-.5.22-.5.5v2.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-2c0-.28-.22-.5-.5-.5s-.5.22-.5.5v.5c0 .55-.45 1-1 1s-1-.45-1-1v-1c-.55 0-1-.45-1-1V7.2c.91.49 2.36.8 4 .8 1.64 0 3.09-.31 4-.8V9c0 .55-.45 1-1 1zM6 7c-1.68 0-3.12-.41-3.71-1C2.88 5.41 4.32 5 6 5c1.68 0 3.12.41 3.71 1-.59.59-2.03 1-3.71 1zm0-3c-2.76 0-5 .89-5 2 0-2.76 2.24-5 5-5s5 2.24 5 5c0-1.1-2.24-2-5-2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/pencil.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"pencil":{"width":14,"height":16,"d":"M0 12v3h3l8-8-3-3-8 8zm3 2H1v-2h1v1h1v1zm10.3-9.3L12 6 9 3l1.3-1.3a.996.996 0 0 1 1.41 0l1.59 1.59c.39.39.39 1.02 0 1.41z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/person.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"person":{"width":12,"height":16,"d":"M12 14.002a.998.998 0 0 1-.998.998H1.001A1 1 0 0 1 0 13.999V13c0-2.633 4-4 4-4s.229-.409 0-1c-.841-.62-.944-1.59-1-4 .173-2.413 1.867-3 3-3s2.827.586 3 3c-.056 2.41-.159 3.38-1 4-.229.59 0 1 0 1s4 1.367 4 4v1.002z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/pin.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"pin":{"width":16,"height":16,"d":"M10 1.2V2l.5 1L6 6H2.2c-.44 0-.67.53-.34.86L5 10l-4 5 5-4 3.14 3.14a.5.5 0 0 0 .86-.34V10l3-4.5 1 .5h.8c.44 0 .67-.53.34-.86L10.86.86a.5.5 0 0 0-.86.34z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/plug.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"plug":{"width":14,"height":16,"d":"M14 6V5h-4V3H8v1H6c-1.03 0-1.77.81-2 2L3 7c-1.66 0-3 1.34-3 3v2h1v-2c0-1.11.89-2 2-2l1 1c.25 1.16.98 2 2 2h2v1h2v-2h4V9h-4V6h4z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/plus-small.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"plus-small":{"width":7,"height":16,"d":"M4 7V4H3v3H0v1h3v3h1V8h3V7H4z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/plus.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"plus":{"width":12,"height":16,"d":"M12 9H7v5H5V9H0V7h5V2h2v5h5z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/primitive-dot.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"primitive-dot":{"width":8,"height":16,"d":"M0 8c0-2.2 1.8-4 4-4s4 1.8 4 4-1.8 4-4 4-4-1.8-4-4z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/primitive-square.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"primitive-square":{"width":8,"height":16,"d":"M8 12H0V4h8z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/project.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"project":{"width":15,"height":16,"d":"M10 12h3V2h-3v10zm-4-2h3V2H6v8zm-4 4h3V2H2v12zm-1 1h13V1H1v14zM14 0H1a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h13a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/pulse.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"pulse":{"width":14,"height":16,"d":"M11.5 8L8.8 5.4 6.6 8.5 5.5 1.6 2.38 8H0v2h3.6l.9-1.8.9 5.4L9 8.5l1.6 1.5H14V8z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/question.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"question":{"width":14,"height":16,"d":"M6 10h2v2H6v-2zm4-3.5C10 8.64 8 9 8 9H6c0-.55.45-1 1-1h.5c.28 0 .5-.22.5-.5v-1c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5V7H4c0-1.5 1.5-3 3-3s3 1 3 2.5zM7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 0 1 1.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/quote.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"quote":{"width":14,"height":16,"d":"M6.16 3.5C3.73 5.06 2.55 6.67 2.55 9.36c.16-.05.3-.05.44-.05 1.27 0 2.5.86 2.5 2.41 0 1.61-1.03 2.61-2.5 2.61-1.9 0-2.99-1.52-2.99-4.25 0-3.8 1.75-6.53 5.02-8.42L6.16 3.5zm7 0c-2.43 1.56-3.61 3.17-3.61 5.86.16-.05.3-.05.44-.05 1.27 0 2.5.86 2.5 2.41 0 1.61-1.03 2.61-2.5 2.61-1.89 0-2.98-1.52-2.98-4.25 0-3.8 1.75-6.53 5.02-8.42l1.14 1.84h-.01z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/radio-tower.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"radio-tower":{"width":16,"height":16,"d":"M4.79 6.11c.25-.25.25-.67 0-.92-.32-.33-.48-.76-.48-1.19 0-.43.16-.86.48-1.19.25-.26.25-.67 0-.92a.613.613 0 0 0-.45-.19c-.16 0-.33.06-.45.19-.57.58-.85 1.35-.85 2.11 0 .76.29 1.53.85 2.11.25.25.66.25.9 0zM2.33.52a.651.651 0 0 0-.92 0C.48 1.48.01 2.74.01 3.99c0 1.26.47 2.52 1.4 3.48.25.26.66.26.91 0s.25-.68 0-.94c-.68-.7-1.02-1.62-1.02-2.54 0-.92.34-1.84 1.02-2.54a.66.66 0 0 0 .01-.93zm5.69 5.1A1.62 1.62 0 1 0 6.4 4c-.01.89.72 1.62 1.62 1.62zM14.59.53a.628.628 0 0 0-.91 0c-.25.26-.25.68 0 .94.68.7 1.02 1.62 1.02 2.54 0 .92-.34 1.83-1.02 2.54-.25.26-.25.68 0 .94a.651.651 0 0 0 .92 0c.93-.96 1.4-2.22 1.4-3.48A5.048 5.048 0 0 0 14.59.53zM8.02 6.92c-.41 0-.83-.1-1.2-.3l-3.15 8.37h1.49l.86-1h4l.84 1h1.49L9.21 6.62c-.38.2-.78.3-1.19.3zm-.01.48L9.02 11h-2l.99-3.6zm-1.99 5.59l1-1h2l1 1h-4zm5.19-11.1c-.25.25-.25.67 0 .92.32.33.48.76.48 1.19 0 .43-.16.86-.48 1.19-.25.26-.25.67 0 .92a.63.63 0 0 0 .9 0c.57-.58.85-1.35.85-2.11 0-.76-.28-1.53-.85-2.11a.634.634 0 0 0-.9 0z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/reply.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"reply":{"width":14,"height":16,"d":"M6 3.5c3.92.44 8 3.125 8 10-2.312-5.062-4.75-6-8-6V11L.5 5.5 6 0v3.5z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/repo-clone.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"repo-clone":{"width":16,"height":16,"d":"M15 0H9v7c0 .55.45 1 1 1h1v1h1V8h3c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-4 7h-1V6h1v1zm4 0h-3V6h3v1zm0-2h-4V1h4v4zM4 5H3V4h1v1zm0-2H3V2h1v1zM2 1h6V0H1C.45 0 0 .45 0 1v12c0 .55.45 1 1 1h2v2l1.5-1.5L6 16v-2h5c.55 0 1-.45 1-1v-3H2V1zm9 10v2H6v-1H3v1H1v-2h10zM3 8h1v1H3V8zm1-1H3V6h1v1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/repo-force-push.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"repo-force-push":{"width":12,"height":16,"d":"M10 9H8v7H6V9H4l2.25-3H4l3-4 3 4H7.75L10 9zm1-9H1C.45 0 0 .45 0 1v12c0 .55.45 1 1 1h4v-1H1v-2h4v-1H2V1h9v9H9v1h2v2H9v1h2c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/repo-forked.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"repo-forked":{"width":10,"height":16,"d":"M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/repo-pull.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"repo-pull":{"width":16,"height":16,"d":"M13 8V6H7V4h6V2l3 3-3 3zM4 2H3v1h1V2zm7 5h1v6c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v2h-1V1H2v9h9V7zm0 4H1v2h2v-1h3v1h5v-2zM4 6H3v1h1V6zm0-2H3v1h1V4zM3 9h1V8H3v1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/repo-push.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"repo-push":{"width":12,"height":16,"d":"M4 3H3V2h1v1zM3 5h1V4H3v1zm4 0L4 9h2v7h2V9h2L7 5zm4-5H1C.45 0 0 .45 0 1v12c0 .55.45 1 1 1h4v-1H1v-2h4v-1H2V1h9.02L11 10H9v1h2v2H9v1h2c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/repo.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"repo":{"width":12,"height":16,"d":"M4 9H3V8h1v1zm0-3H3v1h1V6zm0-2H3v1h1V4zm0-2H3v1h1V2zm8-1v12c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1zm-1 10H1v2h2v-1h3v1h5v-2zm0-10H2v9h9V1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/rocket.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"rocket":{"width":16,"height":16,"d":"M12.17 3.83c-.27-.27-.47-.55-.63-.88-.16-.31-.27-.66-.34-1.02-.58.33-1.16.7-1.73 1.13-.58.44-1.14.94-1.69 1.48-.7.7-1.33 1.81-1.78 2.45H3L0 10h3l2-2c-.34.77-1.02 2.98-1 3l1 1c.02.02 2.23-.64 3-1l-2 2v3l3-3v-3c.64-.45 1.75-1.09 2.45-1.78.55-.55 1.05-1.13 1.47-1.7.44-.58.81-1.16 1.14-1.72-.36-.08-.7-.19-1.03-.34a3.39 3.39 0 0 1-.86-.63M16 0s-.09.38-.3 1.06c-.2.7-.55 1.58-1.06 2.66-.7-.08-1.27-.33-1.66-.72-.39-.39-.63-.94-.7-1.64C13.36.84 14.23.48 14.92.28 15.62.08 16 0 16 0"}}) 4 | -------------------------------------------------------------------------------- /src/icons/rss.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"rss":{"width":10,"height":16,"d":"M2 13H0v-2c1.11 0 2 .89 2 2zM0 3v1a9 9 0 0 1 9 9h1C10 7.48 5.52 3 0 3zm0 4v1c2.75 0 5 2.25 5 5h1c0-3.31-2.69-6-6-6z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/ruby.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"ruby":{"width":16,"height":16,"d":"M13 6l-5 5V4h3l2 2zm3 0l-8 8-8-8 4-4h8l4 4zm-8 6.5L14.5 6l-3-3h-7l-3 3L8 12.5z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/screen-full.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"screen-full":{"width":14,"height":16,"d":"M13 10h1v3c0 .547-.453 1-1 1h-3v-1h3v-3zM1 10H0v3c0 .547.453 1 1 1h3v-1H1v-3zm0-7h3V2H1c-.547 0-1 .453-1 1v3h1V3zm1 1h10v8H2V4zm2 6h6V6H4v4zm6-8v1h3v3h1V3c0-.547-.453-1-1-1h-3z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/screen-normal.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"screen-normal":{"width":14,"height":16,"d":"M2 4H0V3h2V1h1v2c0 .547-.453 1-1 1zm0 8H0v1h2v2h1v-2c0-.547-.453-1-1-1zm9-2c0 .547-.453 1-1 1H4c-.547 0-1-.453-1-1V6c0-.547.453-1 1-1h6c.547 0 1 .453 1 1v4zM9 7H5v2h4V7zm2 6v2h1v-2h2v-1h-2c-.547 0-1 .453-1 1zm1-10V1h-1v2c0 .547.453 1 1 1h2V3h-2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/search.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"search":{"width":16,"height":16,"d":"M15.7 13.3l-3.81-3.83A5.93 5.93 0 0 0 13 6c0-3.31-2.69-6-6-6S1 2.69 1 6s2.69 6 6 6c1.3 0 2.48-.41 3.47-1.11l3.83 3.81c.19.2.45.3.7.3.25 0 .52-.09.7-.3a.996.996 0 0 0 0-1.41v.01zM7 10.7c-2.59 0-4.7-2.11-4.7-4.7 0-2.59 2.11-4.7 4.7-4.7 2.59 0 4.7 2.11 4.7 4.7 0 2.59-2.11 4.7-4.7 4.7z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/server.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"server":{"width":12,"height":16,"d":"M11 6H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1zM2 9H1V7h1v2zm2 0H3V7h1v2zm2 0H5V7h1v2zm2 0H7V7h1v2zm3-8H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM2 4H1V2h1v2zm2 0H3V2h1v2zm2 0H5V2h1v2zm2 0H7V2h1v2zm3-1h-1V2h1v1zm0 8H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm-9 3H1v-2h1v2zm2 0H3v-2h1v2zm2 0H5v-2h1v2zm2 0H7v-2h1v2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/settings.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"settings":{"width":16,"height":16,"d":"M4 7H3V2h1v5zm-1 7h1v-3H3v3zm5 0h1V8H8v6zm5 0h1v-2h-1v2zm1-12h-1v6h1V2zM9 2H8v2h1V2zM5 8H2c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm5-3H7c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm5 4h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/shield.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"shield":{"width":14,"height":16,"d":"M7 0L0 2v6.02C0 12.69 5.31 16 7 16c1.69 0 7-3.31 7-7.98V2L7 0zM5 11l1.14-2.8a.568.568 0 0 0-.25-.59C5.33 7.25 5 6.66 5 6c0-1.09.89-2 1.98-2C8.06 4 9 4.91 9 6c0 .66-.33 1.25-.89 1.61-.19.13-.3.36-.25.59L9 11H5z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/sign-in.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"sign-in":{"width":14,"height":16,"d":"M7 6.75V12h4V8h1v4c0 .55-.45 1-1 1H7v3l-5.45-2.72c-.33-.17-.55-.52-.55-.91V1c0-.55.45-1 1-1h9c.55 0 1 .45 1 1v3h-1V1H3l4 2v2.25L10 3v2h4v2h-4v2L7 6.75z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/sign-out.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"sign-out":{"width":16,"height":16,"d":"M12 9V7H8V5h4V3l4 3-4 3zm-2 3H6V3L2 1h8v3h1V1c0-.55-.45-1-1-1H1C.45 0 0 .45 0 1v11.38c0 .39.22.73.55.91L6 16.01V13h4c.55 0 1-.45 1-1V8h-1v4z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/smiley.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"smiley":{"width":16,"height":16,"d":"M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.81 12.81a6.72 6.72 0 0 1-2.17 1.45c-.83.36-1.72.53-2.64.53-.92 0-1.81-.17-2.64-.53-.81-.34-1.55-.83-2.17-1.45a6.773 6.773 0 0 1-1.45-2.17A6.59 6.59 0 0 1 1.21 8c0-.92.17-1.81.53-2.64.34-.81.83-1.55 1.45-2.17.62-.62 1.36-1.11 2.17-1.45A6.59 6.59 0 0 1 8 1.21c.92 0 1.81.17 2.64.53.81.34 1.55.83 2.17 1.45.62.62 1.11 1.36 1.45 2.17.36.83.53 1.72.53 2.64 0 .92-.17 1.81-.53 2.64-.34.81-.83 1.55-1.45 2.17zM4 6.8v-.59c0-.66.53-1.19 1.2-1.19h.59c.66 0 1.19.53 1.19 1.19v.59c0 .67-.53 1.2-1.19 1.2H5.2C4.53 8 4 7.47 4 6.8zm5 0v-.59c0-.66.53-1.19 1.2-1.19h.59c.66 0 1.19.53 1.19 1.19v.59c0 .67-.53 1.2-1.19 1.2h-.59C9.53 8 9 7.47 9 6.8zm4 3.2c-.72 1.88-2.91 3-5 3s-4.28-1.13-5-3c-.14-.39.23-1 .66-1h8.59c.41 0 .89.61.75 1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/squirrel.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"squirrel":{"width":16,"height":16,"d":"M12 1C9.79 1 8 2.31 8 3.92c0 1.94.5 3.03 0 6.08 0-4.5-2.77-6.34-4-6.34.05-.5-.48-.66-.48-.66s-.22.11-.3.34c-.27-.31-.56-.27-.56-.27l-.13.58S.7 4.29.68 6.87c.2.33 1.53.6 2.47.43.89.05.67.79.47.99C2.78 9.13 2 8 1 8S0 9 1 9s1 1 3 1c-3.09 1.2 0 4 0 4H3c-1 0-1 1-1 1h6c3 0 5-1 5-3.47 0-.85-.43-1.79-1-2.53-1.11-1.46.23-2.68 1-2 .77.68 3 1 3-2 0-2.21-1.79-4-4-4zM2.5 6c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/star.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"star":{"width":14,"height":16,"d":"M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/stop.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"stop":{"width":14,"height":16,"d":"M10 1H4L0 5v6l4 4h6l4-4V5l-4-4zm3 9.5L9.5 14h-5L1 10.5v-5L4.5 2h5L13 5.5v5zM6 4h2v5H6V4zm0 6h2v2H6v-2z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/sync.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"sync":{"width":12,"height":16,"d":"M10.24 7.4a4.15 4.15 0 0 1-1.2 3.6 4.346 4.346 0 0 1-5.41.54L4.8 10.4.5 9.8l.6 4.2 1.31-1.26c2.36 1.74 5.7 1.57 7.84-.54a5.876 5.876 0 0 0 1.74-4.46l-1.75-.34zM2.96 5a4.346 4.346 0 0 1 5.41-.54L7.2 5.6l4.3.6-.6-4.2-1.31 1.26c-2.36-1.74-5.7-1.57-7.85.54C.5 5.03-.06 6.65.01 8.26l1.75.35A4.17 4.17 0 0 1 2.96 5z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/tag.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"tag":{"width":14,"height":16,"d":"M7.73 1.73C7.26 1.26 6.62 1 5.96 1H3.5C2.13 1 1 2.13 1 3.5v2.47c0 .66.27 1.3.73 1.77l6.06 6.06c.39.39 1.02.39 1.41 0l4.59-4.59a.996.996 0 0 0 0-1.41L7.73 1.73zM2.38 7.09c-.31-.3-.47-.7-.47-1.13V3.5c0-.88.72-1.59 1.59-1.59h2.47c.42 0 .83.16 1.13.47l6.14 6.13-4.73 4.73-6.13-6.15zM3.01 3h2v2H3V3h.01z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/tasklist.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"tasklist":{"width":16,"height":16,"d":"M15.41 9H7.59C7 9 7 8.59 7 8c0-.59 0-1 .59-1h7.81c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zM9.59 4C9 4 9 3.59 9 3c0-.59 0-1 .59-1h5.81c.59 0 .59.41.59 1 0 .59 0 1-.59 1H9.59zM0 3.91l1.41-1.3L3 4.2 7.09 0 8.5 1.41 3 6.91l-3-3zM7.59 12h7.81c.59 0 .59.41.59 1 0 .59 0 1-.59 1H7.59C7 14 7 13.59 7 13c0-.59 0-1 .59-1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/telescope.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"telescope":{"width":14,"height":16,"d":"M8 9l3 6h-1l-2-4v5H7v-6l-2 5H4l2-5 2-1zM7 0H6v1h1V0zM5 3H4v1h1V3zM2 1H1v1h1V1zM.63 9a.52.52 0 0 0-.16.67l.55.92c.13.23.41.31.64.2l1.39-.66-1.16-2-1.27.86.01.01zm7.89-5.39l-5.8 3.95L3.95 9.7l6.33-3.03-1.77-3.06h.01zm4.22 1.28l-1.47-2.52a.51.51 0 0 0-.72-.17l-1.2.83 1.84 3.2 1.33-.64c.27-.13.36-.44.22-.7z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/terminal.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"terminal":{"width":14,"height":16,"d":"M7 10h4v1H7v-1zm-3 1l3-3-3-3-.75.75L5.5 8l-2.25 2.25L4 11zm10-8v10c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h12c.55 0 1 .45 1 1zm-1 0H1v10h12V3z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/text-size.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"text-size":{"width":18,"height":16,"d":"M13.62 9.08L12.1 3.66h-.06l-1.5 5.42h3.08zM5.7 10.13S4.68 6.52 4.53 6.02h-.08l-1.13 4.11H5.7zM17.31 14h-2.25l-.95-3.25h-4.07L9.09 14H6.84l-.69-2.33H2.87L2.17 14H0l3.3-9.59h2.5l2.17 6.34L10.86 2h2.52l3.94 12h-.01z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/three-bars.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"three-bars":{"width":12,"height":16,"d":"M11.41 9H.59C0 9 0 8.59 0 8c0-.59 0-1 .59-1H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zm0-4H.59C0 5 0 4.59 0 4c0-.59 0-1 .59-1H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zM.59 11H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1H.59C0 13 0 12.59 0 12c0-.59 0-1 .59-1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/thumbsdown.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"thumbsdown":{"width":16,"height":16,"d":"M15.98 7.83l-.97-5.95C14.84.5 13.13 0 12 0H5.69c-.2 0-.38.05-.53.14L3.72 1H2C.94 1 0 1.94 0 3v4c0 1.06.94 2.02 2 2h2c.91 0 1.39.45 2.39 1.55.91 1 .88 1.8.63 3.27-.08.5.06 1 .42 1.42.39.47.98.77 1.56.77 1.83 0 3-3.72 3-5.02l-.02-.98h2.04c1.16 0 1.95-.8 1.98-1.97 0-.06.02-.13-.02-.2v-.01zm-1.97 1.19h-1.99c-.7 0-1.03.28-1.03.97l.03 1.03c0 1.27-1.17 4-2 4-.5 0-1.08-.5-1-1 .25-1.58.34-2.78-.89-4.14C6.11 8.75 5.36 8 4 8V2l1.67-1H12c.73 0 1.95.31 2 1l.02.02 1 6c-.03.64-.38 1-1 1h-.01z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/thumbsup.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"thumbsup":{"width":16,"height":16,"d":"M14 14c-.05.69-1.27 1-2 1H5.67L4 14V8c1.36 0 2.11-.75 3.13-1.88 1.23-1.36 1.14-2.56.88-4.13-.08-.5.5-1 1-1 .83 0 2 2.73 2 4l-.02 1.03c0 .69.33.97 1.02.97h2c.63 0 .98.36 1 1l-1 6L14 14zm0-8h-2.02l.02-.98C12 3.72 10.83 0 9 0c-.58 0-1.17.3-1.56.77-.36.41-.5.91-.42 1.41.25 1.48.28 2.28-.63 3.28-1 1.09-1.48 1.55-2.39 1.55H2C.94 7 0 7.94 0 9v4c0 1.06.94 2 2 2h1.72l1.44.86c.16.09.33.14.52.14h6.33c1.13 0 2.84-.5 3-1.88l.98-5.95c.02-.08.02-.14.02-.2-.03-1.17-.84-1.97-2-1.97H14z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/tools.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"tools":{"width":16,"height":16,"d":"M4.48 7.27c.26.26 1.28 1.33 1.28 1.33l.56-.58-.88-.91 1.69-1.8s-.76-.74-.43-.45c.32-1.19.03-2.51-.87-3.44C4.93.5 3.66.2 2.52.51l1.93 2-.51 1.96-1.89.52-1.93-2C-.19 4.17.1 5.48 1 6.4c.94.98 2.29 1.26 3.48.87zm6.44 1.94l-2.33 2.3 3.84 3.98c.31.33.73.49 1.14.49.41 0 .82-.16 1.14-.49.63-.65.63-1.7 0-2.35l-3.79-3.93zM16 2.53L13.55 0 6.33 7.46l.88.91-4.31 4.46-.99.53-1.39 2.27.35.37 2.2-1.44.51-1.02L7.9 9.08l.88.91L16 2.53z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/trashcan.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"trashcan":{"width":12,"height":16,"d":"M11 2H9c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1H2c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1v9c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-1 12H3V5h1v8h1V5h1v8h1V5h1v8h1V5h1v9zm1-10H2V3h9v1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/triangle-down.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"triangle-down":{"width":12,"height":16,"d":"M0 5l6 6 6-6z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/triangle-left.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"triangle-left":{"width":6,"height":16,"d":"M6 2L0 8l6 6z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/triangle-right.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"triangle-right":{"width":6,"height":16,"d":"M0 14l6-6-6-6z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/triangle-up.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"triangle-up":{"width":12,"height":16,"d":"M12 11L6 5l-6 6z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/unfold.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"unfold":{"width":14,"height":16,"d":"M11.5 7.5L14 10c0 .55-.45 1-1 1H9v-1h3.5l-2-2h-7l-2 2H5v1H1c-.55 0-1-.45-1-1l2.5-2.5L0 5c0-.55.45-1 1-1h4v1H1.5l2 2h7l2-2H9V4h4c.55 0 1 .45 1 1l-2.5 2.5zM6 6h2V3h2L7 0 4 3h2v3zm2 3H6v3H4l3 3 3-3H8V9z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/unmute.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"unmute":{"width":16,"height":16,"d":"M12 8.02c0 1.09-.45 2.09-1.17 2.83l-.67-.67c.55-.56.89-1.31.89-2.16 0-.85-.34-1.61-.89-2.16l.67-.67A3.99 3.99 0 0 1 12 8.02zM7.72 2.28L4 6H2c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h2l3.72 3.72c.47.47 1.28.14 1.28-.53V2.81c0-.67-.81-1-1.28-.53zm5.94.08l-.67.67a6.996 6.996 0 0 1 2.06 4.98c0 1.94-.78 3.7-2.06 4.98l.67.67A7.973 7.973 0 0 0 16 8c0-2.22-.89-4.22-2.34-5.66v.02zm-1.41 1.41l-.69.67a5.05 5.05 0 0 1 1.48 3.58c0 1.39-.56 2.66-1.48 3.56l.69.67A5.971 5.971 0 0 0 14 8.02c0-1.65-.67-3.16-1.75-4.25z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/unverified.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"unverified":{"width":16,"height":16,"d":"M15.67 7.06l-1.08-1.34c-.17-.22-.28-.48-.31-.77l-.19-1.7a1.51 1.51 0 0 0-1.33-1.33l-1.7-.19c-.3-.03-.56-.16-.78-.33L8.94.32c-.55-.44-1.33-.44-1.88 0L5.72 1.4c-.22.17-.48.28-.77.31l-1.7.19c-.7.08-1.25.63-1.33 1.33l-.19 1.7c-.03.3-.16.56-.33.78L.32 7.05c-.44.55-.44 1.33 0 1.88l1.08 1.34c.17.22.28.48.31.77l.19 1.7c.08.7.63 1.25 1.33 1.33l1.7.19c.3.03.56.16.78.33l1.34 1.08c.55.44 1.33.44 1.88 0l1.34-1.08c.22-.17.48-.28.77-.31l1.7-.19c.7-.08 1.25-.63 1.33-1.33l.19-1.7c.03-.3.16-.56.33-.78l1.08-1.34c.44-.55.44-1.33 0-1.88zM9 11.5c0 .28-.22.5-.5.5h-1c-.27 0-.5-.22-.5-.5v-1c0-.28.23-.5.5-.5h1c.28 0 .5.22.5.5v1zm1.56-4.89c-.06.17-.17.33-.3.47-.13.16-.14.19-.33.38-.16.17-.31.3-.52.45-.11.09-.2.19-.28.27-.08.08-.14.17-.19.27-.05.1-.08.19-.11.3-.03.11-.03.13-.03.25H7.13c0-.22 0-.31.03-.48.03-.19.08-.36.14-.52.06-.14.14-.28.25-.42.11-.13.23-.25.41-.38.27-.19.36-.3.48-.52.12-.22.2-.38.2-.59 0-.27-.06-.45-.2-.58-.13-.13-.31-.19-.58-.19-.09 0-.19.02-.3.05-.11.03-.17.09-.25.16-.08.07-.14.11-.2.2a.41.41 0 0 0-.09.28h-2c0-.38.13-.56.27-.83.16-.27.36-.5.61-.67.25-.17.55-.3.88-.38.33-.08.7-.13 1.09-.13.44 0 .83.05 1.17.13.34.09.63.22.88.39.23.17.41.38.55.63.13.25.19.55.19.88 0 .22 0 .42-.08.59l-.02-.01z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/verified.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"verified":{"width":16,"height":16,"d":"M15.67 7.06l-1.08-1.34c-.17-.22-.28-.48-.31-.77l-.19-1.7a1.51 1.51 0 0 0-1.33-1.33l-1.7-.19c-.3-.03-.56-.16-.78-.33L8.94.32c-.55-.44-1.33-.44-1.88 0L5.72 1.4c-.22.17-.48.28-.77.31l-1.7.19c-.7.08-1.25.63-1.33 1.33l-.19 1.7c-.03.3-.16.56-.33.78L.32 7.05c-.44.55-.44 1.33 0 1.88l1.08 1.34c.17.22.28.48.31.77l.19 1.7c.08.7.63 1.25 1.33 1.33l1.7.19c.3.03.56.16.78.33l1.34 1.08c.55.44 1.33.44 1.88 0l1.34-1.08c.22-.17.48-.28.77-.31l1.7-.19c.7-.08 1.25-.63 1.33-1.33l.19-1.7c.03-.3.16-.56.33-.78l1.08-1.34c.44-.55.44-1.33 0-1.88zM6.5 12L3 8.5 4.5 7l2 2 5-5L13 5.55 6.5 12z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/versions.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"versions":{"width":14,"height":16,"d":"M13 3H7c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-1 8H8V5h4v6zM4 4h1v1H4v6h1v1H4c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1zM1 5h1v1H1v4h1v1H1c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/watch.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"watch":{"width":12,"height":16,"d":"M6 8h2v1H5V5h1v3zm6 0c0 2.22-1.2 4.16-3 5.19V15c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1v-1.81C1.2 12.16 0 10.22 0 8s1.2-4.16 3-5.19V1c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v1.81c1.8 1.03 3 2.97 3 5.19zm-1 0c0-2.77-2.23-5-5-5S1 5.23 1 8s2.23 5 5 5 5-2.23 5-5z"}}) 4 | -------------------------------------------------------------------------------- /src/icons/x.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"x":{"width":12,"height":16,"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"}}) 4 | -------------------------------------------------------------------------------- /src/icons/zap.js: -------------------------------------------------------------------------------- 1 | import Octicon from '../components/Octicon.vue' 2 | 3 | Octicon.register({"zap":{"width":10,"height":16,"d":"M10 7H6l3-7-9 9h4l-3 7z"}}) 4 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import './icons' 2 | import Octicon from './components/Octicon.vue' 3 | 4 | export default Octicon 5 | -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- 1 | // Copied from vue/src/core/util/debug.js 2 | 3 | let warn = () => {} 4 | 5 | if (process.env.NODE_ENV !== 'production') { 6 | const hasConsole = typeof console !== 'undefined' 7 | 8 | warn = (msg, vm) => { 9 | if (hasConsole) { 10 | console.error(`[Vue warn]: ${msg} ` + ( 11 | vm ? formatLocation(formatComponentName(vm)) : '' 12 | )) 13 | } 14 | } 15 | 16 | const formatComponentName = vm => { 17 | if (vm.$root === vm) { 18 | return 'root instance' 19 | } 20 | const name = vm._isVue 21 | ? vm.$options.name || vm.$options._componentTag 22 | : vm.name 23 | return name ? `component <${name}>` : `anonymous component` 24 | } 25 | 26 | const formatLocation = str => { 27 | if (str === 'anonymous component') { 28 | str += ` - use the "name" option for better debugging messages.` 29 | } 30 | return `(found in ${str})` 31 | } 32 | } 33 | 34 | export { warn } 35 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | var path = require('path') 2 | var webpack = require('webpack') 3 | var merge = require('webpack-merge') 4 | 5 | var base = { 6 | resolveLoader: { 7 | root: path.join(__dirname, 'node_modules'), 8 | }, 9 | module: { 10 | loaders: [ 11 | { 12 | test: /\.vue$/, 13 | loader: 'vue' 14 | }, 15 | { 16 | test: /\.js$/, 17 | loader: 'babel', 18 | exclude: /node_modules/ 19 | }, 20 | { 21 | test: /\.(png|jpg|gif|svg)$/, 22 | loader: 'file', 23 | query: { 24 | name: '[name].[ext]?[hash]' 25 | } 26 | } 27 | ] 28 | }, 29 | devServer: { 30 | historyApiFallback: true, 31 | noInfo: true 32 | } 33 | } 34 | 35 | if (process.env.NODE_ENV === 'production') { 36 | base.devtool = '#source-map' 37 | // http://vue-loader.vuejs.org/en/workflow/production.html 38 | base.plugins = (module.exports.plugins || []).concat([ 39 | new webpack.DefinePlugin({ 40 | 'process.env': { 41 | NODE_ENV: '"production"' 42 | } 43 | }), 44 | new webpack.optimize.UglifyJsPlugin({ 45 | compress: { 46 | warnings: false 47 | } 48 | }) 49 | ]) 50 | } 51 | 52 | var demo = merge(base, { 53 | entry: './demo/index.js', 54 | output: { 55 | path: path.resolve(__dirname, './demo'), 56 | publicPath: '/', 57 | filename: 'bundle.js' 58 | } 59 | }) 60 | 61 | var build = merge(base, { 62 | entry: './src/index.js', 63 | output: { 64 | path: path.resolve(__dirname, './dist'), 65 | publicPath: '/', 66 | filename: 'vue-octicon.js', 67 | library: 'VueOcticon', 68 | libraryTarget: 'umd' 69 | } 70 | }) 71 | 72 | module.exports = [demo, build] 73 | --------------------------------------------------------------------------------