c129d2af6d
# New Icons - Apache Tomcat (#4154) - Blazemeter (#4385) - Cocos (#4340) - Delphi (#4139) - DoorDash (#4094) - GitBook (#3975) - Informatica (#4142) - Jaguar (#4267) - Max-Planck-Gesellschaft (#3793) - MeWe (#4268) - ngrok (#3949) - Packagist (#4390) - PCGamingWiki (#3664) - Pro Tools (#3880) - SingleStore (#4451) - Spyder IDE (#4092) - Thymeleaf (#4411) - Triller (#4384) - TryHackMe (#4258) # Updated Icons - Academia (#4449) - Adobe InDesign (#4460) - AirPlay Audio (#3963) - Amazon Lumberyard (#3964) - AngelList (#3966) - Apache NetBeans IDE (#4421) - Apple Pay (#3972) - AT&T (#3980) - AT&T (#3980) - Azure Functions (#3983) - Baidu (#3984) - Beats (#3995) - Beats by Dre (#3996) - Behance (#3997) - Boeing (#4000) - Buffer (#4004) - CD Projekt (#4432) - Cinema 4D (#4005) - Cirrus CI (#4006) - CloudBees (#4007) - CodeChef (#4009) - CodeIgniter (#4010) - Codeship (#4011) - Codewars (#4012) - Common Workflow Language (#4013) - ComproPago (#4015) - Corona Engine (#4454) - Craft CMS (#4144) - CSS Wizardry (#4017) - Dassault Systèmes (#4019) - DataCamp (#4455) - Datadog (#4020) - dblp (#4021) - Diaspora (#4023) - DLNA (#4025) - Draugiem.lv (#4026) - Elastic Cloud (#4031) - Electron (#4034) - Elixir (#4035) - Envato (#4038) - Eventbrite (#4039) - Ferrari N.V. (#4456) - FileZilla (#4048) - freedesktop.org (#4049) - Garmin (#4445) - Genius (#4050) - Gitea (#4052) - GitHub Sponsors (#4457) - Gitpod (#4441) - Glitch (#4053) - GNU IceCat (#4054) - GoldenLine (#4056) - Goodreads (#4057) - Google Nearby (#4059) - Grafana (#4062) - Gumtree (#4064) - HackerEarth (#4065) - Haskell (#4066) - Helm (#4067) - HERE (#4068) - Hexo (#4069) - homify (#4070) - iCloud (#4073) - ICON (#4074) - ICQ (#4075) - Indeed (#4076) - JetBrains (#4347) - Jinja (#4078) - KaiOS (#4079) - Kentico (#4080) - Keybase (#4081) - Kibana (#4082) - Last.fm (#4083) - LeetCode (#4084) - LibraryThing (#4085) - LLVM (#4088) - Mendeley (#4102) - Mix (#3921) - Mojang Studios (#4288) - Notist (#4112) - Nutanix (#4114) - Opel (#4431) - Open Collective (#4160) - Overleaf (#4162) - Palo Alto Software (#4163) - Pi-hole (#4167) - Prismic (#4171) - protocols.io (#4172) - ProtonMail (#4173) - PureScript (#4174) - Quarkus (#4175) - React (#4430) - Realm (#3930) - Scrutinizer CI (#3935) - Slackware (#3938) - StackPath (#4198) - Topcoder (#4226) - Tor Project (#4248) - TrainerRoad (#4227) - Treehouse (#4228) - Udacity (#4229) - Vagrant (#4230) - Veeam (#4231) - Wattpad (#4290) - webcomponents.org (#4234) - WeChat (#4236) - Windows 95 (#4237) - XAML (#4240) - Yelp (#4242) - Zulip (#4255) |
||
---|---|---|
_data | ||
.github | ||
icons | ||
images | ||
scripts | ||
tests | ||
_config.yml | ||
.dockerignore | ||
.editorconfig | ||
.gitattributes | ||
.gitignore | ||
.gitpod.yml | ||
.jsonlintschema | ||
.npmignore | ||
.svglint-ignored.json | ||
.svglintrc.js | ||
.svgo.yml | ||
CNAME | ||
composer.json | ||
CONTRIBUTING.md | ||
Dockerfile | ||
Gemfile | ||
Gemfile.lock | ||
index.html | ||
LICENSE.md | ||
package-lock.json | ||
package.json | ||
README.md | ||
site_script.js | ||
stylesheet.css |
Simple Icons
Over 1000 Free SVG icons for popular brands. See them all on one page at SimpleIcons.org. Contributions, corrections & requests can be made on GitHub. Started by Dan Leech.
Usage
General Usage
Icons can be downloaded as SVGs directly from our website - simply click the icon you want, and the download should start automatically.
CDN Usage
Icons can be served from a CDN such as JSDelivr or Unpkg. Simply use the simple-icons
npm package and specify a version in the URL like the following:
<img height="32" width="32" src="https://cdn.jsdelivr.net/npm/simple-icons@v4/icons/[ICON NAME].svg" />
<img height="32" width="32" src="https://unpkg.com/simple-icons@v4/icons/[ICON NAME].svg" />
Where [ICON NAME]
is replaced by the icon name, for example:
<img height="32" width="32" src="https://cdn.jsdelivr.net/npm/simple-icons@v4/icons/simpleicons.svg" />
<img height="32" width="32" src="https://unpkg.com/simple-icons@v4/icons/simpleicons.svg" />
These examples use the latest major version. This means you won't receive any updates following the next major release. You can use @latest
instead to receive updates indefinitely. However, this will result in a 404
error if the icon is removed.
Node Usage
The icons are also available through our npm package. To install, simply run:
$ npm install simple-icons
The API can then be used as follows:
const simpleIcons = require('simple-icons');
console.log(simpleIcons.get('Simple Icons'));
/*
{
title: 'Simple Icons',
slug: 'simpleicons',
hex: '111111',
source: 'https://simpleicons.org/',
svg: '<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">...</svg>',
path: 'M12 12v-1.5c-2.484 ...'
}
*/
Alternatively you can import the needed icons individually. This is useful if you are e.g. compiling your code with webpack and therefore have to be mindful of your package size:
const icon = require('simple-icons/icons/simpleicons');
console.log(icon);
/*
{
title: 'Simple Icons',
slug: 'simpleicons',
hex: '111111',
source: 'https://simpleicons.org/',
svg: '<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">...</svg>',
path: 'M12 12v-1.5c-2.484 ...'
}
*/
TypeScript Usage
There are also TypeScript type definitions for the Node package. To use them, simply run:
$ npm install @types/simple-icons
PHP Usage
The icons are also available through our Packagist package. To install, simply run:
$ composer require simple-icons/simple-icons
The package can then be used as follows:
<?php
echo file_get_contents('path/to/package/icons/simple-icons.svg');
// <svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">...</svg>
?>
Third Party Extensions
Drupal
Icons are also available as a Drupal module created by Phil Wolstenholme.
Flutter
Icons are also available as a Flutter package created by @muj-programmer.
Home Assistant
Icons are also available as a Home Assistant plugin created by @vigonotion.
Kirby
Icons are also available as a Kirby plugin created by @runxel.
React
Icons are also available as a React package created by @wootsbot.
Svelte
Icons are also available as a Svelte package created by @wootsbot.
Vue
Icons are also available as a Vue package created by @noahlitvin.
WordPress
Icons are also available as a WordPress plugin created by @tjtaylo.