🚀 DAY 5 OF LAUNCH WEEK:Introducing Webhook Events for Alert Changes.Learn more →
Socket
Book a DemoInstallSign in
Socket

@badrap/material-symbols-omnibus

Package Overview
Dependencies
Maintainers
0
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@badrap/material-symbols-omnibus

> [!NOTE] > Importing this package pulls in data for _all_ Material Symbol icons. You're probably better off using something like [marella/material-symbols](https://github.com/marella/material-symbols).

Source
npmnpm
Version
0.0.10
Version published
Weekly downloads
25
127.27%
Maintainers
0
Weekly downloads
 
Created
Source

@badrap/material-symbols-omnibus

[!NOTE] Importing this package pulls in data for all Material Symbol icons. You're probably better off using something like marella/material-symbols.

A library to resolve a Material Symbol icons name to an SVG path.

The icons are the outlined variant with the 20px optical size. Both the filled and outlined versions are available.

Installation

npm i @badrap/material-symbols-omnibus

Usage

import { resolveMaterialSymbol } from "@badrap/material-symbols-omnibus";

export function MaterialSymbol(props: { name: string }) {
  const data = resolveMaterialSymbol(props.name);
  if (!data) {
    return null;
  }
  return (
    <svg width={data.width} height={data.height} viewBox={data.viewBox}>
      <path d={data.path} />
    </svg>
  );
}

License

Material Symbols are available under the Apache License Version 2.0. Therefore this package is also available under the same license.

FAQs

Package last updated on 04 Aug 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts