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

@molecule/app-muscle-group-badge-react

v1.0.1

Published

Anatomical muscle-group badge with a body-silhouette glyph — workout-tracker exercise detail

Readme

@molecule/app-muscle-group-badge-react

Auto-generated, AI-first package reference for the molecule.dev ecosystem. It is written to be read by coding agents as much as by people, and is generated from this package's source — edit src/index.ts JSDoc, not this file.

Anatomical muscle-group badge — small body-silhouette glyph with the targeted muscle highlighted, plus a label. Used by workout-tracker exercise-detail pages.

Quick Start

import { MuscleGroupBadge } from '@molecule/app-muscle-group-badge-react'

<MuscleGroupBadge group="chest" />
<MuscleGroupBadge group="quads" variant="compact" size="sm" />

Type

feature

Installation

npm install @molecule/app-muscle-group-badge-react @molecule/app-i18n @molecule/app-react @molecule/app-ui react
npm install -D @types/react

API

Interfaces

MuscleGroupBadgeProps

Props for {@link MuscleGroupBadge}.

interface MuscleGroupBadgeProps {
  /** The muscle group represented by this badge. */
  group: MuscleGroup
  /** Override the auto-derived translated label. */
  label?: string
  /** Visual variant. */
  variant?: MuscleGroupBadgeVariant
  /** Display size. */
  size?: 'sm' | 'md' | 'lg'
  /** Optional accent color override (CSS color). */
  accentColor?: string
  /** `data-mol-id` attribute for AI-agent selectors. */
  dataMolId?: string
  /** Extra classes appended via the ClassMap `cn()` helper. */
  className?: string
}

Types

MuscleGroup

Standard anatomical muscle groups recognized by the badge.

type MuscleGroup =
  | 'chest'
  | 'back'
  | 'shoulders'
  | 'biceps'
  | 'triceps'
  | 'forearms'
  | 'core'
  | 'glutes'
  | 'quads'
  | 'hamstrings'
  | 'calves'
  | 'fullBody'

MuscleGroupBadgeVariant

Display variant.

type MuscleGroupBadgeVariant = 'default' | 'compact'

Functions

defaultLabelFor(group)

Default English label for a muscle group, used when no label is given and the i18n bond doesn't have a translation. Returns the same string the t() defaultValue would surface — exposed for tests and downstream consumers that need to label buttons / menus / search filters by group.

function defaultLabelFor(group: MuscleGroup): string
  • group — The muscle group.

Returns: A short, capitalized English label.

MuscleGroupBadge(props)

Anatomical muscle-group badge — a small body-silhouette glyph with the targeted muscle highlighted, plus a translated label. Used by workout-tracker exercise-detail pages.

Two variants:

  • default — glyph + label side-by-side.
  • compact — glyph + label inline, smaller padding (good for chips).
function MuscleGroupBadge({
  group,
  label,
  variant = 'default',
  size = 'md',
  accentColor,
  dataMolId,
  className,
}: MuscleGroupBadgeProps): JSX.Element
  • props — Component props.

Returns: The rendered badge element.

Injection Notes

Requirements

Peer dependencies:

  • @molecule/app-i18n ^1.0.1
  • @molecule/app-react ^1.0.1
  • @molecule/app-ui ^1.0.1
  • react ^18.0.0 || ^19.0.0

Runtime Dependencies

  • @molecule/app-i18n
  • @molecule/app-react
  • @molecule/app-ui
  • react

Requires a wired ClassMap bond and a React I18nProvider ancestor — getClassMap() and useTranslation() both throw before wiring.

Labels resolve through t('muscleGroupBadge.group.<group>') but no companion locale bond ships these keys yet — without app-registered translations the built-in English labels render. Pass label to override per-instance.

The pill background / text colors read the optional --mol-color-surface-variant / --mol-color-on-surface CSS custom properties and fall back to LIGHT-THEME values (near-white tint, near-black text). Standard molecule themes do not define these vars — define them (both themes) or the badge text stays dark on dark surfaces. accentColor overrides the per-group border/glyph accent.