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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@project-lary/react-material-symbols-100-outlined

v0.6.0

Published

Latest outlined React icon components with weight 100 for Material Symbols

Downloads

134

Readme

@project-lary/react-material-symbols-100-outlined

Latest outlined React icon components with weight 100 for Material Symbols.

This package is automatically updated, so it will always have the latest icons from Google.

Installation

Install the latest version using:

npm install @project-lary/react-material-symbols-100-outlined

Material Symbols are available in 7 weights - 100, 200, 300, 400, 500, 600, 700 and in three styles — outlined, rounded, and sharp. The package @project-lary/react-material-symbols-100-outlined includes only React icon components with weight 100 and type outlined. To use a different weight and type, replace 100-outlined in the package name with the desired weight and type.

| Package | Description | | :------------------------------------------------------------------------------------- | :----- | | @project-lary/react-material-symbols | Default icon package | | @project-lary/react-material-symbols-100-outlined | Outlined icons with weight 100 | | @project-lary/react-material-symbols-100-rounded | Rounded icons with weight 100 | | @project-lary/react-material-symbols-100-sharp | Sharp icons with weight 100 | | @project-lary/react-material-symbols-200-outlined | Outlined icons with weight 200 | | @project-lary/react-material-symbols-200-rounded | Rounded icons with weight 200 | | @project-lary/react-material-symbols-200-sharp | Sharp icons with weight 200 | | @project-lary/react-material-symbols-300-outlined | Outlined icons with weight 300 | | @project-lary/react-material-symbols-300-rounded | Rounded icons with weight 300 | | @project-lary/react-material-symbols-300-sharp | Sharp icons with weight 300 | | @project-lary/react-material-symbols-400-outlined | Outlined icons with weight 400 | | @project-lary/react-material-symbols-400-rounded | Rounded icons with weight 400 | | @project-lary/react-material-symbols-400-sharp | Sharp icons with weight 400 | | @project-lary/react-material-symbols-500-outlined | Outlined icons with weight 500 | | @project-lary/react-material-symbols-500-rounded | Rounded icons with weight 500 | | @project-lary/react-material-symbols-500-sharp | Sharp icons with weight 500 | | @project-lary/react-material-symbols-600-outlined | Outlined icons with weight 600 | | @project-lary/react-material-symbols-600-rounded | Rounded icons with weight 600 | | @project-lary/react-material-symbols-600-sharp | Sharp icons with weight 600 | | @project-lary/react-material-symbols-700-outlined | Outlined icons with weight 700 | | @project-lary/react-material-symbols-700-rounded | Rounded icons with weight 700 | | @project-lary/react-material-symbols-700-sharp | Sharp icons with weight 700 |

Usage

React components are available for both unfilled (FILL 0) and filled (FILL 1) states with grade (GRAD) 0 and size (opsz) 48px. Other variations of grade and size are not included to keep the package size small.

React

import { Raven } from '@project-lary/react-material-symbols-100-outlined';
// import { RavenFilled } from '@project-lary/react-material-symbols-100-outlined'; filled icon

// Raven is a React component that renders the SVG

function App() {
  return (
    <div className="App">
      <Raven />
    </div>
  );
}

Styling

The font-size is by default 16px which is the HTML default. If you set font-size for svg in your main CSS file then this will become the default style for icons. If the parent element has a font-size attribute then this will take presedence.

@layer base {
    svg {
        font-size: 24px;
        color: red;
    }
}

Components can be styled using className attribute.

Tailwind CSS

<Raven className="size-6" /> // Using size -which is combination of width and height- to change the size of the icon
<Raven className="text-black" /> // To change the color of the icon
<Raven className="text-lg" /> // Using text-lg -which is font-size- to change the size of the icon

CSS

/* CSS file */
.lary-material-symbol-size {
  font-size: 24px; /* This sets the font size for the class */
}
<Raven className="lary-material-symbol-size" /> 

Note

Since React component names cannot begin with or be only numbers, the icons with names that begin with or are only numbers are prefixed with an underscore. For example, the icon named 3d is available as _3d.

import { _3d } from '@project-lary/react-material-symbols-100-outlined';
// import { _360 } from '@project-lary/react-material-symbols-100-outlined'; another example

function App() {
  return (
    <div className="App">
      <_3d />
    </div>
  );
}

Available Icons

See all available icons here.

License

Material Symbols are created by Google.

Insparation by Marella.

We have made these icons available for you to incorporate into your products under the Apache License Version 2.0. Feel free to remix and re-share these icons and documentation in your products. We'd love attribution in your app's about screen, but it's not required.