Simple Icons

Simple Icons

Over 3100 Free SVG icons for popular brands. See them all on one page at SimpleIcons.org. Contributions, corrections & requests can be made on GitHub.

Build status NPM version Build status
Number of icons currently in the library Number of users active in our Discord server Backers and sponsors on Open Collective

Usage

Important

We ask that all users read our legal disclaimer before using icons from Simple Icons.

General Usage

Icons can be downloaded as SVGs directly from our website - simply click the download button of the icon you want, and the download will 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@v13/icons/[ICON SLUG].svg" />
<img height="32" width="32" src="https://unpkg.com/simple-icons@v13/icons/[ICON SLUG].svg" />

Where [ICON SLUG] is replaced by the slug of the icon you want to use, for example:

<img height="32" width="32" src="https://cdn.jsdelivr.net/npm/simple-icons@v13/icons/simpleicons.svg" />
<img height="32" width="32" src="https://unpkg.com/simple-icons@v13/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.

CDN with colors

We also provide a CDN service which allows you to use colors.

<img height="32" width="32" src="https://cdn.simpleicons.org/[ICON SLUG]" />
<img height="32" width="32" src="https://cdn.simpleicons.org/[ICON SLUG]/[COLOR]" />
<img height="32" width="32" src="https://cdn.simpleicons.org/[ICON SLUG]/[COLOR]/[DARK_MODE_COLOR]" />

Where [COLOR] is optional, and can be replaced by the hex colors or CSS keywords of the icon you want to you use. The color is defaulted to the HEX color of the icon shown in simpleicons.org website. [DARK_MODE_COLOR] is used for dark mode. The CSS prefers-color-scheme will be used when a value is specified. For example:

<img height="32" width="32" src="https://cdn.simpleicons.org/simpleicons" />
<img height="32" width="32" src="https://cdn.simpleicons.org/simpleicons/gray" />
<img height="32" width="32" src="https://cdn.simpleicons.org/simpleicons/hotpink" />
<img height="32" width="32" src="https://cdn.simpleicons.org/simpleicons/0cf" />
<img height="32" width="32" src="https://cdn.simpleicons.org/simpleicons/0cf9" />
<img height="32" width="32" src="https://cdn.simpleicons.org/simpleicons/00ccff" />
<img height="32" width="32" src="https://cdn.simpleicons.org/simpleicons/00ccff99" />
<img height="32" width="32" src="https://cdn.simpleicons.org/simpleicons/orange/pink" />
<img height="32" width="32" src="https://cdn.simpleicons.org/simpleicons/_/eee" />
<img height="32" width="32" src="https://cdn.simpleicons.org/simpleicons/eee/_" />

You can use a viewbox=auto parameter to get a auto-sized viewbox. This is useful if you want all icons rendered with consistent size:

<img height="20" src="https://cdn.simpleicons.org/github?viewbox=auto" />
<img height="20" src="https://cdn.simpleicons.org/simpleicons?viewbox=auto" />
<img height="20" src="https://cdn.simpleicons.org/awesomelists?viewbox=auto" />

Node Usage Node

The icons are also available through our npm package. To install, simply run:

npm install simple-icons

All icons are imported from a single file, where [ICON SLUG] is replaced by a capitalized slug. We highly recommend using a bundler that can tree shake such as webpack to remove the unused icon code:

// Import a specific icon by its slug as:
// import { si[ICON SLUG] } from 'simple-icons'

// For example:
// use import/esm to allow tree shaking
import { siSimpleicons } from 'simple-icons';
// or with require/cjs
const { siSimpleicons } = require('simple-icons');

It will return an icon object:

console.log(siSimpleicons);

/*
{
    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 ...',
    guidelines: 'https://simpleicons.org/styleguide',
    license: {
        type: '...',
        url: 'https://example.com/'
    }
}

NOTE: the `guidelines` entry will be `undefined` if we do not yet have guidelines for the icon.
NOTE: the `license` entry will be `undefined` if we do not yet have license data for the icon.
*/

If you need to iterate over all icons, use:

import * as icons from 'simple-icons';

TypeScript Usage Typescript

Type definitions are bundled with the package.

import type { SimpleIcon } from 'simple-icons';

PHP Usage Php

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, where [ICON SLUG] is replaced by a slug:

<?php
// Import a specific icon by its slug as:
echo file_get_contents('path/to/package/icons/[ICON SLUG].svg');

// For example:
echo file_get_contents('path/to/package/icons/simpleicons.svg');

// <svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">...</svg>
?>

Third-Party Extensions

The below are known extensions to third-party tools.

Extension Author
Blender add-on Blender @mondeja
Boxy SVG library Boxy SVG @Jarek
Drawio library Drawio @mondeja
Figma plugin Figma @LitoMore
Miro app Miro @LitoMore
Raycast extension Raycast @LitoMore
Stream Deck icon pack Stream Deck @mackenly
Webflow app Webflow @diegoliv

Maintain an extension? Submit a PR to include it in the list above.

Third-Party Libraries

The below are known third-party libraries for use in your own projects. We only keep items in the list that are at least up to date with our previous major version.

Library Author License Simple Icons Version
Astro package Astro @Aviortheking
Blazor Nuget package Blazor @TimeWarpEngineering
Flutter package Flutter @jlnrrg
Framer component Framer @LitoMore
Hugo module Hugo @foo-dogsquared
Kirby plugin Kirby @runxel
LaTeX package LaTeX @ineshbose
Laravel package Laravel @adrian-ub
React package React @wootsbot
Ruby gem Ruby @thepew
Svelte package Svelte @wootsbot
Vue 3 package Vue @wyatt-herkamp

Maintain a library? Submit a PR to include it in the list above.

Contribute

Information describing how to contribute can be found in the file CONTRIBUTING.md

Contributors

simple-icons/simple-icons

{
"props": {
"initialPayload": {
"allShortcutsEnabled": false,
"path": "/",
"repo": {
"id": 6720403,
"defaultBranch": "develop",
"name": "simple-icons",
"ownerLogin": "simple-icons",
"currentUserCanPush": false,
"isFork": false,
"isEmpty": false,
"createdAt": "2012-11-16T11:09:13.000Z",
"ownerAvatar": "https://avatars.githubusercontent.com/u/29872746?v=4",
"public": true,
"private": false,
"isOrgOwned": true
},
"currentUser": null,
"refInfo": {
"name": "develop",
"listCacheKey": "v0:1721609763.0",
"canEdit": false,
"refType": "branch",
"currentOid": "1fd47d646b1d0a8f91ee5a5cfb89f9ad81d2d572"
},
"tree": {
"items": [
{
"name": ".github",
"path": ".github",
"contentType": "directory"
},
{
"name": ".husky",
"path": ".husky",
"contentType": "directory"
},
{
"name": "_data",
"path": "_data",
"contentType": "directory"
},
{
"name": "icons",
"path": "icons",
"contentType": "directory"
},
{
"name": "scripts",
"path": "scripts",
"contentType": "directory"
},
{
"name": "tests",
"path": "tests",
"contentType": "directory"
},
{
"name": ".dockerignore",
"path": ".dockerignore",
"contentType": "file"
},
{
"name": ".editorconfig",
"path": ".editorconfig",
"contentType": "file"
},
{
"name": ".gitattributes",
"path": ".gitattributes",
"contentType": "file"
},
{
"name": ".gitignore",
"path": ".gitignore",
"contentType": "file"
},
{
"name": ".jsonschema.json",
"path": ".jsonschema.json",
"contentType": "file"
},
{
"name": ".npmignore",
"path": ".npmignore",
"contentType": "file"
},
{
"name": ".npmrc",
"path": ".npmrc",
"contentType": "file"
},
{
"name": ".prettierignore",
"path": ".prettierignore",
"contentType": "file"
},
{
"name": ".prettierrc.json",
"path": ".prettierrc.json",
"contentType": "file"
},
{
"name": ".svglint-ignored.json",
"path": ".svglint-ignored.json",
"contentType": "file"
},
{
"name": ".xo-config.json",
"path": ".xo-config.json",
"contentType": "file"
},
{
"name": "CODE_OF_CONDUCT.md",
"path": "CODE_OF_CONDUCT.md",
"contentType": "file"
},
{
"name": "CONTRIBUTING.md",
"path": "CONTRIBUTING.md",
"contentType": "file"
},
{
"name": "DISCLAIMER.md",
"path": "DISCLAIMER.md",
"contentType": "file"
},
{
"name": "Dockerfile",
"path": "Dockerfile",
"contentType": "file"
},
{
"name": "LICENSE.md",
"path": "LICENSE.md",
"contentType": "file"
},
{
"name": "README.md",
"path": "README.md",
"contentType": "file"
},
{
"name": "VERSIONING.md",
"path": "VERSIONING.md",
"contentType": "file"
},
{
"name": "composer.json",
"path": "composer.json",
"contentType": "file"
},
{
"name": "jsconfig.json",
"path": "jsconfig.json",
"contentType": "file"
},
{
"name": "package.json",
"path": "package.json",
"contentType": "file"
},
{
"name": "sdk.d.ts",
"path": "sdk.d.ts",
"contentType": "file"
},
{
"name": "sdk.mjs",
"path": "sdk.mjs",
"contentType": "file"
},
{
"name": "slugs.md",
"path": "slugs.md",
"contentType": "file"
},
{
"name": "svglint.config.mjs",
"path": "svglint.config.mjs",
"contentType": "file"
},
{
"name": "svgo.config.mjs",
"path": "svgo.config.mjs",
"contentType": "file"
},
{
"name": "types.d.ts",
"path": "types.d.ts",
"contentType": "file"
}
],
"templateDirectorySuggestionUrl": null,
"readme": null,
"totalCount": 33,
"showBranchInfobar": false
},
"fileTree": null,
"fileTreeProcessingTime": null,
"foldersToFetch": [],
"treeExpanded": false,
"symbolsExpanded": false,
"isOverview": true,
"overview": {
"banners": {
"shouldRecommendReadme": false,
"isPersonalRepo": false,
"showUseActionBanner": false,
"actionSlug": null,
"actionId": null,
"showProtectBranchBanner": false,
"publishBannersInfo": {
"dismissActionNoticePath": "/settings/dismiss-notice/publish_action_from_repo",
"releasePath": "/simple-icons/simple-icons/releases/new?marketplace=true",
"showPublishActionBanner": false
},
"interactionLimitBanner": null,
"showInvitationBanner": false,
"inviterName": null
},
"codeButton": {
"contactPath": "/contact",
"isEnterprise": false,
"local": {
"protocolInfo": {
"httpAvailable": true,
"sshAvailable": null,
"httpUrl": "https://github.com/simple-icons/simple-icons.git",
"showCloneWarning": null,
"sshUrl": null,
"sshCertificatesRequired": null,
"sshCertificatesAvailable": null,
"ghCliUrl": "gh repo clone simple-icons/simple-icons",
"defaultProtocol": "http",
"newSshKeyUrl": "/settings/ssh/new",
"setProtocolPath": "/users/set_protocol"
},
"platformInfo": {
"cloneUrl": "https://desktop.github.com",
"showVisualStudioCloneButton": false,
"visualStudioCloneUrl": "https://windows.github.com",
"showXcodeCloneButton": false,
"xcodeCloneUrl": "https://developer.apple.com",
"zipballUrl": "/simple-icons/simple-icons/archive/refs/heads/develop.zip"
}
},
"newCodespacePath": "/codespaces/new?hide_repo_select=true&repo=6720403"
},
"popovers": {
"rename": null,
"renamedParentRepo": null
},
"commitCount": "6,833",
"overviewFiles": [
{
"displayName": "README.md",
"repoName": "simple-icons",
"refName": "develop",
"path": "README.md",
"preferredFileType": "readme",
"tabName": "README",
"richText": "<article class=\"markdown-body entry-content container-lg\" itemprop=\"text\"><p align=\"center\" dir=\"auto\">\n<a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/51d3c9be20312bba33a3679ebd158fb478328e391bf8a91ca06e38a8792fd01b/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f73696d706c6569636f6e732f3030302f666666\"><img src=\"https://camo.githubusercontent.com/51d3c9be20312bba33a3679ebd158fb478328e391bf8a91ca06e38a8792fd01b/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f73696d706c6569636f6e732f3030302f666666\" alt=\"Simple Icons\" width=\"70\" data-canonical-src=\"https://cdn.simpleicons.org/simpleicons/000/fff\" style=\"max-width: 100%;\"></a>\n</p><div class=\"markdown-heading\" dir=\"auto\"><h3 align=\"center\" tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Simple Icons</h3><a id=\"user-content-simple-icons\" class=\"anchor\" aria-label=\"Permalink: Simple Icons\" href=\"#simple-icons\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p align=\"center\" dir=\"auto\">\nOver 3100 Free SVG icons for popular brands. See them all on one page at <a href=\"https://simpleicons.org\" rel=\"nofollow\">SimpleIcons.org</a>. Contributions, corrections &amp; requests can be made on GitHub.</p>\n<p dir=\"auto\"></p>\n<p align=\"center\" dir=\"auto\">\n<a href=\"https://github.com/simple-icons/simple-icons/actions?query=workflow%3AVerify+branch%3Adevelop\"><img src=\"https://camo.githubusercontent.com/15f448e99afb4e4ae01d565fbcba77fa81e1b7b6fbd5944b8248b3ab809e2e1f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f73696d706c652d69636f6e732f73696d706c652d69636f6e732f7665726966792e796d6c3f6272616e63683d646576656c6f70266c6f676f3d676974687562266c6162656c3d7465737473\" alt=\"Build status\" data-canonical-src=\"https://img.shields.io/github/actions/workflow/status/simple-icons/simple-icons/verify.yml?branch=develop&amp;logo=github&amp;label=tests\" style=\"max-width: 100%;\"></a>\n<a href=\"https://www.npmjs.com/package/simple-icons\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/bec85a88f4e2e92d0552099d6b86e3192ab207d7935d77831626cb3f58016746/68747470733a2f2f696d672e736869656c64732e696f2f6e706d2f762f73696d706c652d69636f6e732e7376673f6c6f676f3d6e706d\" alt=\"NPM version\" data-canonical-src=\"https://img.shields.io/npm/v/simple-icons.svg?logo=npm\" style=\"max-width: 100%;\"></a>\n<a href=\"https://packagist.org/packages/simple-icons/simple-icons\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/b0a5079192e976e8c837a85099c330dd60a3522d07de4430f3130ce9899b2161/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f73696d706c652d69636f6e732f73696d706c652d69636f6e733f6c6f676f3d7061636b6167697374266c6f676f436f6c6f723d7768697465\" alt=\"Build status\" data-canonical-src=\"https://img.shields.io/packagist/v/simple-icons/simple-icons?logo=packagist&amp;logoColor=white\" style=\"max-width: 100%;\"></a>\n<br>\n<a href=\"https://simpleicons.org\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/e5c1ea6ddf5d808e882ba520a6685503c1ede079930a0ff987fc9c190f9a17f6/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f636f6c6f723d696e666f726d6174696f6e616c266c6162656c3d69636f6e73267072656669783d253230266c6f676f3d73696d706c6569636f6e732671756572793d2532342e69636f6e732e6c656e6774682675726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d25324673696d706c652d69636f6e7325324673696d706c652d69636f6e73253246646576656c6f702532465f6461746125324673696d706c652d69636f6e732e6a736f6e\" alt=\"Number of icons currently in the library\" data-canonical-src=\"https://img.shields.io/badge/dynamic/json?color=informational&amp;label=icons&amp;prefix=%20&amp;logo=simpleicons&amp;query=%24.icons.length&amp;url=https%3A%2F%2Fraw.githubusercontent.com%2Fsimple-icons%2Fsimple-icons%2Fdevelop%2F_data%2Fsimple-icons.json\" style=\"max-width: 100%;\"></a>\n<a href=\"https://discord.gg/vUXFa7t5xJ\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/39bff6f34eadd35a6a07bfd552e868c86b800e341371598ff9aef2ca55278241/68747470733a2f2f696d672e736869656c64732e696f2f646973636f72642f313134323034343633303930393732363736303f6c6f676f3d646973636f7264266c6f676f436f6c6f723d7768697465266c6162656c3d646973636f7264\" alt=\"Number of users active in our Discord server\" data-canonical-src=\"https://img.shields.io/discord/1142044630909726760?logo=discord&amp;logoColor=white&amp;label=discord\" style=\"max-width: 100%;\"></a>\n<a href=\"https://opencollective.com/simple-icons\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/7bf3dbf5a39a7631c7552cde4b88bd899dd52fc064c8eb97c9d5d0b23bc9ca67/68747470733a2f2f696d672e736869656c64732e696f2f6f70656e636f6c6c6563746976652f616c6c2f73696d706c652d69636f6e733f6c6f676f3d6f70656e636f6c6c656374697665\" alt=\"Backers and sponsors on Open Collective\" data-canonical-src=\"https://img.shields.io/opencollective/all/simple-icons?logo=opencollective\" style=\"max-width: 100%;\"></a>\n</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Usage</h2><a id=\"user-content-usage\" class=\"anchor\" aria-label=\"Permalink: Usage\" href=\"#usage\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"markdown-alert markdown-alert-important\" dir=\"auto\"><p class=\"markdown-alert-title\" dir=\"auto\"><svg class=\"octicon octicon-report mr-2\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v9.5A1.75 1.75 0 0 1 14.25 13H8.06l-2.573 2.573A1.458 1.458 0 0 1 3 14.543V13H1.75A1.75 1.75 0 0 1 0 11.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25Zm7 2.25v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"></path></svg>Important</p><p dir=\"auto\">We ask that all users read our <a href=\"https://github.com/simple-icons/simple-icons/blob/develop/DISCLAIMER.md\">legal disclaimer</a> before using icons from Simple Icons.</p>\n</div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">General Usage</h3><a id=\"user-content-general-usage\" class=\"anchor\" aria-label=\"Permalink: General Usage\" href=\"#general-usage\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Icons can be downloaded as SVGs directly from <a href=\"https://simpleicons.org/\" rel=\"nofollow\">our website</a> - simply click the download button of the icon you want, and the download will start automatically.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">CDN Usage</h3><a id=\"user-content-cdn-usage\" class=\"anchor\" aria-label=\"Permalink: CDN Usage\" href=\"#cdn-usage\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Icons can be served from a CDN such as <a href=\"https://www.jsdelivr.com/package/npm/simple-icons\" rel=\"nofollow\">jsDelivr</a> or <a href=\"https://unpkg.com/browse/simple-icons/\" rel=\"nofollow\">Unpkg</a>. Simply use the <code>simple-icons</code> npm package and specify a version in the URL like the following:</p>\n<div class=\"highlight highlight-text-html-basic notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"&lt;img height=&quot;32&quot; width=&quot;32&quot; src=&quot;https://cdn.jsdelivr.net/npm/simple-icons@v13/icons/[ICON SLUG].svg&quot; /&gt;\n&lt;img height=&quot;32&quot; width=&quot;32&quot; src=&quot;https://unpkg.com/simple-icons@v13/icons/[ICON SLUG].svg&quot; /&gt;\"><pre><span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">width</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://cdn.jsdelivr.net/npm/simple-icons@v13/icons/[ICON SLUG].svg</span>\" /&gt;\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">width</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://unpkg.com/simple-icons@v13/icons/[ICON SLUG].svg</span>\" /&gt;</pre></div>\n<p dir=\"auto\">Where <code>[ICON SLUG]</code> is replaced by the <a href=\"https://github.com/simple-icons/simple-icons/blob/master/slugs.md\">slug</a> of the icon you want to use, for example:</p>\n<div class=\"highlight highlight-text-html-basic notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"&lt;img height=&quot;32&quot; width=&quot;32&quot; src=&quot;https://cdn.jsdelivr.net/npm/simple-icons@v13/icons/simpleicons.svg&quot; /&gt;\n&lt;img height=&quot;32&quot; width=&quot;32&quot; src=&quot;https://unpkg.com/simple-icons@v13/icons/simpleicons.svg&quot; /&gt;\"><pre><span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">width</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://cdn.jsdelivr.net/npm/simple-icons@v13/icons/simpleicons.svg</span>\" /&gt;\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">width</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://unpkg.com/simple-icons@v13/icons/simpleicons.svg</span>\" /&gt;</pre></div>\n<p dir=\"auto\">These examples use the latest major version. This means you won't receive any updates following the next major release. You can use <code>@latest</code> instead to receive updates indefinitely. However, this will result in a <code>404</code> error if the icon is removed.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">CDN with colors</h4><a id=\"user-content-cdn-with-colors\" class=\"anchor\" aria-label=\"Permalink: CDN with colors\" href=\"#cdn-with-colors\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">We also provide a CDN service which allows you to use colors.</p>\n<div class=\"highlight highlight-text-html-basic notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"&lt;img height=&quot;32&quot; width=&quot;32&quot; src=&quot;https://cdn.simpleicons.org/[ICON SLUG]&quot; /&gt;\n&lt;img height=&quot;32&quot; width=&quot;32&quot; src=&quot;https://cdn.simpleicons.org/[ICON SLUG]/[COLOR]&quot; /&gt;\n&lt;img height=&quot;32&quot; width=&quot;32&quot; src=&quot;https://cdn.simpleicons.org/[ICON SLUG]/[COLOR]/[DARK_MODE_COLOR]&quot; /&gt;\"><pre><span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">width</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://cdn.simpleicons.org/[ICON SLUG]</span>\" /&gt;\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">width</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://cdn.simpleicons.org/[ICON SLUG]/[COLOR]</span>\" /&gt;\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">width</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://cdn.simpleicons.org/[ICON SLUG]/[COLOR]/[DARK_MODE_COLOR]</span>\" /&gt;</pre></div>\n<p dir=\"auto\">Where <code>[COLOR]</code> is optional, and can be replaced by the <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/hex-color\" rel=\"nofollow\">hex colors</a> or <a href=\"https://www.w3.org/wiki/CSS/Properties/color/keywords\" rel=\"nofollow\">CSS keywords</a> of the icon you want to you use. The color is defaulted to the HEX color of the icon shown in <a href=\"https://simpleicons.org\" rel=\"nofollow\">simpleicons.org website</a>. <code>[DARK_MODE_COLOR]</code> is used for dark mode. The <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme\" rel=\"nofollow\">CSS prefers-color-scheme</a> will be used when a value is specified. For example:</p>\n<div class=\"highlight highlight-text-html-basic notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"&lt;img height=&quot;32&quot; width=&quot;32&quot; src=&quot;https://cdn.simpleicons.org/simpleicons&quot; /&gt;\n&lt;img height=&quot;32&quot; width=&quot;32&quot; src=&quot;https://cdn.simpleicons.org/simpleicons/gray&quot; /&gt;\n&lt;img height=&quot;32&quot; width=&quot;32&quot; src=&quot;https://cdn.simpleicons.org/simpleicons/hotpink&quot; /&gt;\n&lt;img height=&quot;32&quot; width=&quot;32&quot; src=&quot;https://cdn.simpleicons.org/simpleicons/0cf&quot; /&gt;\n&lt;img height=&quot;32&quot; width=&quot;32&quot; src=&quot;https://cdn.simpleicons.org/simpleicons/0cf9&quot; /&gt;\n&lt;img height=&quot;32&quot; width=&quot;32&quot; src=&quot;https://cdn.simpleicons.org/simpleicons/00ccff&quot; /&gt;\n&lt;img height=&quot;32&quot; width=&quot;32&quot; src=&quot;https://cdn.simpleicons.org/simpleicons/00ccff99&quot; /&gt;\n&lt;img height=&quot;32&quot; width=&quot;32&quot; src=&quot;https://cdn.simpleicons.org/simpleicons/orange/pink&quot; /&gt;\n&lt;img height=&quot;32&quot; width=&quot;32&quot; src=&quot;https://cdn.simpleicons.org/simpleicons/_/eee&quot; /&gt;\n&lt;img height=&quot;32&quot; width=&quot;32&quot; src=&quot;https://cdn.simpleicons.org/simpleicons/eee/_&quot; /&gt;\"><pre><span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">width</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://cdn.simpleicons.org/simpleicons</span>\" /&gt;\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">width</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://cdn.simpleicons.org/simpleicons/gray</span>\" /&gt;\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">width</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://cdn.simpleicons.org/simpleicons/hotpink</span>\" /&gt;\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">width</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://cdn.simpleicons.org/simpleicons/0cf</span>\" /&gt;\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">width</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://cdn.simpleicons.org/simpleicons/0cf9</span>\" /&gt;\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">width</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://cdn.simpleicons.org/simpleicons/00ccff</span>\" /&gt;\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">width</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://cdn.simpleicons.org/simpleicons/00ccff99</span>\" /&gt;\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">width</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://cdn.simpleicons.org/simpleicons/orange/pink</span>\" /&gt;\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">width</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://cdn.simpleicons.org/simpleicons/_/eee</span>\" /&gt;\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">width</span>=\"<span class=\"pl-s\">32</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://cdn.simpleicons.org/simpleicons/eee/_</span>\" /&gt;</pre></div>\n<p dir=\"auto\">You can use a <code>viewbox=auto</code> parameter to get a auto-sized viewbox. This is useful if you want all icons rendered with consistent size:</p>\n<div class=\"highlight highlight-text-html-basic notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"&lt;img height=&quot;20&quot; src=&quot;https://cdn.simpleicons.org/github?viewbox=auto&quot; /&gt;\n&lt;img height=&quot;20&quot; src=&quot;https://cdn.simpleicons.org/simpleicons?viewbox=auto&quot; /&gt;\n&lt;img height=&quot;20&quot; src=&quot;https://cdn.simpleicons.org/awesomelists?viewbox=auto&quot; /&gt;\"><pre><span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=\"<span class=\"pl-s\">20</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://cdn.simpleicons.org/github?viewbox=auto</span>\" /&gt;\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=\"<span class=\"pl-s\">20</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://cdn.simpleicons.org/simpleicons?viewbox=auto</span>\" /&gt;\n<span class=\"pl-kos\">&lt;</span><span class=\"pl-ent\">img</span> <span class=\"pl-c1\">height</span>=\"<span class=\"pl-s\">20</span>\" <span class=\"pl-c1\">src</span>=\"<span class=\"pl-s\">https://cdn.simpleicons.org/awesomelists?viewbox=auto</span>\" /&gt;</pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Node Usage <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/9730756500d17ceb997efbd6611a20a7d16d3724e4f9debbb6f442de99efd9f0/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f6e6f6465646f746a732f3030302f666666\"><img src=\"https://camo.githubusercontent.com/9730756500d17ceb997efbd6611a20a7d16d3724e4f9debbb6f442de99efd9f0/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f6e6f6465646f746a732f3030302f666666\" alt=\"Node\" align=\"left\" width=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/nodedotjs/000/fff\" style=\"max-width: 100%;\"></a></h3><a id=\"user-content-node-usage-\" class=\"anchor\" aria-label=\"Permalink: Node Usage \" href=\"#node-usage-\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">The icons are also available through our npm package. To install, simply run:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"npm install simple-icons\"><pre>npm install simple-icons</pre></div>\n<p dir=\"auto\">All icons are imported from a single file, where <code>[ICON SLUG]</code> is replaced by a capitalized <a href=\"https://github.com/simple-icons/simple-icons/blob/master/slugs.md\">slug</a>. We highly recommend using a bundler that can tree shake such as <a href=\"https://webpack.js.org/\" rel=\"nofollow\">webpack</a> to remove the unused icon code:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"// Import a specific icon by its slug as:\n// import { si[ICON SLUG] } from 'simple-icons'\n\n// For example:\n// use import/esm to allow tree shaking\nimport { siSimpleicons } from 'simple-icons';\n// or with require/cjs\nconst { siSimpleicons } = require('simple-icons');\"><pre><span class=\"pl-c\">// Import a specific icon by its slug as:</span>\n<span class=\"pl-c\">// import { si[ICON SLUG] } from 'simple-icons'</span>\n\n<span class=\"pl-c\">// For example:</span>\n<span class=\"pl-c\">// use import/esm to allow tree shaking</span>\n<span class=\"pl-k\">import</span> <span class=\"pl-kos\">{</span> <span class=\"pl-s1\">siSimpleicons</span> <span class=\"pl-kos\">}</span> <span class=\"pl-k\">from</span> <span class=\"pl-s\">'simple-icons'</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-c\">// or with require/cjs</span>\n<span class=\"pl-k\">const</span> <span class=\"pl-kos\">{</span> siSimpleicons <span class=\"pl-kos\">}</span> <span class=\"pl-c1\">=</span> <span class=\"pl-en\">require</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'simple-icons'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">It will return an icon object:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"console.log(siSimpleicons);\n\n/*\n{\n title: 'Simple Icons',\n slug: 'simpleicons',\n hex: '111111',\n source: 'https://simpleicons.org/',\n svg: '&lt;svg role=&quot;img&quot; viewBox=&quot;0 0 24 24&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot;&gt;...&lt;/svg&gt;',\n path: 'M12 12v-1.5c-2.484 ...',\n guidelines: 'https://simpleicons.org/styleguide',\n license: {\n type: '...',\n url: 'https://example.com/'\n }\n}\n\nNOTE: the `guidelines` entry will be `undefined` if we do not yet have guidelines for the icon.\nNOTE: the `license` entry will be `undefined` if we do not yet have license data for the icon.\n*/\"><pre><span class=\"pl-smi\">console</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">log</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">siSimpleicons</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n\n<span class=\"pl-c\">/*</span>\n<span class=\"pl-c\">{</span>\n<span class=\"pl-c\"> title: 'Simple Icons',</span>\n<span class=\"pl-c\"> slug: 'simpleicons',</span>\n<span class=\"pl-c\"> hex: '111111',</span>\n<span class=\"pl-c\"> source: 'https://simpleicons.org/',</span>\n<span class=\"pl-c\"> svg: '&lt;svg role=\"img\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"&gt;...&lt;/svg&gt;',</span>\n<span class=\"pl-c\"> path: 'M12 12v-1.5c-2.484 ...',</span>\n<span class=\"pl-c\"> guidelines: 'https://simpleicons.org/styleguide',</span>\n<span class=\"pl-c\"> license: {</span>\n<span class=\"pl-c\"> type: '...',</span>\n<span class=\"pl-c\"> url: 'https://example.com/'</span>\n<span class=\"pl-c\"> }</span>\n<span class=\"pl-c\">}</span>\n<span class=\"pl-c\"></span>\n<span class=\"pl-c\">NOTE: the `guidelines` entry will be `undefined` if we do not yet have guidelines for the icon.</span>\n<span class=\"pl-c\">NOTE: the `license` entry will be `undefined` if we do not yet have license data for the icon.</span>\n<span class=\"pl-c\">*/</span></pre></div>\n<p dir=\"auto\">If you need to iterate over all icons, use:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"import * as icons from 'simple-icons';\"><pre><span class=\"pl-k\">import</span> <span class=\"pl-c1\">*</span> <span class=\"pl-k\">as</span> <span class=\"pl-s1\">icons</span> <span class=\"pl-k\">from</span> <span class=\"pl-s\">'simple-icons'</span><span class=\"pl-kos\">;</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h4 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">TypeScript Usage <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/8ff8aa97510303d6527613c7f991de1ffb452e3b7ad82f80338b3950400452f0/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f747970657363726970742f3030302f666666\"><img src=\"https://camo.githubusercontent.com/8ff8aa97510303d6527613c7f991de1ffb452e3b7ad82f80338b3950400452f0/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f747970657363726970742f3030302f666666\" alt=\"Typescript\" align=\"left\" width=\"19\" height=\"19\" data-canonical-src=\"https://cdn.simpleicons.org/typescript/000/fff\" style=\"max-width: 100%;\"></a></h4><a id=\"user-content-typescript-usage-\" class=\"anchor\" aria-label=\"Permalink: TypeScript Usage \" href=\"#typescript-usage-\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Type definitions are bundled with the package.</p>\n<div class=\"highlight highlight-source-ts notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"import type { SimpleIcon } from 'simple-icons';\"><pre><span class=\"pl-k\">import</span> <span class=\"pl-k\">type</span> <span class=\"pl-kos\">{</span> <span class=\"pl-smi\">SimpleIcon</span> <span class=\"pl-kos\">}</span> <span class=\"pl-k\">from</span> <span class=\"pl-s\">'simple-icons'</span><span class=\"pl-kos\">;</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">PHP Usage <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/8a60eb734caf6d2e9d13dfb587b3e27d80197e307b7c41d04b1348c08d039959/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f7068702f3030302f666666\"><img src=\"https://camo.githubusercontent.com/8a60eb734caf6d2e9d13dfb587b3e27d80197e307b7c41d04b1348c08d039959/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f7068702f3030302f666666\" alt=\"Php\" align=\"left\" width=\"24\" height=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/php/000/fff\" style=\"max-width: 100%;\"></a></h3><a id=\"user-content-php-usage-\" class=\"anchor\" aria-label=\"Permalink: PHP Usage \" href=\"#php-usage-\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">The icons are also available through our Packagist package. To install, simply run:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"composer require simple-icons/simple-icons\"><pre>composer require simple-icons/simple-icons</pre></div>\n<p dir=\"auto\">The package can then be used as follows, where <code>[ICON SLUG]</code> is replaced by a <a href=\"https://github.com/simple-icons/simple-icons/blob/master/slugs.md\">slug</a>:</p>\n<div class=\"highlight highlight-text-html-php notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"&lt;?php\n// Import a specific icon by its slug as:\necho file_get_contents('path/to/package/icons/[ICON SLUG].svg');\n\n// For example:\necho file_get_contents('path/to/package/icons/simpleicons.svg');\n\n// &lt;svg role=&quot;img&quot; viewBox=&quot;0 0 24 24&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot;&gt;...&lt;/svg&gt;\n?&gt;\"><pre><span class=\"pl-ent\">&lt;?php</span>\n<span class=\"pl-c\">// Import a specific icon by its slug as:</span>\n<span class=\"pl-k\">echo</span> file_get_contents(<span class=\"pl-s\">'path/to/package/icons/[ICON SLUG].svg'</span>);\n\n<span class=\"pl-c\">// For example:</span>\n<span class=\"pl-k\">echo</span> file_get_contents(<span class=\"pl-s\">'path/to/package/icons/simpleicons.svg'</span>);\n\n<span class=\"pl-c\">// &lt;svg role=\"img\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"&gt;...&lt;/svg&gt;</span>\n<span class=\"pl-ent\">?&gt;</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Third-Party Extensions</h2><a id=\"user-content-third-party-extensions\" class=\"anchor\" aria-label=\"Permalink: Third-Party Extensions\" href=\"#third-party-extensions\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">The below are known extensions to third-party tools.</p>\n<markdown-accessiblity-table><table>\n<thead>\n<tr>\n<th align=\"left\">Extension</th>\n<th align=\"left\">Author</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td align=\"left\"><a href=\"https://github.com/mondeja/simple-icons-blender\">Blender add-on</a> <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/0950d06ca92c6cf5174a147e4fb5e62db47fb1ed19135829c6618901dd93516f/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f626c656e6465722f3030302f666666\"><img src=\"https://camo.githubusercontent.com/0950d06ca92c6cf5174a147e4fb5e62db47fb1ed19135829c6618901dd93516f/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f626c656e6465722f3030302f666666\" alt=\"Blender\" align=\"left\" width=\"24\" height=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/blender/000/fff\" style=\"max-width: 100%;\"></a></td>\n<td align=\"left\"><a href=\"https://github.com/mondeja\">@mondeja</a></td>\n</tr>\n<tr>\n<td align=\"left\"><a href=\"https://boxy-svg.com/ideas/298/simple-icons-library-provider\" rel=\"nofollow\">Boxy SVG library</a> <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/62208c49085db8cc98b4d9da73a9d0f80bff4c9ad650dbc80a9efbdb87f8e2f0/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f626f78797376672f3030302f666666\"><img src=\"https://camo.githubusercontent.com/62208c49085db8cc98b4d9da73a9d0f80bff4c9ad650dbc80a9efbdb87f8e2f0/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f626f78797376672f3030302f666666\" alt=\"Boxy SVG\" align=\"left\" width=\"24\" height=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/boxysvg/000/fff\" style=\"max-width: 100%;\"></a></td>\n<td align=\"left\"><a href=\"https://boxy-svg.com/profiles/0000000000/jarek\" rel=\"nofollow\">@Jarek</a></td>\n</tr>\n<tr>\n<td align=\"left\"><a href=\"https://github.com/mondeja/simple-icons-drawio\">Drawio library</a> <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/3b357dca96aee9beeeddeaac48c7bb616b2050faf3daaf752bac88dfde4c56df/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f6469616772616d73646f746e65742f3030302f666666\"><img src=\"https://camo.githubusercontent.com/3b357dca96aee9beeeddeaac48c7bb616b2050faf3daaf752bac88dfde4c56df/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f6469616772616d73646f746e65742f3030302f666666\" alt=\"Drawio\" align=\"left\" width=\"24\" height=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/diagramsdotnet/000/fff\" style=\"max-width: 100%;\"></a></td>\n<td align=\"left\"><a href=\"https://github.com/mondeja\">@mondeja</a></td>\n</tr>\n<tr>\n<td align=\"left\"><a href=\"https://www.figma.com/community/plugin/1149614463603005908/Simple-Icons\" rel=\"nofollow\">Figma plugin</a> <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/75454a4a063441bb557b66ecfd66352c888373cad9d99fb808076324c6604497/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f6669676d612f3030302f666666\"><img src=\"https://camo.githubusercontent.com/75454a4a063441bb557b66ecfd66352c888373cad9d99fb808076324c6604497/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f6669676d612f3030302f666666\" alt=\"Figma\" align=\"left\" width=\"24\" height=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/figma/000/fff\" style=\"max-width: 100%;\"></a></td>\n<td align=\"left\"><a href=\"https://github.com/LitoMore\">@LitoMore</a></td>\n</tr>\n<tr>\n<td align=\"left\"><a href=\"https://miro.com/marketplace/brand-icons/\" rel=\"nofollow\">Miro app</a> <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/e47345fde7101345efe9a42a2d20f7a91418e5157878848abda2e85b37389089/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f6d69726f2f3030302f666666\"><img src=\"https://camo.githubusercontent.com/e47345fde7101345efe9a42a2d20f7a91418e5157878848abda2e85b37389089/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f6d69726f2f3030302f666666\" alt=\"Miro\" align=\"left\" width=\"24\" height=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/miro/000/fff\" style=\"max-width: 100%;\"></a></td>\n<td align=\"left\"><a href=\"https://github.com/LitoMore\">@LitoMore</a></td>\n</tr>\n<tr>\n<td align=\"left\"><a href=\"https://www.raycast.com/litomore/simple-icons\" rel=\"nofollow\">Raycast extension</a> <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/9e1a6c5e0085b07394c5206b64440240f1258c9daa20d69879bdcf093da5e334/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f726179636173742f3030302f666666\"><img src=\"https://camo.githubusercontent.com/9e1a6c5e0085b07394c5206b64440240f1258c9daa20d69879bdcf093da5e334/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f726179636173742f3030302f666666\" alt=\"Raycast\" align=\"left\" width=\"24\" height=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/raycast/000/fff\" style=\"max-width: 100%;\"></a></td>\n<td align=\"left\"><a href=\"https://github.com/LitoMore\">@LitoMore</a></td>\n</tr>\n<tr>\n<td align=\"left\"><a href=\"https://github.com/mackenly/simple-icons-stream-deck\">Stream Deck icon pack</a> <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/2feda853881f0fc5999801bf6c04a625222551e3126ed90a57c847ef7ed6293b/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f656c6761746f2f3030302f666666\"><img src=\"https://camo.githubusercontent.com/2feda853881f0fc5999801bf6c04a625222551e3126ed90a57c847ef7ed6293b/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f656c6761746f2f3030302f666666\" alt=\"Stream Deck\" align=\"left\" width=\"24\" height=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/elgato/000/fff\" style=\"max-width: 100%;\"></a></td>\n<td align=\"left\"><a href=\"https://github.com/mackenly\">@mackenly</a></td>\n</tr>\n<tr>\n<td align=\"left\"><a href=\"https://webflow.com/apps/detail/simple-icons\" rel=\"nofollow\">Webflow app</a> <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/8847883ddf4c0c405e3bd486f4a418c8c3db7f8ecbf6a8bffd95a0f236e45017/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f776562666c6f772f3030302f666666\"><img src=\"https://camo.githubusercontent.com/8847883ddf4c0c405e3bd486f4a418c8c3db7f8ecbf6a8bffd95a0f236e45017/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f776562666c6f772f3030302f666666\" alt=\"Webflow\" align=\"left\" width=\"24\" height=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/webflow/000/fff\" style=\"max-width: 100%;\"></a></td>\n<td align=\"left\"><a href=\"https://github.com/diegoliv\">@diegoliv</a></td>\n</tr>\n</tbody>\n</table></markdown-accessiblity-table>\n<p dir=\"auto\">Maintain an extension? <a href=\"https://github.com/simple-icons/simple-icons/compare\">Submit a PR</a> to include it in the list above.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Third-Party Libraries</h2><a id=\"user-content-third-party-libraries\" class=\"anchor\" aria-label=\"Permalink: Third-Party Libraries\" href=\"#third-party-libraries\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">The below are known third-party libraries for use in your own projects. We only keep items in the list that are at least up to date with our previous major version.</p>\n<markdown-accessiblity-table><table>\n<thead>\n<tr>\n<th align=\"left\">Library</th>\n<th align=\"left\">Author</th>\n<th align=\"center\">License</th>\n<th align=\"center\">Simple Icons Version</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td align=\"left\"><a href=\"https://github.com/dzeiocom/simple-icons-astro\">Astro package</a> <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/2047cf001b847f2d1cfe5f3d73a4d3294ecbe25979f7501fe681f04ba83a7247/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f617374726f2f3030302f666666\"><img src=\"https://camo.githubusercontent.com/2047cf001b847f2d1cfe5f3d73a4d3294ecbe25979f7501fe681f04ba83a7247/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f617374726f2f3030302f666666\" alt=\"Astro\" align=\"left\" width=\"24\" height=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/astro/000/fff\" style=\"max-width: 100%;\"></a></td>\n<td align=\"left\"><a href=\"https://github.com/aviortheking\">@Aviortheking</a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/8706b0c3768b12df2f11e17b3c234630392a016a8978472f053c13dc37a6a4bc/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f647a65696f636f6d2f73696d706c652d69636f6e732d617374726f\"><img src=\"https://camo.githubusercontent.com/8706b0c3768b12df2f11e17b3c234630392a016a8978472f053c13dc37a6a4bc/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f647a65696f636f6d2f73696d706c652d69636f6e732d617374726f\" alt=\"\" data-canonical-src=\"https://img.shields.io/github/license/dzeiocom/simple-icons-astro\" style=\"max-width: 100%;\"></a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/75938ec79f09334e5c83886f7a3c08956d4bdc8d2ef8a8a644266eb7f02c729b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d253246647a65696f636f6d25324673696d706c652d69636f6e732d617374726f2532466d61737465722532467061636b6167652e6a736f6e2671756572793d2532342e76657273696f6e266c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\"><img src=\"https://camo.githubusercontent.com/75938ec79f09334e5c83886f7a3c08956d4bdc8d2ef8a8a644266eb7f02c729b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d253246647a65696f636f6d25324673696d706c652d69636f6e732d617374726f2532466d61737465722532467061636b6167652e6a736f6e2671756572793d2532342e76657273696f6e266c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\" alt=\"\" data-canonical-src=\"https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fraw.githubusercontent.com%2Fdzeiocom%2Fsimple-icons-astro%2Fmaster%2Fpackage.json&amp;query=%24.version&amp;logo=simpleicons&amp;label=version\" style=\"max-width: 100%;\"></a></td>\n</tr>\n<tr>\n<td align=\"left\"><a href=\"https://github.com/TimeWarpEngineering/timewarp-simple-icons\">Blazor Nuget package</a> <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/f5ac39376ce38f3fa7ec57a83fcf0da465a1eeb2150373e1247cc252797c3ffa/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f626c617a6f722f3030302f666666\"><img src=\"https://camo.githubusercontent.com/f5ac39376ce38f3fa7ec57a83fcf0da465a1eeb2150373e1247cc252797c3ffa/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f626c617a6f722f3030302f666666\" alt=\"Blazor\" align=\"left\" width=\"24\" height=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/blazor/000/fff\" style=\"max-width: 100%;\"></a></td>\n<td align=\"left\"><a href=\"https://github.com/TimeWarpEngineering\">@TimeWarpEngineering</a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/108bc0f2d273a518a31e11516d5d610218a97cecddad8112898f7c994fae115f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f54696d6557617270456e67696e656572696e672f74696d65776172702d73696d706c652d69636f6e73\"><img src=\"https://camo.githubusercontent.com/108bc0f2d273a518a31e11516d5d610218a97cecddad8112898f7c994fae115f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f54696d6557617270456e67696e656572696e672f74696d65776172702d73696d706c652d69636f6e73\" alt=\"\" data-canonical-src=\"https://img.shields.io/github/license/TimeWarpEngineering/timewarp-simple-icons\" style=\"max-width: 100%;\"></a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/10001c89f280804ff11a95996d368220d2289d8ecdede1173e5834397c4a8703/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f786d6c3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d25324654696d6557617270456e67696e656572696e6725324674696d65776172702d73696d706c652d69636f6e732532466d61696e253246736f7572636525324674696d65776172702d73696d706c652d69636f6e7325324674696d65776172702d73696d706c652d69636f6e732e637370726f6a2671756572793d25324650726f6a65637425324650726f706572747947726f757025324656657273696f6e266c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\"><img src=\"https://camo.githubusercontent.com/10001c89f280804ff11a95996d368220d2289d8ecdede1173e5834397c4a8703/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f786d6c3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d25324654696d6557617270456e67696e656572696e6725324674696d65776172702d73696d706c652d69636f6e732532466d61696e253246736f7572636525324674696d65776172702d73696d706c652d69636f6e7325324674696d65776172702d73696d706c652d69636f6e732e637370726f6a2671756572793d25324650726f6a65637425324650726f706572747947726f757025324656657273696f6e266c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\" alt=\"\" data-canonical-src=\"https://img.shields.io/badge/dynamic/xml?url=https%3A%2F%2Fraw.githubusercontent.com%2FTimeWarpEngineering%2Ftimewarp-simple-icons%2Fmain%2Fsource%2Ftimewarp-simple-icons%2Ftimewarp-simple-icons.csproj&amp;query=%2FProject%2FPropertyGroup%2FVersion&amp;logo=simpleicons&amp;label=version\" style=\"max-width: 100%;\"></a></td>\n</tr>\n<tr>\n<td align=\"left\"><a href=\"https://github.com/jlnrrg/simple_icons\">Flutter package</a> <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/a1a0b970660c1efbc6dc1d8eb051f1d2bcb895caba50be0f5c35d7b2224777b1/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f666c75747465722f3030302f666666\"><img src=\"https://camo.githubusercontent.com/a1a0b970660c1efbc6dc1d8eb051f1d2bcb895caba50be0f5c35d7b2224777b1/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f666c75747465722f3030302f666666\" alt=\"Flutter\" align=\"left\" width=\"24\" height=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/flutter/000/fff\" style=\"max-width: 100%;\"></a></td>\n<td align=\"left\"><a href=\"https://github.com/jlnrrg\">@jlnrrg</a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/af65ca43c6b97c3ca8be290ca94c0242fbe4d49c522a0b7d81999397f3a86c2d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6a6c6e7272672f73696d706c655f69636f6e73\"><img src=\"https://camo.githubusercontent.com/af65ca43c6b97c3ca8be290ca94c0242fbe4d49c522a0b7d81999397f3a86c2d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6a6c6e7272672f73696d706c655f69636f6e73\" alt=\"\" data-canonical-src=\"https://img.shields.io/github/license/jlnrrg/simple_icons\" style=\"max-width: 100%;\"></a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/e31c1ae3dcca7fb95b6a8e3a27f78f09bd326edf1a0d3b55f4879c58d2ba7aa7/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f79616d6c3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d2532466a6c6e72726725324673696d706c655f69636f6e732532466d6173746572253246707562737065632e79616d6c2671756572793d2532342e76657273696f6e266c6f676f3d73696d706c6569636f6e73266c6f676f436f6c6f723d7768697465266c6162656c3d76657273696f6e\"><img src=\"https://camo.githubusercontent.com/e31c1ae3dcca7fb95b6a8e3a27f78f09bd326edf1a0d3b55f4879c58d2ba7aa7/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f79616d6c3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d2532466a6c6e72726725324673696d706c655f69636f6e732532466d6173746572253246707562737065632e79616d6c2671756572793d2532342e76657273696f6e266c6f676f3d73696d706c6569636f6e73266c6f676f436f6c6f723d7768697465266c6162656c3d76657273696f6e\" alt=\"\" data-canonical-src=\"https://img.shields.io/badge/dynamic/yaml?url=https%3A%2F%2Fraw.githubusercontent.com%2Fjlnrrg%2Fsimple_icons%2Fmaster%2Fpubspec.yaml&amp;query=%24.version&amp;logo=simpleicons&amp;logoColor=white&amp;label=version\" style=\"max-width: 100%;\"></a></td>\n</tr>\n<tr>\n<td align=\"left\"><a href=\"https://github.com/LitoMore/simple-icons-framer\">Framer component</a> <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/2c474945cb7f1862d3d6e694e698a0c61e1c69e72f86a5e7ff3be467672d32ee/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f6672616d65722f3030302f666666\"><img src=\"https://camo.githubusercontent.com/2c474945cb7f1862d3d6e694e698a0c61e1c69e72f86a5e7ff3be467672d32ee/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f6672616d65722f3030302f666666\" alt=\"Framer\" align=\"left\" width=\"24\" height=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/framer/000/fff\" style=\"max-width: 100%;\"></a></td>\n<td align=\"left\"><a href=\"https://github.com/LitoMore\">@LitoMore</a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/faec1d3d6f7d131436402e0f75ab811bba04f511a4dea577b25cf6a9a61c6ed0/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f4c69746f4d6f72652f73696d706c652d69636f6e732d6672616d6572\"><img src=\"https://camo.githubusercontent.com/faec1d3d6f7d131436402e0f75ab811bba04f511a4dea577b25cf6a9a61c6ed0/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f4c69746f4d6f72652f73696d706c652d69636f6e732d6672616d6572\" alt=\"\" data-canonical-src=\"https://img.shields.io/github/license/LitoMore/simple-icons-framer\" style=\"max-width: 100%;\"></a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/8afc1bc4a2b1c34639ba2d86fabe4f5dd0c732d98265327fca38bbf1b54da10c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d25324673696d706c652d69636f6e7325324673696d706c652d69636f6e732532466d61737465722532467061636b6167652e6a736f6e2671756572793d2532342e76657273696f6e266c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\"><img src=\"https://camo.githubusercontent.com/8afc1bc4a2b1c34639ba2d86fabe4f5dd0c732d98265327fca38bbf1b54da10c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d25324673696d706c652d69636f6e7325324673696d706c652d69636f6e732532466d61737465722532467061636b6167652e6a736f6e2671756572793d2532342e76657273696f6e266c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\" alt=\"\" data-canonical-src=\"https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fraw.githubusercontent.com%2Fsimple-icons%2Fsimple-icons%2Fmaster%2Fpackage.json&amp;query=%24.version&amp;logo=simpleicons&amp;label=version\" style=\"max-width: 100%;\"></a></td>\n</tr>\n<tr>\n<td align=\"left\"><a href=\"https://github.com/foo-dogsquared/hugo-mod-simple-icons\">Hugo module</a> <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/c6118fbf19f5f635ce743ef9ee967278c591b45917f46582e43e756fd1345256/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f6875676f2f3030302f666666\"><img src=\"https://camo.githubusercontent.com/c6118fbf19f5f635ce743ef9ee967278c591b45917f46582e43e756fd1345256/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f6875676f2f3030302f666666\" alt=\"Hugo\" align=\"left\" width=\"24\" height=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/hugo/000/fff\" style=\"max-width: 100%;\"></a></td>\n<td align=\"left\"><a href=\"https://github.com/foo-dogsquared\">@foo-dogsquared</a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/d65d1b6c7ea3550f4387af6a410ecdef01703f3b7ea00fc5f8d20328d2de5d3d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f666f6f2d646f67737175617265642f6875676f2d6d6f642d73696d706c652d69636f6e73\"><img src=\"https://camo.githubusercontent.com/d65d1b6c7ea3550f4387af6a410ecdef01703f3b7ea00fc5f8d20328d2de5d3d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f666f6f2d646f67737175617265642f6875676f2d6d6f642d73696d706c652d69636f6e73\" alt=\"\" data-canonical-src=\"https://img.shields.io/github/license/foo-dogsquared/hugo-mod-simple-icons\" style=\"max-width: 100%;\"></a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/1a244f46c07e48fb8bf90a9be941d89fc5f4b4d7065de695e9cb7211f91a0306/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f7461672f666f6f2d646f67737175617265642f6875676f2d6d6f642d73696d706c652d69636f6e733f6c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\"><img src=\"https://camo.githubusercontent.com/1a244f46c07e48fb8bf90a9be941d89fc5f4b4d7065de695e9cb7211f91a0306/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f7461672f666f6f2d646f67737175617265642f6875676f2d6d6f642d73696d706c652d69636f6e733f6c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\" alt=\"\" data-canonical-src=\"https://img.shields.io/github/v/tag/foo-dogsquared/hugo-mod-simple-icons?logo=simpleicons&amp;label=version\" style=\"max-width: 100%;\"></a></td>\n</tr>\n<tr>\n<td align=\"left\"><a href=\"https://github.com/runxel/kirby3-simpleicons\">Kirby plugin</a> <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/0f0f7b8041d7811e5f2b0a6b1d32e813bc8aacc6962cb4a0769c877e7f061a47/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f6b697262792f3030302f666666\"><img src=\"https://camo.githubusercontent.com/0f0f7b8041d7811e5f2b0a6b1d32e813bc8aacc6962cb4a0769c877e7f061a47/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f6b697262792f3030302f666666\" alt=\"Kirby\" align=\"left\" width=\"24\" height=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/kirby/000/fff\" style=\"max-width: 100%;\"></a></td>\n<td align=\"left\"><a href=\"https://github.com/runxel\">@runxel</a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/48eb384bb3635b541ee5c39adb7ae3815307a287fd632a8933fc754d574698c6/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f72756e78656c2f6b69726279332d73696d706c6569636f6e73\"><img src=\"https://camo.githubusercontent.com/48eb384bb3635b541ee5c39adb7ae3815307a287fd632a8933fc754d574698c6/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f72756e78656c2f6b69726279332d73696d706c6569636f6e73\" alt=\"\" data-canonical-src=\"https://img.shields.io/github/license/runxel/kirby3-simpleicons\" style=\"max-width: 100%;\"></a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/f6a2ccdb53f4e56e9574b97814af00dc52756e56dbcb6f15a837ce7bc8c84c7c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d25324672756e78656c2532466b69726279332d73696d706c6569636f6e732532466d6173746572253246636f6d706f7365722e6a736f6e2671756572793d2532342e2e2535422773696d706c652d69636f6e7325324673696d706c652d69636f6e7327253544266c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\"><img src=\"https://camo.githubusercontent.com/f6a2ccdb53f4e56e9574b97814af00dc52756e56dbcb6f15a837ce7bc8c84c7c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d25324672756e78656c2532466b69726279332d73696d706c6569636f6e732532466d6173746572253246636f6d706f7365722e6a736f6e2671756572793d2532342e2e2535422773696d706c652d69636f6e7325324673696d706c652d69636f6e7327253544266c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\" alt=\"\" data-canonical-src=\"https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fraw.githubusercontent.com%2Frunxel%2Fkirby3-simpleicons%2Fmaster%2Fcomposer.json&amp;query=%24..%5B'simple-icons%2Fsimple-icons'%5D&amp;logo=simpleicons&amp;label=version\" style=\"max-width: 100%;\"></a></td>\n</tr>\n<tr>\n<td align=\"left\"><a href=\"https://github.com/ineshbose/simple-icons-latex\">LaTeX package</a> <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/8ce853d3c89096451ebc230b13311c09ab88c1666464b72ce99504096a76b1a3/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f6c617465782f3030302f666666\"><img src=\"https://camo.githubusercontent.com/8ce853d3c89096451ebc230b13311c09ab88c1666464b72ce99504096a76b1a3/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f6c617465782f3030302f666666\" alt=\"LaTeX\" align=\"left\" width=\"24\" height=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/latex/000/fff\" style=\"max-width: 100%;\"></a></td>\n<td align=\"left\"><a href=\"https://github.com/ineshbose\">@ineshbose</a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/633ebc2780bc8963a49c98b8b1394695aff35cf2d04253f0302229332313d578/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f696e657368626f73652f73696d706c652d69636f6e732d6c61746578\"><img src=\"https://camo.githubusercontent.com/633ebc2780bc8963a49c98b8b1394695aff35cf2d04253f0302229332313d578/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f696e657368626f73652f73696d706c652d69636f6e732d6c61746578\" alt=\"\" data-canonical-src=\"https://img.shields.io/github/license/ineshbose/simple-icons-latex\" style=\"max-width: 100%;\"></a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/76d7c04d470ae6d69aa63f2152e608dc55bcf269ce088cdfb02147a0b3be0eb3/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d253246696e657368626f736525324673696d706c652d69636f6e732d6c61746578253246646576656c6f702532467061636b6167652e6a736f6e2671756572793d2532342e2e2535422773696d706c652d69636f6e732d666f6e7427253544266c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\"><img src=\"https://camo.githubusercontent.com/76d7c04d470ae6d69aa63f2152e608dc55bcf269ce088cdfb02147a0b3be0eb3/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d253246696e657368626f736525324673696d706c652d69636f6e732d6c61746578253246646576656c6f702532467061636b6167652e6a736f6e2671756572793d2532342e2e2535422773696d706c652d69636f6e732d666f6e7427253544266c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\" alt=\"\" data-canonical-src=\"https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fraw.githubusercontent.com%2Fineshbose%2Fsimple-icons-latex%2Fdevelop%2Fpackage.json&amp;query=%24..%5B'simple-icons-font'%5D&amp;logo=simpleicons&amp;label=version\" style=\"max-width: 100%;\"></a></td>\n</tr>\n<tr>\n<td align=\"left\"><a href=\"https://github.com/ublabs/blade-simple-icons\">Laravel package</a> <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/87bb50c27bfc366c5d7726f9a6094c548d7c2db16c19baf3765fce39fd70e73c/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f6c61726176656c2f3030302f666666\"><img src=\"https://camo.githubusercontent.com/87bb50c27bfc366c5d7726f9a6094c548d7c2db16c19baf3765fce39fd70e73c/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f6c61726176656c2f3030302f666666\" alt=\"Laravel\" align=\"left\" width=\"24\" height=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/laravel/000/fff\" style=\"max-width: 100%;\"></a></td>\n<td align=\"left\"><a href=\"https://github.com/adrian-ub\">@adrian-ub</a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/c5c8b4bd0fbaf00405676af996b7b78aba3b7196eca6e57aae033505cff120b7/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f75626c6162732f626c6164652d73696d706c652d69636f6e73\"><img src=\"https://camo.githubusercontent.com/c5c8b4bd0fbaf00405676af996b7b78aba3b7196eca6e57aae033505cff120b7/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f75626c6162732f626c6164652d73696d706c652d69636f6e73\" alt=\"\" data-canonical-src=\"https://img.shields.io/github/license/ublabs/blade-simple-icons\" style=\"max-width: 100%;\"></a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/8afc1bc4a2b1c34639ba2d86fabe4f5dd0c732d98265327fca38bbf1b54da10c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d25324673696d706c652d69636f6e7325324673696d706c652d69636f6e732532466d61737465722532467061636b6167652e6a736f6e2671756572793d2532342e76657273696f6e266c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\"><img src=\"https://camo.githubusercontent.com/8afc1bc4a2b1c34639ba2d86fabe4f5dd0c732d98265327fca38bbf1b54da10c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d25324673696d706c652d69636f6e7325324673696d706c652d69636f6e732532466d61737465722532467061636b6167652e6a736f6e2671756572793d2532342e76657273696f6e266c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\" alt=\"\" data-canonical-src=\"https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fraw.githubusercontent.com%2Fsimple-icons%2Fsimple-icons%2Fmaster%2Fpackage.json&amp;query=%24.version&amp;logo=simpleicons&amp;label=version\" style=\"max-width: 100%;\"></a></td>\n</tr>\n<tr>\n<td align=\"left\"><a href=\"https://github.com/icons-pack/react-simple-icons\">React package</a> <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/cc679590198a19fb9a6103b6987f905846709870ca6b4e623788aedb198abc18/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f72656163742f3030302f666666\"><img src=\"https://camo.githubusercontent.com/cc679590198a19fb9a6103b6987f905846709870ca6b4e623788aedb198abc18/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f72656163742f3030302f666666\" alt=\"React\" align=\"left\" width=\"24\" height=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/react/000/fff\" style=\"max-width: 100%;\"></a></td>\n<td align=\"left\"><a href=\"https://github.com/wootsbot\">@wootsbot</a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/01583dbeacb0c10fc85f5e03509a12c84c2b8dbb7956186bb424eb85b3f4bbe8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f69636f6e732d7061636b2f72656163742d73696d706c652d69636f6e73\"><img src=\"https://camo.githubusercontent.com/01583dbeacb0c10fc85f5e03509a12c84c2b8dbb7956186bb424eb85b3f4bbe8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f69636f6e732d7061636b2f72656163742d73696d706c652d69636f6e73\" alt=\"\" data-canonical-src=\"https://img.shields.io/github/license/icons-pack/react-simple-icons\" style=\"max-width: 100%;\"></a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/02f3aad3d17430f92a4d705b8a977df225520e27ae851ae5c0df09784c972e10/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d25324669636f6e732d7061636b25324672656163742d73696d706c652d69636f6e732532466d61696e2532467061636b6167652e6a736f6e2671756572793d2532342e2e2535422773696d706c652d69636f6e7327253544266c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\"><img src=\"https://camo.githubusercontent.com/02f3aad3d17430f92a4d705b8a977df225520e27ae851ae5c0df09784c972e10/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d25324669636f6e732d7061636b25324672656163742d73696d706c652d69636f6e732532466d61696e2532467061636b6167652e6a736f6e2671756572793d2532342e2e2535422773696d706c652d69636f6e7327253544266c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\" alt=\"\" data-canonical-src=\"https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fraw.githubusercontent.com%2Ficons-pack%2Freact-simple-icons%2Fmain%2Fpackage.json&amp;query=%24..%5B'simple-icons'%5D&amp;logo=simpleicons&amp;label=version\" style=\"max-width: 100%;\"></a></td>\n</tr>\n<tr>\n<td align=\"left\"><a href=\"https://rubygems.org/gems/simple-icons-rails\" rel=\"nofollow\">Ruby gem</a> <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/748d89a07e4f5b6a923acddafca6973d5145d7a7a522c7b15b21bc9eaa7dc3fb/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f7275627967656d732f3030302f666666\"><img src=\"https://camo.githubusercontent.com/748d89a07e4f5b6a923acddafca6973d5145d7a7a522c7b15b21bc9eaa7dc3fb/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f7275627967656d732f3030302f666666\" alt=\"Ruby\" align=\"left\" width=\"24\" height=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/rubygems/000/fff\" style=\"max-width: 100%;\"></a></td>\n<td align=\"left\"><a href=\"https://github.com/the-pew-inc\">@thepew</a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/e5a760a6bf08bd8a66139a7376d9d759b84a1e519e2a6e3bdaf5e3646afffde8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f7468652d7065772d696e632f73696d706c652d69636f6e732d7261696c73\"><img src=\"https://camo.githubusercontent.com/e5a760a6bf08bd8a66139a7376d9d759b84a1e519e2a6e3bdaf5e3646afffde8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f7468652d7065772d696e632f73696d706c652d69636f6e732d7261696c73\" alt=\"\" data-canonical-src=\"https://img.shields.io/github/license/the-pew-inc/simple-icons-rails\" style=\"max-width: 100%;\"></a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/8afc1bc4a2b1c34639ba2d86fabe4f5dd0c732d98265327fca38bbf1b54da10c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d25324673696d706c652d69636f6e7325324673696d706c652d69636f6e732532466d61737465722532467061636b6167652e6a736f6e2671756572793d2532342e76657273696f6e266c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\"><img src=\"https://camo.githubusercontent.com/8afc1bc4a2b1c34639ba2d86fabe4f5dd0c732d98265327fca38bbf1b54da10c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d25324673696d706c652d69636f6e7325324673696d706c652d69636f6e732532466d61737465722532467061636b6167652e6a736f6e2671756572793d2532342e76657273696f6e266c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\" alt=\"\" data-canonical-src=\"https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fraw.githubusercontent.com%2Fsimple-icons%2Fsimple-icons%2Fmaster%2Fpackage.json&amp;query=%24.version&amp;logo=simpleicons&amp;label=version\" style=\"max-width: 100%;\"></a></td>\n</tr>\n<tr>\n<td align=\"left\"><a href=\"https://github.com/icons-pack/svelte-simple-icons\">Svelte package</a> <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/f8541af166463b9bbb106fa14f71d345f35bd35c302c30e7b213a8354b3e828e/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f7376656c74652f3030302f666666\"><img src=\"https://camo.githubusercontent.com/f8541af166463b9bbb106fa14f71d345f35bd35c302c30e7b213a8354b3e828e/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f7376656c74652f3030302f666666\" alt=\"Svelte\" align=\"left\" width=\"24\" height=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/svelte/000/fff\" style=\"max-width: 100%;\"></a></td>\n<td align=\"left\"><a href=\"https://github.com/wootsbot\">@wootsbot</a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/8042362556ad9f01062d15892cadba03540917922c7c10e6bdd3c773c043f989/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f69636f6e732d7061636b2f7376656c74652d73696d706c652d69636f6e73\"><img src=\"https://camo.githubusercontent.com/8042362556ad9f01062d15892cadba03540917922c7c10e6bdd3c773c043f989/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f69636f6e732d7061636b2f7376656c74652d73696d706c652d69636f6e73\" alt=\"\" data-canonical-src=\"https://img.shields.io/github/license/icons-pack/svelte-simple-icons\" style=\"max-width: 100%;\"></a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/747a7f51679696b83beb2961fc3d33d64cbf7e78c051d287c22de2261f8573bb/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d25324669636f6e732d7061636b2532467376656c74652d73696d706c652d69636f6e732532466d61696e2532467061636b6167652e6a736f6e2671756572793d2532342e2e2535422773696d706c652d69636f6e7327253544266c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\"><img src=\"https://camo.githubusercontent.com/747a7f51679696b83beb2961fc3d33d64cbf7e78c051d287c22de2261f8573bb/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d25324669636f6e732d7061636b2532467376656c74652d73696d706c652d69636f6e732532466d61696e2532467061636b6167652e6a736f6e2671756572793d2532342e2e2535422773696d706c652d69636f6e7327253544266c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\" alt=\"\" data-canonical-src=\"https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fraw.githubusercontent.com%2Ficons-pack%2Fsvelte-simple-icons%2Fmain%2Fpackage.json&amp;query=%24..%5B'simple-icons'%5D&amp;logo=simpleicons&amp;label=version\" style=\"max-width: 100%;\"></a></td>\n</tr>\n<tr>\n<td align=\"left\"><a href=\"https://github.com/wyatt-herkamp/vue3-simple-icons\">Vue 3 package</a> <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/0b919f3f3a3f42e9e45007d629b3f4bab89c4eb10fce0feab65f7ab1f59a6eed/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f767565646f746a732f3030302f666666\"><img src=\"https://camo.githubusercontent.com/0b919f3f3a3f42e9e45007d629b3f4bab89c4eb10fce0feab65f7ab1f59a6eed/68747470733a2f2f63646e2e73696d706c6569636f6e732e6f72672f767565646f746a732f3030302f666666\" alt=\"Vue\" align=\"left\" width=\"24\" height=\"24\" data-canonical-src=\"https://cdn.simpleicons.org/vuedotjs/000/fff\" style=\"max-width: 100%;\"></a></td>\n<td align=\"left\"><a href=\"https://github.com/wyatt-herkamp\">@wyatt-herkamp</a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/3bf4e8b8bc23976fcd6aef7a4ce5285fc647383074eedae5f3fff37d954b09c2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f77796174742d6865726b616d702f767565332d73696d706c652d69636f6e73\"><img src=\"https://camo.githubusercontent.com/3bf4e8b8bc23976fcd6aef7a4ce5285fc647383074eedae5f3fff37d954b09c2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f77796174742d6865726b616d702f767565332d73696d706c652d69636f6e73\" alt=\"\" data-canonical-src=\"https://img.shields.io/github/license/wyatt-herkamp/vue3-simple-icons\" style=\"max-width: 100%;\"></a></td>\n<td align=\"center\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://camo.githubusercontent.com/2fcb270a679d99e94550b29c348a20a68b2792d5cd678e3f9bea3c143e93ccb5/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d25324677796174742d6865726b616d70253246767565332d73696d706c652d69636f6e732532466d61696e25324673696d706c652d69636f6e732e6a736f6e2671756572793d73696d706c6549636f6e7356657273696f6e266c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\"><img src=\"https://camo.githubusercontent.com/2fcb270a679d99e94550b29c348a20a68b2792d5cd678e3f9bea3c143e93ccb5/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d25324677796174742d6865726b616d70253246767565332d73696d706c652d69636f6e732532466d61696e25324673696d706c652d69636f6e732e6a736f6e2671756572793d73696d706c6549636f6e7356657273696f6e266c6f676f3d73696d706c6569636f6e73266c6162656c3d76657273696f6e\" alt=\"\" data-canonical-src=\"https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fraw.githubusercontent.com%2Fwyatt-herkamp%2Fvue3-simple-icons%2Fmain%2Fsimple-icons.json&amp;query=simpleIconsVersion&amp;logo=simpleicons&amp;label=version\" style=\"max-width: 100%;\"></a></td>\n</tr>\n</tbody>\n</table></markdown-accessiblity-table>\n<p dir=\"auto\">Maintain a library? <a href=\"https://github.com/simple-icons/simple-icons/compare\">Submit a PR</a> to include it in the list above.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Contribute</h2><a id=\"user-content-contribute\" class=\"anchor\" aria-label=\"Permalink: Contribute\" href=\"#contribute\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\"><a href=\"https://github.com/simple-icons/simple-icons/issues?q=is%3Aopen+label%3A%22good+first+issue%22+-linked%3Apr\"><img src=\"https://camo.githubusercontent.com/28837894853c4c1bc17ca231f144e61c0871f2b51b7193c85ed12f05f7e76d23/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532466170692e6769746875622e636f6d253246736561726368253246697373756573253346712533447265706f25334173696d706c652d69636f6e7325324673696d706c652d69636f6e7325323532306c6162656c2533412532353232676f6f6425323532306669727374253235323069737375652532353232253235323069732533416f70656e25323532302d6c696e6b656425334170722671756572793d2532342e746f74616c5f636f756e74267375666669783d2532306f70656e266c6f676f3d676974687562266c6162656c3d676f6f64253230666972737425323069737375657326636f6c6f723d323238663663266c6162656c436f6c6f723d323238663663266c6f676f436f6c6f723d7768697465267374796c653d666c61742d737175617265\" alt=\"\" data-canonical-src=\"https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fapi.github.com%2Fsearch%2Fissues%3Fq%3Drepo%3Asimple-icons%2Fsimple-icons%2520label%3A%2522good%2520first%2520issue%2522%2520is%3Aopen%2520-linked%3Apr&amp;query=%24.total_count&amp;suffix=%20open&amp;logo=github&amp;label=good%20first%20issues&amp;color=228f6c&amp;labelColor=228f6c&amp;logoColor=white&amp;style=flat-square\" style=\"max-width: 100%;\"></a>\n<a href=\"https://github.com/simple-icons/simple-icons/issues?q=is%3Aissue+is%3Aopen+label%3A%22new+icon%22%2C%22update+icon%2Fdata%22\"><img src=\"https://camo.githubusercontent.com/c4f48607ba1cce6d2413dd603d76066486fb056b2f20e898018a0ff0660f0068/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532466170692e6769746875622e636f6d253246736561726368253246697373756573253346712533447265706f25334173696d706c652d69636f6e7325324673696d706c652d69636f6e7325323532306c6162656c2533412532353232757064617465253235323069636f6e25324664617461253235323225324325323532326e6577253235323069636f6e2532353232253235323069732533416f70656e25323532302d6c696e6b656425334170722671756572793d2532342e746f74616c5f636f756e74267375666669783d2532306f70656e266c6f676f3d737667266c6f676f436f6c6f723d333333266c6162656c3d69636f6e253230697373756573266c6162656c436f6c6f723d46464231334226636f6c6f723d464642313342267374796c653d666c61742d737175617265\" alt=\"\" data-canonical-src=\"https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fapi.github.com%2Fsearch%2Fissues%3Fq%3Drepo%3Asimple-icons%2Fsimple-icons%2520label%3A%2522update%2520icon%2Fdata%2522%2C%2522new%2520icon%2522%2520is%3Aopen%2520-linked%3Apr&amp;query=%24.total_count&amp;suffix=%20open&amp;logo=svg&amp;logoColor=333&amp;label=icon%20issues&amp;labelColor=FFB13B&amp;color=FFB13B&amp;style=flat-square\" style=\"max-width: 100%;\"></a>\n<a href=\"https://github.com/simple-icons/simple-icons/issues?q=is%3Aissue+is%3Aopen+label%3Adocs%2Cmeta%2Cpackage+-linked%3Apr\"><img src=\"https://camo.githubusercontent.com/e5e802687e155c8543846c1a0e8f399404f1eda39851108ae6591c91e3700684/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532466170692e6769746875622e636f6d253246736561726368253246697373756573253346712533447265706f25334173696d706c652d69636f6e7325324673696d706c652d69636f6e73253235323069732533416973737565253235323069732533416f70656e25323532306c6162656c2533416d6574612532437061636b61676525323532302d6c696e6b656425334170722671756572793d2532342e746f74616c5f636f756e74267375666669783d2532306f70656e266c6f676f3d74797065736372697074266c6f676f436f6c6f723d7768697465266c6162656c3d636f6465253230697373756573266c6162656c436f6c6f723d33313738433626636f6c6f723d333137384336267374796c653d666c61742d737175617265\" alt=\"\" data-canonical-src=\"https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fapi.github.com%2Fsearch%2Fissues%3Fq%3Drepo%3Asimple-icons%2Fsimple-icons%2520is%3Aissue%2520is%3Aopen%2520label%3Ameta%2Cpackage%2520-linked%3Apr&amp;query=%24.total_count&amp;suffix=%20open&amp;logo=typescript&amp;logoColor=white&amp;label=code%20issues&amp;labelColor=3178C6&amp;color=3178C6&amp;style=flat-square\" style=\"max-width: 100%;\"></a>\n<a href=\"https://github.com/simple-icons/simple-icons/issues?q=is%3Aopen+is%3Aissue+label%3Adocs+-linked%3Apr\"><img src=\"https://camo.githubusercontent.com/7a3ea837e3567df9d45f39412d4425e2ffbccd5ccebca6acc4e92882cfe739eb/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532466170692e6769746875622e636f6d253246736561726368253246697373756573253346712533447265706f25334173696d706c652d69636f6e7325324673696d706c652d69636f6e7325323532306c6162656c253341646f6373253235323069732533416f70656e25323532302d6c696e6b656425334170722671756572793d2532342e746f74616c5f636f756e74267375666669783d2532306f70656e266c6f676f3d6d61726b646f776e266c6162656c3d646f6373253230697373756573266c6162656c436f6c6f723d33343361343026636f6c6f723d333433613430266c6f676f436f6c6f723d464646267374796c653d666c61742d737175617265\" alt=\"\" data-canonical-src=\"https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fapi.github.com%2Fsearch%2Fissues%3Fq%3Drepo%3Asimple-icons%2Fsimple-icons%2520label%3Adocs%2520is%3Aopen%2520-linked%3Apr&amp;query=%24.total_count&amp;suffix=%20open&amp;logo=markdown&amp;label=docs%20issues&amp;labelColor=343a40&amp;color=343a40&amp;logoColor=FFF&amp;style=flat-square\" style=\"max-width: 100%;\"></a></p>\n<p dir=\"auto\">Information describing how to contribute can be found in the file <a href=\"https://github.com/simple-icons/simple-icons/blob/develop/CONTRIBUTING.md\">CONTRIBUTING.md</a></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Contributors</h2><a id=\"user-content-contributors\" class=\"anchor\" aria-label=\"Permalink: Contributors\" href=\"#contributors\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<a href=\"https://github.com/simple-icons/simple-icons/graphs/contributors\">\n <img src=\"https://camo.githubusercontent.com/46c003cd6f10806e2975402ff18cc3f64a34e71ca9729f1a43a89c312fba1bf8/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f73696d706c652d69636f6e732f636f6e7472696275746f72732e7376673f77696474683d38393026627574746f6e3d66616c7365\" data-canonical-src=\"https://opencollective.com/simple-icons/contributors.svg?width=890&amp;button=false\" style=\"max-width: 100%;\">\n</a>\n</article>",
"loaded": true,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": [
{
"level": 3,
"text": "Simple Icons",
"anchor": "simple-icons",
"htmlText": "Simple Icons"
},
{
"level": 2,
"text": "Usage",
"anchor": "usage",
"htmlText": "Usage"
},
{
"level": 3,
"text": "General Usage",
"anchor": "general-usage",
"htmlText": "General Usage"
},
{
"level": 3,
"text": "CDN Usage",
"anchor": "cdn-usage",
"htmlText": "CDN Usage"
},
{
"level": 4,
"text": "CDN with colors",
"anchor": "cdn-with-colors",
"htmlText": "CDN with colors"
},
{
"level": 3,
"text": "Node Usage ",
"anchor": "node-usage-",
"htmlText": "Node Usage "
},
{
"level": 4,
"text": "TypeScript Usage ",
"anchor": "typescript-usage-",
"htmlText": "TypeScript Usage "
},
{
"level": 3,
"text": "PHP Usage ",
"anchor": "php-usage-",
"htmlText": "PHP Usage "
},
{
"level": 2,
"text": "Third-Party Extensions",
"anchor": "third-party-extensions",
"htmlText": "Third-Party Extensions"
},
{
"level": 2,
"text": "Third-Party Libraries",
"anchor": "third-party-libraries",
"htmlText": "Third-Party Libraries"
},
{
"level": 2,
"text": "Contribute",
"anchor": "contribute",
"htmlText": "Contribute"
},
{
"level": 2,
"text": "Contributors",
"anchor": "contributors",
"htmlText": "Contributors"
}
],
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Fsimple-icons%2Fsimple-icons"
}
},
{
"displayName": "CODE_OF_CONDUCT.md",
"repoName": "simple-icons",
"refName": "develop",
"path": "CODE_OF_CONDUCT.md",
"preferredFileType": "code_of_conduct",
"tabName": "Code of conduct",
"richText": null,
"loaded": false,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": null,
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Fsimple-icons%2Fsimple-icons"
}
},
{
"displayName": "LICENSE.md",
"repoName": "simple-icons",
"refName": "develop",
"path": "LICENSE.md",
"preferredFileType": "license",
"tabName": "CC0-1.0",
"richText": null,
"loaded": false,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": null,
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Fsimple-icons%2Fsimple-icons"
}
},
{
"displayName": "SECURITY.md",
"repoName": ".github",
"refName": "main",
"path": "SECURITY.md",
"preferredFileType": "security",
"tabName": "Security",
"richText": null,
"loaded": false,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": null,
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Fsimple-icons%2Fsimple-icons"
}
}
],
"overviewFilesProcessingTime": 0
}
},
"appPayload": {
"helpUrl": "https://docs.github.com",
"findFileWorkerPath": "/assets-cdn/worker/find-file-worker-1583894afd38.js",
"findInFileWorkerPath": "/assets-cdn/worker/find-in-file-worker-3a63a487027b.js",
"githubDevUrl": null,
"enabled_features": {
"code_nav_ui_events": false,
"overview_shared_code_dropdown_button": false,
"react_blob_overlay": false,
"copilot_conversational_ux_embedding_update": false,
"copilot_smell_icebreaker_ux": true,
"copilot_workspace": false
}
}
}
}
{
"accept-ranges": "bytes",
"cache-control": "max-age=0, private, must-revalidate",
"content-encoding": "gzip",
"content-security-policy": "default-src 'none'; base-uri 'self'; child-src github.com/assets-cdn/worker/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com api.githubcopilot.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com/v1/engines/github-completion/completions proxy.enterprise.githubcopilot.com/v1/engines/github-completion/completions *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.com/assets-cdn/worker/ gist.github.com/assets-cdn/worker/",
"content-type": "text/html; charset=utf-8",
"date": "Sat, 27 Jul 2024 03:43:33 GMT",
"etag": "73ca000e483f7436b352f2e790c8a7c3",
"referrer-policy": "no-referrer-when-downgrade",
"server": "GitHub.com",
"set-cookie": "logged_in=no; Path=/; Domain=github.com; Expires=Sun, 27 Jul 2025 03:43:33 GMT; HttpOnly; Secure; SameSite=Lax",
"strict-transport-security": "max-age=31536000; includeSubdomains; preload",
"transfer-encoding": "chunked",
"vary": "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, Accept-Encoding, Accept, X-Requested-With",
"x-content-type-options": "nosniff",
"x-frame-options": "deny",
"x-github-request-id": "EA06:2519B8:5DABE3:772C50:66A46CE5",
"x-xss-protection": "0"
}