Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

class-name-prop

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

class-name-prop

A lightweight utility function to create a React className prop value for multiple class names.

  • 5.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
77
decreased by-16.3%
Maintainers
1
Weekly downloads
 
Created
Source

class-name-prop

npm version CI status

A lightweight utility function to create a React className prop value for multiple class names.

  • 📦 Tiny bundle size, tested.
  • ⚡️ Simple and fast API.
  • 🧠 Returns undefined if there are no class names, to prevent rendering a redundant class attribute; unlike packages like classnames.

Installation

To install with npm, run:

npm install class-name-prop

Exports

These ECMAScript modules are published to npm and exported via the package.json exports field:

classNameProp.mjs

Export default

Function classNameProp — Creates a React className prop value for multiple class names.

Parameters
  1. ...classNames: unknown — Class name strings to merge; only non empty strings are added to the final string.
Returns

string | undefined — A className prop value; either a string of 1 or more space separated class names or undefined to prevent rendering an empty class attribute.

Example 1

A React component for a link that can be declared active, whilst supporting custom class names:

import classNameProp from "class-name-prop";
import React from "react";

function Link({ className, active, ...props }) {
  return React.createElement("a", {
    className: classNameProp(className, active && "active"),
    ...props,
  });
}

Keywords

FAQs

Package last updated on 14 Jan 2022

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc