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

@bwp-web/assets

v1.0.10

Published

Shared Biamp Workplace icons and image assets

Readme

@bwp-web/assets

Shared Biamp Workplace icons and image assets. All visual assets are centralised in this package so that @bwp-web/components, @bwp-web/styles, and consumer applications can import them from a single source.

Installation

npm install @bwp-web/assets

Peer Dependencies

  • @mui/material >= 7.0.0
  • react >= 18.0.0
  • react-dom >= 18.0.0

Icons

Every icon is a React component that wraps an inline SVG inside MUI's SvgIcon. They accept all standard SvgIconProps (e.g. sx, fontSize, color).

Usage

import { SearchIcon, BiampLogoIcon } from '@bwp-web/assets';

function Header() {
  return (
    <div>
      <BiampLogoIcon sx={{ width: 48, height: 15 }} />
      <SearchIcon />
    </div>
  );
}

Layout Icons

Icons used in the Biamp Workplace shell (header, sidebar, app launcher).

| Icon | Description | | ------------------ | ---------------------------------------------------------------------------------------------- | | BiampLogoIcon | Biamp wordmark logo. Theme-aware — renders dark text in light mode and white text in dark mode | | SearchIcon | 16×16 magnifying glass icon using currentColor | | AppsIcon | 24×24 nine-dot grid icon with a fixed grey fill (#878787) | | AppsIconFilled | 24×24 filled nine-dot grid icon using currentColor | | KeyArrowDownIcon | Keyboard arrow-down key visual for search/navigation hints | | KeyArrowUpIcon | Keyboard arrow-up key visual for search/navigation hints |

Theme Icons

Icons used internally by the @bwp-web/styles theme for MUI component overrides (alerts, checkboxes, radio buttons). Status icons are theme-aware and adapt to dark/light mode.

| Icon | Description | | ------------------- | --------------------------------------------------------------------------------------------- | | CheckedIcon | 16×16 filled checkbox with a white checkmark | | UncheckedIcon | 16×16 empty checkbox outline | | IndeterminateIcon | 16×16 checkbox with a white horizontal dash | | ErrorStatusIcon | 14×14 circular error indicator with exclamation mark. Theme-aware colours and drop shadow | | WarningStatusIcon | 16×14 triangular warning indicator with exclamation mark. Theme-aware colours and drop shadow | | InfoStatusIcon | 14×14 circular info indicator with "i" mark. Theme-aware colours and drop shadow | | SuccessStatusIcon | 14×14 circular success indicator with checkmark. Theme-aware colours and drop shadow |

Icon Sizes

Icons are organised into size-based groups. Each group corresponds to a fixed pixel size:

| Variant | Size | | ------- | ---- | | xxxxs | 6px | | xxxs | 8px | | xxs | 12px | | xs | 16px | | sm | 20px | | md | 24px | | lg | 32px | | xl | 40px | | xxl | 56px | | xxxl | 72px |

Icons that appear in multiple sizes are exported as a single component that accepts a variant prop. The default variant is md (24px).

import { CloseIcon, BadgeLiveIcon } from '@bwp-web/assets';

// Single-size icon (no variant prop)
<BadgeLiveIcon />  // always 6px (xxxxs)

// Multi-size icon — default is md (24px)
<CloseIcon />

// Multi-size icon — explicit variant
<CloseIcon variant="xs" />  // 16px
<CloseIcon variant="xxs" /> // 12px

All icons respect MUI's sx prop for sizing:

<SuccessStatusIcon sx={{ width: 14, height: 14 }} />
<SuccessStatusIcon sx={{ width: 24, height: 24 }} />

There are 220+ icon exports in total. See Storybook (Assets > Icons > Icon Groups) for the full catalog.

Images

All images are inlined as data URLs during the build, so no additional asset pipeline is required.

BiampRedLogo

import { BiampRedLogo } from '@bwp-web/assets';
import { Box } from '@mui/material';

function Logo() {
  return (
    <Box
      component="img"
      src={BiampRedLogo}
      alt="Biamp"
      sx={{ width: 24, height: 24 }}
    />
  );
}

App Images

PNG images for the app-launcher dialog tiles. Each export is a string that resolves to a data URL.

| Export | Description | | -------------- | --------------------------------------- | | BiampRedLogo | Biamp red logo PNG (data URL) | | BookingApp | Biamp Booking application icon | | CommandApp | Biamp Command application icon | | ConnectApp | Biamp Connect application icon | | ControlApp | Biamp Control Designer application icon | | DesignerApp | Biamp Designer application icon | | WorkplaceApp | Biamp Workplace application icon |

import { WorkplaceApp, DesignerApp, BookingApp } from '@bwp-web/assets';
import {
  BiampBuildAppContent,
  BiampBuildAppContentItem,
  BiampEndUserAppContent,
  BiampEndUserAppContentItem,
} from '@bwp-web/components';
import { Box, Button } from '@mui/material';

function AppLauncher() {
  return (
    <>
      <BiampBuildAppContent>
        <BiampBuildAppContentItem
          name="Workplace"
          description="Monitor and manage your entire AV infrastructure."
          image={
            <Box
              component="img"
              src={WorkplaceApp}
              alt="Workplace"
              sx={{ width: '100%', height: '100%', objectFit: 'contain' }}
            />
          }
        />
        <BiampBuildAppContentItem
          name="Designer"
          description="Design AV systems, specify equipment."
          image={
            <Box
              component="img"
              src={DesignerApp}
              alt="Designer"
              sx={{ width: '100%', height: '100%', objectFit: 'contain' }}
            />
          }
          button={
            <Button variant="outlined" size="small">
              Open
            </Button>
          }
        />
      </BiampBuildAppContent>
      <BiampEndUserAppContent>
        <BiampEndUserAppContentItem
          name="Booking"
          description="Find & Book rooms"
          href="#"
          image={
            <Box
              component="img"
              src={BookingApp}
              alt="Booking"
              sx={{ width: '100%', height: '100%', objectFit: 'contain' }}
            />
          }
        />
      </BiampEndUserAppContent>
    </>
  );
}

Fonts

All font files used by the Biamp Workplace theme are bundled as data URLs. Fonts are embedded directly in the JavaScript bundle — no need to configure static file serving or copy font files.

Usage with the Biamp Theme (Recommended)

If you are using biampTheme() from @bwp-web/styles with MUI's <CssBaseline />, fonts are loaded automatically. No extra imports or configuration needed.

Standalone Usage

import { OpenSansRegular, MontserratBold } from '@bwp-web/assets';

const fontFaceCSS = `
  @font-face {
    font-family: 'Open Sans';
    font-weight: 400;
    font-style: normal;
    src: url(${OpenSansRegular}) format('woff2');
  }

  @font-face {
    font-family: 'Montserrat';
    font-weight: 700;
    font-style: normal;
    src: url(${MontserratBold}) format('truetype');
  }
`;

Included Fonts

Open Sans (woff2) — default body font:

| Export | Weight | Style | | ------------------------- | ------ | ------ | | OpenSansRegular | 400 | normal | | OpenSansRegularItalic | 400 | italic | | OpenSansSemiBold | 600 | normal | | OpenSansSemiBoldItalic | 600 | italic | | OpenSansBold | 700 | normal | | OpenSansBoldItalic | 700 | italic | | OpenSansExtraBold | 800 | normal | | OpenSansExtraBoldItalic | 800 | italic |

Montserrat (ttf) — headings (h0, h1, h2, h4):

| Export | Weight | Style | | -------------------- | ------ | ------ | | MontserratMedium | 500 | normal | | MontserratSemiBold | 600 | normal | | MontserratBold | 700 | normal |