Skip to content

Release 8 new icons and 2 removed icons (v7.0.0)

Choose a tag to compare

@github-actions github-actions released this 29 May 10:11
· 0 commits to 798d4148474600ced39616bd9bfb6ba43f7eb42c since this release

New Icons

Removed Icons

Breaking changes for npm package

  • simple-icons/icons/[ICON SLUG] entrypoints have been removed, use import { si[ICON SLUG] } from 'simple-icons/icons' instead.

  • simple-icons entrypoint and their property .Get have been deprecated and will be removed in v8. If you need to iterate over all icons, use:

    import * as icons from 'simple-icons/icons';
    
    for (const si in icons) {
        const icon = icons[si];
    }