New Icons
- Boxy SVG (7306)
- Linear (7419)
- MLflow (7302)
- PlanetScale (7367)
- Rasa (7277)
- Task (7413)
- tRPC (7446)
- Vitess (7372)
Removed Icons
- Java (7378)
- TransferWise (7420)
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:
js
import * as icons from 'simple-icons/icons';
for (const si in icons) {
const icon = icons[si];
}