Skip to content

Release 1 new icon (v8.11.0)

Compare
Choose a tag to compare
@github-actions github-actions released this 23 Apr 03:09
· 0 commits to cd4f7d2bf53c43a5130f37751f43b08fe4a4ad19 since this release

New Icons

New API

Developing Third-Party Extensions

A SDK is included in the simple-icons/sdk entrypoint of the npm package to make it easier the development of third party extensions with Javascript and Typescript.

import { getIconsData, type IconData } from 'simple-icons/sdk';

const iconsData: IconData[] = getIconsData();
import { getIconsData } from 'simple-icons/sdk';

/* @typedef {import("./simple-icons/sdk").IconData} IconData */

/* @type {IconData[]} */
const iconsData = getIconsData();