JSPM

@wirechunk/material-symbols-react-400

0.8.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 327
  • Score
    100M100P100Q110294F
  • License Apache-2.0

The latest Material Symbols with weight 400 as React components rendering SVGs

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@wirechunk/material-symbols-react-400) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    @wirechunk/material-symbols-react-400

    Latest optimized SVGs with weight 400 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 @wirechunk/material-symbols-react-400@latest

    The package @wirechunk/material-symbols-react-400 includes only SVGs with weight 400. To use a different weight, replace 400 in the package name with the desired weight.

    Show all packages
    Package Weight
    @wirechunk/material-symbols-react-200 200
    @wirechunk/material-symbols-react-300 300
    @wirechunk/material-symbols-react-400 400
    @wirechunk/material-symbols-react-500 500
    @wirechunk/material-symbols-react-600 600

    Usage

    Material Symbols are available in three styles—outlined, rounded, and sharp. SVGs 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. SVGs for each icon are located in the corresponding style directory:

    @wirechunk/material-symbols-react-400/{optical size}/{style}/{icon}.tsx
    @wirechunk/material-symbols-react-400/{optical size}/{style}/{icon}-fill.tsx

    Optical sizes can be 20, 24, or 48.

    For example, SVGs for the face icon with weight 400 and optical size 20 are located at:

    @wirechunk/material-symbols-react-400/20/outlined/face.tsx
    @wirechunk/material-symbols-react-400/20/outlined/face-fill.tsx
    @wirechunk/material-symbols-react-400/20/rounded/face.tsx
    @wirechunk/material-symbols-react-400/20/rounded/face-fill.tsx
    @wirechunk/material-symbols-react-400/20/sharp/face.tsx
    @wirechunk/material-symbols-react-400/20/sharp/face-fill.tsx
    import { Face } from '@wirechunk/material-symbols-react-400/20/outlined/face';
    
    function App() {
      return (
        <div>
          <Face className="some-face" />
        </div>
      );
    }

    Styling

    SVGs can be styled using CSS or normal props. All SVGs have the fill="currentcolor" prop set, so they inherit their color. You can change the color by setting the color CSS property.

    Size can also be set with width and height props. Setting width and height to 1em allows changing size via font-size.

    .some-face {
      width: 1em;
      height: 1em;
    }

    License

    Material Symbols are created by Google.

    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.

    This project is a fork of github.com/marella/material-symbols.