Changelog

Release history of the exaBase Design System Icons packages.

June 12, 2026 - Icons React 2.0.0

Packaging improvements for @exawizards/exabase-design-system-icons-react. Named imports from the package root were already tree-shaken by modern ESM bundlers, so typical production bundles are unaffected. This release makes that more robust across more setups:

  • Each icon is now published as an individual module (ESM + CJS) instead of a single bundle. This enables Next.js optimizePackageImports and ensures unused icons are dropped even in CJS-based toolchains (Jest/Vitest, some SSR setups) that previously loaded the full bundle.
  • Icons can be imported directly, e.g. import XmarkIcon from "@exawizards/exabase-design-system-icons-react/XmarkIcon". See Direct imports for details.
  • Added the exports map and sideEffects: false to package.json, and pointed main at the CJS build instead of UMD.

Breaking changes:

// ❌ No longer resolves
import { XmarkIcon } from "@exawizards/exabase-design-system-icons-react/dist/index.mjs";

// ✅ Unaffected — named import from the package root
import { XmarkIcon } from "@exawizards/exabase-design-system-icons-react";

// ✅ Now supported — subpath import
import XmarkIcon from "@exawizards/exabase-design-system-icons-react/XmarkIcon";

April 23, 2025 - Icons React 1.0.1

Relaxed the react peer dependency from ^18.0.0 to >=16.8.0.

March 26, 2025 - Icons React 1.0.0

First stable release of @exawizards/exabase-design-system-icons-react, the React icon library.

March 25, 2025 - Icons 1.5.0

Added 18 icons and some icons were modified.

April 1, 2024 - Icons 1.4.0 and Icons React

Added 51 icons and some icons were modified.

Released the first version (0.4.0) of the React icon library, @exawizards/exabase-design-system-icons-react.

October 31, 2023 - Icons 1.3.0

Added 27 icons and some icons were modified.

August 1, 2023 - Icons 1.2.0

Added 41 icons and some icons were modified.

March 10, 2023 - Icons 1.1.1

Fixed a problem where some icons added in 1.0.0 were not included in the css and woff2.

March 8, 2023 - Icons 1.1.0

Added 64 icons and some icons were modified.

August 30, 2022 - Icons 1.0.0

First release of exaBase Design System Icons.