Skip to content

Release 10 new icons and 4 updated icons and 59 removed icons

Latest
Compare
Choose a tag to compare
@mondeja mondeja released this 22 Dec 22:21
· 7 commits to develop since this release
6dcfdc2

10 new icons

4 updated icons

59 removed icons

SDK breaking changes

_data/simple-icons.json file structure updated

The icons property has been dropped. Now the JSON content is the array of icons.

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

const iconsData = await getIconsData();
-const icons = iconsData.icons;
+const icons = iconsData;

getIconDataPath() has been renamed to getIconsDataPath()

We renamed this function to make our function names consistent.

-import {getIconDataPath} from 'simple-icons/sdk';
+import {getIconsDataPath} from 'simple-icons/sdk';