├── .npmignore
├── .gitignore
├── vercel.json
├── icons
├── now.svg
├── gitter.svg
├── vercel.svg
├── bitcoin-lightning.svg
├── azure.svg
├── codeclimate.svg
├── haskell.svg
├── terraform.svg
├── patreon.svg
├── terminal.svg
├── gitlab.svg
├── windows.svg
├── awesome.svg
├── zeit.svg
├── npm.svg
├── azurepipelines.svg
├── bitcoin.svg
├── commonwl.svg
├── medium.svg
├── rss.svg
├── codebeat.svg
├── buymeacoffee.svg
├── appveyor.svg
├── packagephobia.svg
├── cocoapods.svg
├── ruby.svg
├── googleplay.svg
├── apple.svg
├── kofi.svg
├── dockbit.svg
├── circleci.svg
├── git.svg
├── telegram.svg
├── typescript.svg
├── twitter.svg
├── chrome.svg
├── flow.svg
├── graphql.svg
├── nuget.svg
├── dependabot.svg
├── eclipse.svg
├── docker.svg
├── sourcegraph.svg
├── airbnb.svg
├── libraries.svg
├── slack.svg
├── scrutinizer.svg
├── deepscan.svg
├── codacy.svg
├── codecov.svg
├── wiki.svg
├── codeship.svg
├── github.svg
├── atom.svg
├── postgresql.svg
├── visualstudio.svg
├── discord.svg
├── pypi.svg
├── firefox.svg
├── jsdelivr.svg
├── keybase.svg
├── lgtm.svg
├── travis.svg
└── maven.svg
├── README.md
├── package.json
└── preview.html
/.npmignore:
--------------------------------------------------------------------------------
1 | preview
2 | build.js
3 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | index.js
2 | node_modules
3 |
4 | .now
--------------------------------------------------------------------------------
/vercel.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": 2,
3 | "routes": [
4 | { "src": "/", "dest": "/preview.html" }
5 | ]
6 | }
7 |
--------------------------------------------------------------------------------
/icons/now.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/gitter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/vercel.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/icons/bitcoin-lightning.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/azure.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # badgen-icons
2 |
3 | Icons for badgen.net
4 |
5 | ## Add an icon
6 |
7 | - Optimize markup with [svgomg](https://jakearchibald.github.io/svgomg/)
8 | - Preview with [badgen-icons.now.sh](https://badgen-icons.now.sh/)
9 |
--------------------------------------------------------------------------------
/icons/codeclimate.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/haskell.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/terraform.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/patreon.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/terminal.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/gitlab.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/windows.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/awesome.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/zeit.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/npm.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/icons/azurepipelines.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/bitcoin.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "badgen-icons",
3 | "description": "Badgen's icons",
4 | "version": "0.17.0",
5 | "repository": "badgen/badgen-icons",
6 | "author": "Amio ",
7 | "license": "ISC",
8 | "main": "index.js",
9 | "scripts": {
10 | "build": "node build.js",
11 | "prepack": "npm run build"
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/icons/commonwl.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/medium.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/rss.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/codebeat.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/buymeacoffee.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/appveyor.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/packagephobia.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/cocoapods.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/ruby.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/googleplay.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/apple.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/kofi.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/dockbit.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/circleci.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/icons/git.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/telegram.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/typescript.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/twitter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/chrome.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/flow.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/graphql.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/nuget.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/dependabot.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/eclipse.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/docker.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/sourcegraph.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/airbnb.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/libraries.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/slack.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/scrutinizer.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/deepscan.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/codacy.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/codecov.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/wiki.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/icons/codeship.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/github.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/atom.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/postgresql.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/visualstudio.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/discord.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/pypi.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/firefox.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/jsdelivr.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/keybase.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/lgtm.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/preview.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
119 |
120 |
121 |
122 |
--------------------------------------------------------------------------------
/icons/travis.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/maven.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------