InstallationReact (Rspack)

Install Monicon with React (Rspack)

Setting up Monicon with React and Rspack is a straightforward process. This guide will walk you through the installation and configuration steps to get started with Monicon in your React project.

Install

To get started, you’ll need to install the necessary dependencies for Monicon. In your project directory, run the following command to install the dependencies.

npm i @monicon/react @monicon/rspack

Now you should install the development dependency @iconify/json for the icon sets. This package provides a comprehensive collection of icons that can be easily integrated into your project.

npm i -D @iconify/json
 
# or specific icon sets
npm i -D @iconify-json/mdi @iconify-json/feather

Configure Rspack

Now that the dependencies are installed, you’ll need to configure Rollup to use Monicon.

rspack.config.mjs
import { defineConfig } from "@rspack/cli";
import MoniconPlugin from "@monicon/rspack";
 
export default defineConfig({
  plugins: [
    new MoniconPlugin({
      icons: [
        "mdi:home",
        "feather:activity",
        "logos:active-campaign",
        "lucide:badge-check"
      ],
    }),
  ]
});
💡

The icons array in the monicon plugin configuration specifies the icon sets you want to use in your project. You can add more icon sets as needed.

For a complete list of available icon sets, refer to the Icones website.

Usage

You can now use Monicon in your React components. Here’s an example of how to use Monicon in a React component.

src/App.tsx
import { Monicon } from "@monicon/react";
 
function App() {
  return (
    <main>
      <Monicon name="mdi:home" />
      <Monicon name="logos:active-campaign" size={30} />
      <Monicon name="feather:activity" color="red" />
      <Monicon name="lucide:badge-check" size={24} strokeWidth={4} />
    </main>
  );
}
 
export default App;

Next Steps

You’ve successfully set up Monicon with React and Rspack! You can now explore more icon sets and customize your usage further.