MingCute Icons for React

February 1, 2026 · View on GitHub

MingCute icon library for React applications.

Implementation of the MingCute Icons library for React applications.

Browse all icons at MingCute.com →

npm stars downloads twitter

MingCute Icons for React

Installation

npm install @mingcute/react
# or
yarn add @mingcute/react
# or
pnpm add @mingcute/react

Usage

Basic Usage

Import icons from @mingcute/react.

import { MingcuteFill, Home1Line, SearchLine } from '@mingcute/react';

function App() {
  return (
    <div>
      {/* Default: 24px size and currentColor */}
      <MingcuteFill />

      {/* Custom size and color */}
      <Home1Line size={32} color="#007AFF" />

      {/* Inherits standard SVG props */}
      <SearchLine opacity={0.5} />
    </div>
  );
}

Props

All icons accept standard SVG attributes and the following optional props:

PropTypeDefaultDescription
sizenumber | string24The size of the icon (width and height).
colorstringcurrentColorThe color of the icon.

Color Control

You can control the icon color using the color prop or CSS color property. The icons use currentColor by default, so they will inherit the text color of their parent element.

// Use color prop
<MingcuteFill color="red" />

// Use CSS inheritance
<div style={{ color: 'blue' }}>
  <MingcuteFill /> 
</div>

License

Apache-2.0 License