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

react-native-body-part-highlighter

v3.1.5

Published

[![npm](https://img.shields.io/npm/v/react-native-body-highlighter.svg)](https://www.npmjs.com/package/react-native-body-highlighter) [![Downloads](https://img.shields.io/npm/dt/react-native-body-highlighter.svg)](https://www.npmjs.com/package/react-nativ

Downloads

9

Readme

react-native-body-highlighter

npm Downloads

SVG human body parts highlighter for react-native (Expo compatible).

Installation

npm

$ npm install react-native-body-highlighter

yarn

$ yarn add react-native-body-highlighter

Usage

Basic example

import { useState } from "react";
import Body from "react-native-body-highlighter";

export default function App() {
  return (
    <View style={styles.container}>
      <Body
        data={[
          { slug: "chest", intensity: 1, side: "left" },
          { slug: "front-deltoids", intensity: 2 },
        ]}
        gender="female"
        side="front"
        scale={1.7}
        border="#dfdfdf"
      />
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: "#fff",
    alignItems: "center",
    justifyContent: "center",
  },
});
import { StyleSheet, Switch, Text, View } from "react-native";
import { useState } from "react";
import Body, { ExtendedBodyPart } from "react-native-body-highlighter";

export default function App() {
  const [selectedBodyPart, setSelectedBodyPart] =
    useState <
    ExtendedBodyPart >
    {
      slug: "biceps",
      intensity: 2,
      side: "right",
    };
  const [side, setSide] = (useState < "back") | ("front" > "front");
  const [gender, setGender] = (useState < "male") | ("female" > "male");

  const sideSwitch = () =>
    setSide((previousState) => (previousState === "front" ? "back" : "front"));

  const toggleGenderSwitch = () => {
    setGender((previousState) =>
      previousState === "male" ? "female" : "male"
    );
  };

  return (
    <View style={styles.container}>
      <Body
        data={[
          { slug: "chest", intensity: 1, side: "left" },
          { slug: "rear-deltoids", intensity: 1 },
          selectedBodyPart,
        ]}
        onBodyPartPress={(e, side) =>
          setSelectedBodyPart({ slug: e.slug, intensity: 2, side })
        }
        gender={gender}
        side={side}
        scale={1.7}
        border="#dfdfdf"
      />
      <View style={styles.switchContainer}>
        <View style={styles.switch}>
          <Text>Side ({side})</Text>
          <Switch onValueChange={sideSwitch} value={side === "front"} />
        </View>
        <View style={styles.switch}>
          <Text>Gender ({gender})</Text>
          <Switch
            onValueChange={toggleGenderSwitch}
            value={gender === "male"}
          />
        </View>
      </View>
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: "#fff",
    alignItems: "center",
    justifyContent: "center",
  },
  switchContainer: {
    flexDirection: "row",
    gap: 30,
  },
  switch: {
    flex: 1,
    alignItems: "center",
    justifyContent: "center",
  },
});

Props

| Prop | Required | Purpose | | ------------------- | -------- | ------------------------------------------------------------------------------------------------------------- | | data | Yes | BodyPartObject[] - Array of BodyPartObject to highlight | | onBodyPartPress | No | Func - (bodyPart: BodyPartObject, side?: left \| right) => {} Callback called when a user tap a body part | | colors | No | string[] - Defaults to ['#0984e3', '#74b9ff'] | | side | No | front \| back - Defaults to front | | gender | No | string - Can be "male" or "female", Defaults to male | | scale | No | number - Defaults to 1 | | border | No | string - Defaults to #dfdfdf (none to hide the border) | | disabledParts | No | Slug[] - Contains array of Slugs to be disabled | | hiddenParts | No | Slug[] - Contains array of Slugs to be hidden (not rendered) | | defaultFill | No | string - Default fill color for body parts. Defaults to #3f3f3f | | defaultStroke | No | string - Default stroke color for body parts. Defaults to none | | defaultStrokeWidth | No | number - Default stroke width for body parts. Defaults to 0 |

BodyPart object model

Accessibility

Each <Body /> component and its SVG wrappers (SvgMaleWrapper, SvgFemaleWrapper) are now accessible to screen readers.

  • Default accessibility labels are automatically provided for gender and side (e.g., "male-body-front", "female-body-back").

  • This improves overall screen reader compatibility by making the visual body component identifiable.

  • Adding accessibility per individual body part would require a deeper refactor of how SVG paths are structured.

  • BodyPartObject: { slug: BodyPartName, color?: colorHexValue, intensity?: IntensityNumber, side?: 'left' | 'right', styles?: BodyPartStyles }

  • BodyPartName: Body part name to highlight (See the list of available body parts below)

  • colorHexValue: The Color of specific body part. Accepts HEX string. E.g #ff0000ff

  • IntensityNumber: Color intensity (if the colors property is set: from 1 to colors.length + 1. If not, intensity can be 1 or 2)

  • Side (optional): Can be left, right. Useful for selecting a single part or a pair (Do not set the side if you need to select the pair)

  • BodyPartStyles (optional): Custom styling object for individual body parts

    • fill?: string - Custom fill color for this specific body part (overrides color and intensity)
    • stroke?: string - Custom stroke color for this specific body part
    • strokeWidth?: number - Custom stroke width for this specific body part

Styling Priority

The fill color for each body part is determined in the following priority order (highest to lowest):

  1. styles.fill - Per-part custom fill style
  2. color - Per-part color property
  3. intensity - Color from the colors array based on intensity value
  4. defaultFill - Global default fill color

List of body parts

| BodyParts | Side | | ------------ | ---------------------------- | | trapezius | Both | | triceps | Both | | forearm | Both | | adductors | Both | | calves | Both | | hair | Both | | neck | Both | | front-deltoids | Front | | middle-deltoids| Front | | rear-deltoids | Back | | hands | Both | | feet | Both | | head | Both (Front only for female) | | ankles | Both (Front only for female) | | tibialis | Front | | obliques | Front | | chest | Front | | biceps | Front | | abs   | Front | | quadriceps   | Front | | knees   | Front | | upper-back | Back | | lower-back | Back | | hamstring | Back | | gluteal | Back |