npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@dzeta-tech/mingcute-react-native

v1.0.1

Published

React Native wrapper for MingCute icons

Readme

MingCute React Native

React Native wrapper for MingCute icons. This package provides a simple, type-safe way to use MingCute icons in your React Native applications.

Installation

pnpm add mingcute-react-native react-native-svg

Or with npm:

npm install mingcute-react-native react-native-svg

Or with yarn:

yarn add mingcute-react-native react-native-svg

Peer Dependencies

  • react >= 16.8.0
  • react-native >= 0.60.0
  • react-native-svg >= 12.0.0

Usage

import { Icon } from 'mingcute-react-native';

// Basic usage with icon name
<Icon name="chat_1_fill" size={24} color="#000" />

// Using variant prop (automatically appends _fill or _line)
<Icon name="search" variant="line" size={32} color="#007AFF" />

// Icon name can include variant suffix
<Icon name="mail_fill" size={24} color="#FF0000" />

Props

Icon Component

| Prop | Type | Default | Description | |------|------|---------|-------------| | name | string | required | Icon name (slug). Can include _fill or _line suffix, or use variant prop | | size | number | 24 | Icon size in pixels | | color | string | "#000000" | Icon color (hex, rgb, or named color) | | variant | 'fill' \| 'line' | 'fill' | Icon variant. Only used if name doesn't already include variant suffix |

Icon Naming

Icons are named using the pattern: {icon_name}_{variant}

  • variant can be fill or line
  • Examples: chat_1_fill, mail_line, search_fill

If you provide just the base name (e.g., search), the variant prop will be used to construct the full name.

TypeScript Support

This package includes full TypeScript support with type-safe icon names:

import { Icon, IconName } from 'mingcute-react-native';

// IconName is a union type of all available icon names
const iconName: IconName = 'chat_1_fill'; // ✅ Type-safe
const invalid: IconName = 'non_existent'; // ❌ Type error

Available Icons

This package includes over 2000+ icons from the MingCute icon set. To see all available icons, you can:

import { getAllIconNames } from 'mingcute-react-native';

const allIcons = getAllIconNames();
console.log(allIcons); // Array of all icon names

Development

Building

pnpm build

Generating Icon Registry

The icon registry is generated from the MingCute submodule:

pnpm generate-icons

License

This package is licensed under Apache-2.0, same as the original MingCute icon set.

Credits

Icons are from MingCute by Richard9394.