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

@material-symbols-svg/react-native

v0.3.2

Published

Material Symbols (Outlined, Rounded, Sharp) as React Native components

Downloads

158

Readme

Material Symbols SVG / React Native

Material Symbols as React Native components. This package provides Google's Material Symbols in Outlined (default), Rounded, and Sharp styles as optimized React Native components, using react-native-svg for better performance, comprehensive weight support and tree-shaking-friendly output.

🌐 Documentation

Features

  • 🎨 3,836+ Icons - Complete Material Symbols collection
  • 🎭 3 Style Variants - Outlined, Rounded, Sharp
  • ⚖️ 7 Weight Variants - From 100 (thin) to 700 (bold)
  • 🌳 Tree-shaking Friendly - Bundler-dependent optimization
  • 📦 TypeScript Support - Full type safety out of the box
  • 📱 React Native Ready - Built on top of react-native-svg
  • Optimized Performance - Designed for ESM tree-shaking
  • 🎭 Fill Variants - Both outlined and filled versions available

Installation

npm install @material-symbols-svg/react-native react-native-svg
# or
pnpm add @material-symbols-svg/react-native react-native-svg
# or
yarn add @material-symbols-svg/react-native react-native-svg

Quick Start

import React from 'react';
import { View } from 'react-native';
import { Home, Settings, Search } from '@material-symbols-svg/react-native';

export function App() {
  return (
    <View>
      <Home />
      <Settings color="#2563eb" />
      <Search size={20} />
    </View>
  );
}

Usage

Basic Import (Default Weight 400)

import { Home, Settings, Menu } from '@material-symbols-svg/react-native';

Weight-Specific Imports

// Thin (100)
import { Home, Settings } from '@material-symbols-svg/react-native/w100';

// Light (200)
import { Home, Settings } from '@material-symbols-svg/react-native/w200';

// Regular (300)
import { Home, Settings } from '@material-symbols-svg/react-native/w300';

// Medium (400) - Default
import { Home, Settings } from '@material-symbols-svg/react-native/w400';

// Semi-bold (500)
import { Home, Settings } from '@material-symbols-svg/react-native/w500';

// Bold (600)
import { Home, Settings } from '@material-symbols-svg/react-native/w600';

// Extra-bold (700)
import { Home, Settings } from '@material-symbols-svg/react-native/w700';

Individual Icon Imports (Most Tree-shaking-friendly)

import { HomeW400 } from '@material-symbols-svg/react-native/icons/home';
import { SettingsW500 } from '@material-symbols-svg/react-native/icons/settings';

Filled Variants

import { HomeFill, SettingsFill } from '@material-symbols-svg/react-native';
// or weight-specific
import { HomeFillW500 } from '@material-symbols-svg/react-native/w500';
// or individual imports
import { HomeFillW400 } from '@material-symbols-svg/react-native/icons/home';

Style Variants (Single Package)

// Outlined (default weight: w400)
// (equivalent to '@material-symbols-svg/react-native')
import { Home, Settings } from '@material-symbols-svg/react-native/outlined';

// Rounded (default weight: w400)
import { Home, Settings } from '@material-symbols-svg/react-native/rounded';

// Sharp (default weight: w400)
import { Home, Settings } from '@material-symbols-svg/react-native/sharp';

// Outlined weight-specific
import { Home, Settings } from '@material-symbols-svg/react-native/outlined/w500';

// Rounded weight-specific
import { Home, Settings } from '@material-symbols-svg/react-native/rounded/w500';

// Sharp individual icon import
import { HomeW400 } from '@material-symbols-svg/react-native/sharp/icons/home';

Component Props

All icons accept react-native-svg SvgProps plus the following convenience props:

import { Home } from '@material-symbols-svg/react-native';

<Home
  size={24}
  color="tomato"
  fill="none"
  testID="home-icon"
/>

Accessibility

  • Decorative icons are not exposed unless you pass accessibility props explicitly.
  • Use accessibilityLabel only when the icon itself is the semantic image.
  • When the icon is inside Pressable or another control, label the wrapper instead of the icon.
import { Pressable } from 'react-native';
import { Home, Settings } from '@material-symbols-svg/react-native';

<Home accessibilityRole="image" accessibilityLabel="Home" accessible />

<Pressable accessibilityRole="button" accessibilityLabel="Open settings">
  <Settings />
</Pressable>

Bundle Size Optimization

Tree-shaking Best Practices

Note: Each icon module currently exports multiple variants (weights W100 to W700, filled variants, and metadata). Importing from icons/* narrows the module scope to a single icon, but final bundle size still depends on your bundler and production configuration.

// ✅ Good - Only imports specific icons
import { Home, Settings } from '@material-symbols-svg/react-native/w400';

// ✅ Better - Often smaller bundles (bundler-dependent)
import { HomeW400 } from '@material-symbols-svg/react-native/icons/home';

// ❌ Avoid - Imports entire weight bundle
import * as Icons from '@material-symbols-svg/react-native/w400';

Metro and Bundler Notes

React Native bundlers do not have a universal package import optimization flag like Next.js. Prefer explicit subpath imports such as /w400 and /icons/home, then verify the production bundle output in your app.

Available Icons

This package includes 3,836+ Material Symbols icons across outlined, rounded, and sharp styles. All icons are available in multiple categories:

  • Action - Common UI actions
  • Alert - Notifications and warnings
  • AV - Audio/video controls
  • Communication - Chat, email, phone
  • Content - Text editing, formatting
  • Device - Hardware and device icons
  • Editor - Text and content editing
  • File - File operations and types
  • Hardware - Computer and device hardware
  • Home - Smart home and IoT
  • Image - Photo and image editing
  • Maps - Location and navigation
  • Navigation - App navigation elements
  • Notification - System notifications
  • Places - Locations and buildings
  • Search - Search and discovery
  • Social - Social media and sharing
  • Toggle - On/off and selection controls

Contributing

See the main repository for contribution guidelines: material-symbols-svg

License

This project is licensed under the Apache-2.0 License. See the LICENSE file for details.

Acknowledgments

Related Packages

  • @material-symbols-svg/react - React components (Outlined / Rounded / Sharp)
  • @material-symbols-svg/vue - Vue components (Outlined / Rounded / Sharp)
  • @material-symbols-svg/svelte - Svelte components (Outlined / Rounded / Sharp)
  • @material-symbols-svg/astro - Astro components (Outlined / Rounded / Sharp)
  • @material-symbols-svg/react-native - React Native components (Outlined / Rounded / Sharp)