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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@material-symbols-svg/vue-rounded

v0.1.19

Published

Material Symbols (Rounded) as Vue components

Downloads

1,094

Readme

Material Symbols SVG / Vue (Rounded)

Material Symbols as Vue components. This package provides Google's Material Symbols in Rounded style as optimized Vue components, using SVG paths instead of web fonts for better performance, comprehensive weight support and tree-shaking-friendly output.

🌐 Documentation

Features

  • 🎨 3,340+ Icons - Complete Material Symbols collection in Rounded style
  • ⚖️ 7 Weight Variants - From 100 (thin) to 700 (bold)
  • 🌳 Tree-shaking Friendly - Bundler-dependent optimization
  • 📦 TypeScript Support - Full type safety out of the box
  • Optimized Performance - Designed for ESM tree-shaking
  • 🔄 Hot Reload Friendly - Fast development experience
  • 🎭 Fill Variants - Both outlined and filled versions available

Installation

npm install @material-symbols-svg/vue-rounded
# or
pnpm add @material-symbols-svg/vue-rounded
# or
yarn add @material-symbols-svg/vue-rounded

Quick Start

<template>
  <div>
    <Home />
    <Settings />
    <Search />
  </div>
</template>

<script setup lang="ts">
import { Home, Settings, Search } from '@material-symbols-svg/vue-rounded';
</script>

Usage

Basic Import (Default Weight 400)

<script setup lang="ts">
import { Home, Settings, Menu } from '@material-symbols-svg/vue-rounded';
</script>

Weight-Specific Imports

<script setup lang="ts">
// Thin (100)
import { Home, Settings } from '@material-symbols-svg/vue-rounded/w100';

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

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

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

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

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

// Extra-bold (700)
import { Home, Settings } from '@material-symbols-svg/vue-rounded/w700';
</script>

Individual Icon Imports (Maximum Tree-shaking)

<script setup lang="ts">
import { HomeW400 } from '@material-symbols-svg/vue-rounded/icons/home';
import { SettingsW500 } from '@material-symbols-svg/vue-rounded/icons/settings';
</script>

Filled Variants

<script setup lang="ts">
import { HomeFill, SettingsFill } from '@material-symbols-svg/vue-rounded';
// or weight-specific
import { HomeFillW500 } from '@material-symbols-svg/vue-rounded/w500';
// or individual imports
import { HomeFillW400 } from '@material-symbols-svg/vue-rounded/icons/home';
</script>

Component Props

All icons accept standard SVG props:

<template>
  <Home 
    :size="24"
    color="blue"
    class="icon"
    :style="{ margin: '10px' }"
    @click="handleClick"
  />
</template>

<script setup lang="ts">
import { Home } from '@material-symbols-svg/vue-rounded';

const handleClick = () => {
  console.log('Icon clicked!');
};
</script>

Other Styles

This package provides Rounded style icons. For other styles:

Outlined Style

npm install @material-symbols-svg/vue
<script setup lang="ts">
import { Home, Settings } from '@material-symbols-svg/vue';
</script>

Sharp Style

npm install @material-symbols-svg/vue-sharp
<script setup lang="ts">
import { Home, Settings } from '@material-symbols-svg/vue-sharp';
</script>

Bundle Size Optimization

Tree-shaking Best Practices

Note: Each icon module currently exports multiple variants (weights W100W700 and filled variants). Unused exports can often be removed in production builds, but results depend on your bundler and configuration.

<script setup lang="ts">
// ✅ Good - Only imports specific icons
import { Home, Settings } from '@material-symbols-svg/vue-rounded/w400';

// ✅ Better - Best tree-shaking (when supported)
import { HomeW400 } from '@material-symbols-svg/vue-rounded/icons/home';

// ❌ Avoid - Imports entire weight bundle
import * as Icons from '@material-symbols-svg/vue-rounded/w400';
</script>

Available Icons

This package includes 3,340+ Material Symbols icons in rounded style. 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/vue - Outlined style
  • @material-symbols-svg/vue-rounded - Rounded style (this package)
  • @material-symbols-svg/vue-sharp - Sharp style