09fa8aa089
# New Icons - Abbvie (#3645) - AI Dungeon (#3662) - AWS Amplify (#3612) - BigCommerce (#4387) - Dacia (#4338) - Dialogflow (#3460) - Fastlane (#3906) - Fing (#4339) - Fozzy (#4301) - Katacoda (#3790) - ProtonDB (#3670) - SteamDB (#3665) - STMicroelectronics (#4140) - Tasmota (#4349) - Zenn (#4372) # Updated Icons - Adobe Premiere Pro (#3384) - Apache Ant (#4406) - Apache Cassandra (#3968) - Apache Flink (#4375, #4343) - Apache Groovy (#4375) - Apache Kafka (#4344) - Apache RocketMQ (#4345) - Apache Solr (#4375) - Apple (#3970) - Apple Music (#3971) - Bath ASU (#3993) - Beatport (#3994) - Bitrise (#4143) - BMC Software (#3999) - Boost (#4001) - Bootstrap (#4388) - Buddy (#4003) - Clyp (#4008) - Composer (#4014) - Coursera (#4016) - Dash (#4018) - Dependabot (#4022) - Drupal (#4260) - Dunked (#4028) - Dynatrace (#4029) - Elastic (#4030) - Elastic Stack (#4033) - Elasticsearch (#4032) - Empire Kred (#4037) - F-Secure (#4041) - FACEIT (#4145) - Fandom (#4043) - Favro (#4044) - FeatHub (#4045) - Figma (#4376) - Fiverr (#4377) - GIMP (#4051) - GNU (#3866) - Godot Engine (#4055) - Google Podcasts (#3902) - Google Tag Manager (#3903) - Gradle (#4061) - HappyCow (#3905) - HP (#4146) - Iata (#4072) - Itch.io (#4374) - Kaspersky (#3910) - LaTeX (#3865) - LineageOS (#4086) - Linode (#4087) - Logstash (#4147) - Magisk (#4096) - MailChimp (#3914) - Mastodon (#4098) - Mathworks (#4099) - Medium (#4337) - Meetup (#4101) - Micro.blog (#4148) - Microsoft Office (#4103) - Mixcloud (#3161) - Netflix (#4367) - Netlify (#4108) - OCaml (#4155) - Octave (#4157) - Odnoklassniki (#4158) - Open Access (#4159) - Open Source Initiative (#3925) - Origin (#4161) - Pantheon (#4164) - Parse.ly (#4165) - Patreon (#4166) - PeerTube (#4149) - Piwigo (#4168) - Plurk (#4170) - Qi (#3927) - Qiita (#3928) - Quasar (#3929) - Read the Docs (#4179) - Scaleway (#3934) - SemVer (#4414) - SonicWall (#4192) - Source Engine (#4193) - Stitcher (#3116) - TELE5 (#3941) - Terraform (#4223) - Travis CI (#4330) - Trove (#3943) - TypeScript (#4370) - Unilever (#4380) - Vauxhall (#3944) - Vultr (#3870) - WebAuthn (#3945) - YouTube Music (#4404) - ZDF (#3948) |
||
---|---|---|
_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 | ||
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.