701d605d1e
# New Icons - 3M (#3631) - Accenture (#4396) - AIOHTTP (#4536) - AniList (#4609) - AnyDesk (#4663) - Apache JMeter (#4594) - Apache Kylin (#4545) - ARK Ecosystem (#4699) - B&R Automation (#4552) - bigbasket (#4572, #4616) - Bugcrowd (#4615) - CheckiO (#4512) - Chrysler (#4357) - Cloudways (#3352) - Cockroach Labs (#4665) - CodeProject (#4617) - CodinGame (#4575) - Cognizant (#4392) - Contentful (#4537) - Cookiecutter (#3649) - DataStax (#4393) - De'Longhi (#4426) - Deepnote (#4546) - Digi-Key Electronics (#4398) - Eclipse Vert.x (#4631) - edX (#4452) - egghead (#4644) - Eight Sleep (#3638) - Facepunch (#3671) - FedEx (#4564) - Fortran (#4397) - FreeNAS (#4573) - Gitee (#4625) - Google Domains (#4622) - Google Photos (#4341) - Grubhub (#4544) - Homebridge (#4607) - Hyperledger (#4673) - IKEA (#4555) - Ingress (#3389) - Jitsi (#4540) - Kitsu (#4520) - Klook (#4548) - Lada (#4361) - Lichess (#3535) - Linktree (#4662) - Looker (#4442) - McLaren (#4538) - MetaFilter (#4547) - Motorola (#3425) - Noun Project (#4608) - Observable (#4640) - Open Bug Bounty (#4627) - Open Nebula (#4551) - OpenCV (#4580) - PageSpeed Insights (#4553) - Paytm (#4643) - pfSense (#4671) - Pop!_OS (#3769) - Progate (#3680) - Progress (#4611) - PyPy (#4281) - Racket (#3483) - Radar (#4319) - Rainmeter (#3554) - Reliance Industries Limited (#4702) - Revue (#4391) - ROS (#4658) - SciPy (#3772) - Scrimba (#4556) - SEPA (#3154) - SoloLearn (#4624) - Spark AR (#4468) - Speedtest (#4626) - STARZ (#4612) - Streamlit (#4412) - Swiper (#4562) - São Paulo Metro (#4570) - tado° (#4637) - TaxBuzz (#4619) - Testin (#4571) - Testing Library (#4542) - ThinkPad (#4550) - Ticketmaster (#4526) - Tile (#4614) - tmux (#3512) - Treyarch (#4690) - TrueNAS (#4574) - Unraid (#4613) - UPS (#4565) - USPS (#4549) - Vault (#4606) - Vimeo Livestream (#4703) - Webflow (#4568) - Weights & Biases (#4630) - Wikiquote (#4687) - Winmate (#3316) - Wipro (#4359) - Xilinx (#3424) - Zelle (#4605) - Zoho (#3661) - Zomato (#4664) - Zotero (#4561) # Updated Icons - Adobe XD (#3386) - Amazon Lumberyard (#4591) - Andela (#4592) - Apache Maven (#4593) - Daimler (#4618) - DigitalOcean (#4648) - Fossa (#4473) - Gatsby (#4620) - GIPHY (#4621) - Google (#4508) - Google Analytics (#4504) - Google Cardboard (#4058) - Google Fit (#4506) - Harbor (#4598) - Jira Software (#4657) - Kahoot! (#4635) - Kotlin (#4485) - Kyocera (#4475) - Lenovo (#4477) - Material Design Icons (#4642) - Mozilla (#4656) - pr.co (#4655) - SonicWall (#4654) - StackPath (#4652) - Stadia (#4503) - Synology (#4220) - TED (#4653) - Trustpilot (#4481) - Uber (#4650) - Uber Eats (#4651) - Udacity (#4596) - Viber (#4597) - Waze (#4583) - Wish (#4482) - WP Engine (#4639) - XMPP (#4483) - YouTube (#4582) - YouTube Studio (#4581) - YouTube TV (#4405) - Zendesk (#4595) - Zillow (#4636) |
||
---|---|---|
_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 1500 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.